summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/src/network.h
diff options
context:
space:
mode:
authorMCApollo <34170230+MCApollo@users.noreply.github.com>2019-04-29 17:53:00 +0000
committerMCApollo <34170230+MCApollo@users.noreply.github.com>2019-04-29 17:53:00 +0000
commit59f5fd20e2f59ae186d5a461aef7782dd55e4e7b (patch)
tree10475faf0b6dcb812b64da679f4ae8ff01c45874 /data/lighttpd/lighttpd-1.4.53/src/network.h
parentf06e297cd175cca39745f6d1970225ae88aa68f1 (diff)
Updated lighttpd.
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/src/network.h')
-rw-r--r--data/lighttpd/lighttpd-1.4.53/src/network.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/src/network.h b/data/lighttpd/lighttpd-1.4.53/src/network.h
new file mode 100644
index 000000000..f6f9f3fe3
--- /dev/null
+++ b/data/lighttpd/lighttpd-1.4.53/src/network.h
@@ -0,0 +1,17 @@
+#ifndef _NETWORK_H_
+#define _NETWORK_H_
+#include "first.h"
+
+#include "base_decls.h"
+
+struct server_socket; /* declaration */
+
+void network_accept_tcp_nagle_disable(int fd);
+
+int network_init(server *srv, int stdin_fd);
+int network_close(server *srv);
+
+int network_register_fdevents(server *srv);
+void network_unregister_sock(server *srv, struct server_socket *srv_socket);
+
+#endif