blob: 92f61c4c3b2a31171eeee83f9b17ba2a042df812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _H_NET
#define _H_NET
#define CFWS_NET_MAXCONN 10 /* Max connections allowed by listen(). */
#define CFWS_NET_MAXREAD 1024 /* Size of buffer used for reading from client. */
#include "http.h"
int net_init_server(int);
struct http_request net_next_request(int serverfd, int *clientfd);
#endif
|