blob: b33f3e15b8d179fbd8261eb46ce789950258c6ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "module.h"
int module_init(struct core *c, struct module*m) {
struct socket_server *s;
assert(c && m);
if (!(s = socket_server_new_ipv4(c->mainloop, INADDR_LOOPBACK, 4711)))
return -1;
m->userdata = protocol_native_new(s);
assert(m->userdata);
return 0;
}
void module_done(struct core *c, struct module*m) {
assert(c && m);
protocol_native_free(m->userdata);
}
|