aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/connection.h')
-rw-r--r--src/microhttpd/connection.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/microhttpd/connection.h b/src/microhttpd/connection.h
index 985f29ed..365e39b4 100644
--- a/src/microhttpd/connection.h
+++ b/src/microhttpd/connection.h
@@ -93,4 +93,18 @@ MHD_connection_close (struct MHD_Connection *connection,
93 enum MHD_RequestTerminationCode termination_code); 93 enum MHD_RequestTerminationCode termination_code);
94 94
95 95
96#if EPOLL_SUPPORT
97/**
98 * Perform epoll processing, possibly moving the connection back into
99 * the epoll set if needed.
100 *
101 * @param connection connection to process
102 * @return MHD_YES if we should continue to process the
103 * connection (not dead yet), MHD_NO if it died
104 */
105int
106MHD_connection_epoll_update_ (struct MHD_Connection *connection);
107#endif
108
109
96#endif 110#endif