summaryrefslogtreecommitdiffstats
path: root/src/protocol-cli.h
blob: 8c150ce1509cb50b452d0de1064e4a45ac1e62a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
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