aboutsummaryrefslogtreecommitdiff
path: root/src/protocol_ssh.h
blob: b5edfe0bfe96f3406d0e466ff27a2357d70fe2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef POTD_SERVER_SSH_H
#define POTD_SERVER_SSH_H 1

#include <libssh/server.h>

#include "protocol.h"

int ssh_init_cb(protocol_ctx *ctx);

int ssh_on_listen(protocol_ctx *ctx);

int ssh_on_shutdown(protocol_ctx *ctx);

#endif