diff options
Diffstat (limited to 'src/protocol_ssh.h')
-rw-r--r-- | src/protocol_ssh.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/protocol_ssh.h b/src/protocol_ssh.h new file mode 100644 index 0000000..52b628b --- /dev/null +++ b/src/protocol_ssh.h @@ -0,0 +1,15 @@ +#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, const char *host, + const char *port); + +int ssh_on_shutdown(protocol_ctx *ctx); + +#endif |