From: Jeff Trawick Date: Mon, 22 Feb 2010 17:18:33 +0000 (+0000) Subject: comment only: fix name of hook and try to reword for clarity X-Git-Tag: 2.3.6~449 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16058fa112e152c39a96b66b1c4fcd42e922b0a4;p=apache comment only: fix name of hook and try to reword for clarity git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@912667 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index bd66dc3e1d..27fc034abd 100644 --- a/server/core.c +++ b/server/core.c @@ -3929,10 +3929,10 @@ static int core_pre_connection(conn_rec *c, void *csd) static void register_hooks(apr_pool_t *p) { - /* create_connection and install_transport_filters are - * hooks that should always be APR_HOOK_REALLY_LAST to give other - * modules the opportunity to install alternate network transports - * and stop other functions from being run. + /* create_connection and pre_connection should always be hooked + * APR_HOOK_REALLY_LAST by core to give other modules the opportunity + * to install alternate network transports and stop other functions + * from being run. */ ap_hook_create_connection(core_create_conn, NULL, NULL, APR_HOOK_REALLY_LAST);