aboutsummaryrefslogtreecommitdiff
path: root/src/protocol_ssh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol_ssh.h')
-rw-r--r--src/protocol_ssh.h14
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