diff options
author | Ryan Bloom <rbb@apache.org> | 2001-11-13 00:49:08 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-11-13 00:49:08 +0100 |
commit | 0c05b625acb9f1128715da18e1b4929a67ac26cc (patch) | |
tree | d38baba73a72a6d149723ba5f70231ef0624300e /include/http_connection.h | |
parent | fix segv triggered by recent ap_lingering_close change (diff) | |
download | apache2-0c05b625acb9f1128715da18e1b4929a67ac26cc.tar.xz apache2-0c05b625acb9f1128715da18e1b4929a67ac26cc.zip |
Begin to abstract out the underlying transport layer.
The first step is to remove the socket from the conn_rec,
the server now lives in a context that is passed to the
core's input and output filters. This forces us to be very
careful when adding calls that use the socket directly,
because the socket isn't available in most locations.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91887 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r-- | include/http_connection.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/http_connection.h b/include/http_connection.h index ae00cfd7fa..cb13d29fff 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -128,6 +128,19 @@ AP_DECLARE_HOOK(int,pre_connection,(conn_rec *c)) */ 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 child_num)) + +/* This is NOT staying here. It is necessary to quiet warnings + * while I would on the next patch. rbb + */ + +AP_CORE_DECLARE(conn_rec *)ap_core_new_connection(apr_pool_t *p, + server_rec *server, apr_socket_t *inout, + core_net_rec *net, long id); + #ifdef __cplusplus } #endif |