diff options
author | Ryan Bloom <rbb@apache.org> | 2001-11-13 08:15:36 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-11-13 08:15:36 +0100 |
commit | a47ed5762de20d7b67f29ba4d493f07cf8239820 (patch) | |
tree | a6f813358c6fb36b0ac7de78aa445d9b861b9dfc /include/http_connection.h | |
parent | I was originally just going to s/commans/commas/, and then I got (diff) | |
download | apache2-a47ed5762de20d7b67f29ba4d493f07cf8239820.tar.xz apache2-a47ed5762de20d7b67f29ba4d493f07cf8239820.zip |
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.h | 2 |
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 |