]> granicus.if.org Git - apache/commitdiff
comment only: fix name of hook and try to reword for clarity
authorJeff Trawick <trawick@apache.org>
Mon, 22 Feb 2010 17:18:33 +0000 (17:18 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 22 Feb 2010 17:18:33 +0000 (17:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@912667 13f79535-47bb-0310-9956-ffa450edef68

server/core.c

index bd66dc3e1d058a65a0dabdfaf7ef98b7525b9659..27fc034abda364fc6aa57960da5835c0c2887800 100644 (file)
@@ -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);