- next is 1.4.56
[lighttpd.git] / src / network.h
blob7a88943e7810eb69cb6c69f441754637d5eed1a3
1 #ifndef _NETWORK_H_
2 #define _NETWORK_H_
3 #include "first.h"
5 #include "base_decls.h"
7 struct server_socket; /* declaration */
9 void network_accept_tcp_nagle_disable(int fd);
11 __attribute_cold__
12 int network_init(server *srv, int stdin_fd);
14 __attribute_cold__
15 int network_close(server *srv);
17 __attribute_cold__
18 int network_register_fdevents(server *srv);
20 __attribute_cold__
21 void network_unregister_sock(server *srv, struct server_socket *srv_socket);
23 #endif