diff options
author | Ben Laurie <ben@apache.org> | 1999-07-22 19:17:21 +0000 |
---|---|---|
committer | Ben Laurie <ben@apache.org> | 1999-07-22 19:17:21 +0000 |
commit | ec84a171efab2eeb5e5290fbe83708960115ebb9 (patch) | |
tree | 5b11fd01576f67bc0dc2923df43e2e0329a02f31 /include/http_connection.h | |
parent | 840e2514b19a77e815282dd452264cc02ea48690 (diff) | |
download | httpd-ec84a171efab2eeb5e5290fbe83708960115ebb9.tar.gz |
And with one bound, he was free! This seemingly minor change allows modules
to take over connection processing, thus making Apache multiprotocol. Woo!
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83486 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 90f284133c..cb5a04d486 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -69,9 +69,11 @@ conn_rec *ap_new_connection(pool *p, server_rec *server, BUFF *inout, const struct sockaddr_in *saddr, int child_num, int thread_num); CORE_EXPORT(void) ap_process_connection(conn_rec *); +int ap_process_http_connection(conn_rec *); /* Hooks */ DECLARE_HOOK(void,pre_connection,(conn_rec *)) +DECLARE_HOOK(int,process_connection,(conn_rec *)) #ifdef __cplusplus } |