diff options
author | lns <matzeton@googlemail.com> | 2018-04-11 14:28:18 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-06-13 18:23:43 +0200 |
commit | f2f11e477a489ac25a4c4be064eddc26fc9d677c (patch) | |
tree | d4f679146a61b28056e772e30570c53fb4721b80 /src/protocol_ssh.h | |
parent | ebabaa69c0a3ba992895c7a66729e81e0923d5f1 (diff) |
POTD skeleton.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/protocol_ssh.h')
-rw-r--r-- | src/protocol_ssh.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/protocol_ssh.h b/src/protocol_ssh.h new file mode 100644 index 0000000..b5edfe0 --- /dev/null +++ b/src/protocol_ssh.h @@ -0,0 +1,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 |