summaryrefslogtreecommitdiffstats
path: root/src/protocol-cli.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol-cli.h')
-rw-r--r--src/protocol-cli.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/protocol-cli.h b/src/protocol-cli.h
new file mode 100644
index 00000000..8c150ce1
--- /dev/null
+++ b/src/protocol-cli.h
@@ -0,0 +1,12 @@
+#ifndef fooprotocolclihfoo
+#define fooprotocolclihfoo
+
+#include "core.h"
+#include "socket-server.h"
+
+struct protocol_cli;
+
+struct protocol_cli* protocol_cli_new(struct core *core, struct socket_server *server);
+void protocol_cli_free(struct protocol_cli *n);
+
+#endif