aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/tcp_server.h
blob: 12a819dd9ef2d86d4a729b92d0c412a64258b607 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                                     
#ifndef __TCP_SERVER_H__
#define __TCP_SERVER_H__

struct tcp_server {
	int fd;
};

int tcp_server_create(struct tcp_server *, const char *port);
void tcp_server_destroy(const struct tcp_server *);

typedef int (*tcp_server_conn_handler)(int conn_fd, void *arg);
int tcp_server_accept(const struct tcp_server *, tcp_server_conn_handler, void *arg);

#endif