summaryrefslogtreecommitdiff
path: root/include/http_connection.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-11-13 07:15:36 +0000
committerRyan Bloom <rbb@apache.org>2001-11-13 07:15:36 +0000
commita47ed5762de20d7b67f29ba4d493f07cf8239820 (patch)
treea6f813358c6fb36b0ac7de78aa445d9b861b9dfc /include/http_connection.h
parent5e6db4ff38c2036fe6a301b100789b3f515e3b4a (diff)
downloadhttpd-a47ed5762de20d7b67f29ba4d493f07cf8239820.tar.gz
This allows modules to add socket descriptors to the pollset. I have
only added this to the perfork MPM, and the others work without it. Tomorrow I will add it to the other MPMs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91899 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r--include/http_connection.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/http_connection.h b/include/http_connection.h
index 3a61963771..53cb0a9675 100644
--- a/include/http_connection.h
+++ b/include/http_connection.h
@@ -143,6 +143,8 @@ AP_DECLARE_HOOK(int,process_connection,(conn_rec *c))
AP_DECLARE_HOOK(conn_rec *, create_connection,
(apr_pool_t *p, apr_socket_t *csd, int conn_id))
+AP_DECLARE_HOOK(int, add_listeners, (apr_pollfd_t *pollset, apr_socket_t **listensocks, int num_listensocks))
+
#ifdef __cplusplus
}
#endif