summaryrefslogtreecommitdiffstats
path: root/src/protocol-native.h
blob: 88283e1c1d485bb18c403ab949e24fe520535606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef fooprotocolnativehfoo
#define fooprotocolnativehfoo

#include "core.h"
#include "socket-server.h"

struct protocol_native;

struct protocol_native* protocol_native_new(struct core*core, struct socket_server *server);
void protocol_native_free(struct protocol_native *n);

#endif