diff options
author | Jeff Trawick <trawick@apache.org> | 2001-12-18 14:48:54 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-12-18 14:48:54 +0100 |
commit | 187e9ae3b9d2e7c62d535c928db73fee597080d0 (patch) | |
tree | 3be241b138d3a0309dd63a8bfaaef7eab0b6b2e7 /include/http_connection.h | |
parent | Stop using HARD_SERVER_LIMIT/HARD_THREAD_LIMIT all over the place (diff) | |
download | apache2-187e9ae3b9d2e7c62d535c928db73fee597080d0.tar.xz apache2-187e9ae3b9d2e7c62d535c928db73fee597080d0.zip |
Change core code to allow an MPM to set hard thread/server
limits at startup.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92512 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r-- | include/http_connection.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/http_connection.h b/include/http_connection.h index 57b043890c..5cf0ade10f 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -127,10 +127,11 @@ AP_DECLARE_HOOK(int,process_connection,(conn_rec *c)) * @param csd The socket that has been accepted * @param conn_id A unique identifier for this connection. The ID only * needs to be unique at that time, not forever. + * @param sbh A handle to scoreboard information for this connection. * @return An allocated connection record or NULL. */ AP_DECLARE_HOOK(conn_rec *, create_connection, - (apr_pool_t *p, server_rec *server, apr_socket_t *csd, int conn_id)) + (apr_pool_t *p, server_rec *server, apr_socket_t *csd, int conn_id, void *sbh)) #ifdef __cplusplus } |