diff options
author | Jim Jagielski <jim@apache.org> | 2011-09-23 15:38:09 +0200 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2011-09-23 15:38:09 +0200 |
commit | 103f776c25b7fdd51da4f98643b8dcdb09efdce6 (patch) | |
tree | a180a9a0f13da4a983913f50a3ad1a7e2f2a675a /include/http_connection.h | |
parent | Cleanup effort in prep for GA push: (diff) | |
download | apache2-103f776c25b7fdd51da4f98643b8dcdb09efdce6.tar.xz apache2-103f776c25b7fdd51da4f98643b8dcdb09efdce6.zip |
Cleanup effort in prep for GA push:
Trim trailing whitespace... no func change
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1174748 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r-- | include/http_connection.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/http_connection.h b/include/http_connection.h index d5bca043bb..c6eac587bb 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -41,7 +41,7 @@ extern "C" { * This is the protocol module driver. This calls all of the * pre-connection and connection hooks for all protocol modules. * @param c The connection on which the request is read - * @param csd The mechanism on which this connection is to be read. + * @param csd The mechanism on which this connection is to be read. * Most times this will be a socket, but it is up to the module * that accepts the request to determine the exact type. */ @@ -74,15 +74,15 @@ AP_DECLARE(int) ap_start_lingering_close(conn_rec *c); /* Hooks */ /** - * create_connection is a RUN_FIRST hook which allows modules to create - * connections. In general, you should not install filters with the - * create_connection hook. If you require vhost configuration information + * create_connection is a RUN_FIRST hook which allows modules to create + * connections. In general, you should not install filters with the + * create_connection hook. If you require vhost configuration information * to make filter installation decisions, you must use the pre_connection * or install_network_transport hook. This hook should close the connection * if it encounters a fatal error condition. * * @param p The pool from which to allocate the connection record - * @param server The server record to create the connection too. + * @param server The server record to create the connection too. * @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. @@ -93,13 +93,13 @@ AP_DECLARE(int) ap_start_lingering_close(conn_rec *c); AP_DECLARE_HOOK(conn_rec *, create_connection, (apr_pool_t *p, server_rec *server, apr_socket_t *csd, long conn_id, void *sbh, apr_bucket_alloc_t *alloc)) - + /** * This hook gives protocol modules an opportunity to set everything up * before calling the protocol handler. All pre-connection hooks are * run until one returns something other than ok or decline * @param c The connection on which the request has been received. - * @param csd The mechanism on which this connection is to be read. + * @param csd The mechanism on which this connection is to be read. * Most times this will be a socket, but it is up to the module * that accepts the request to determine the exact type. * @return OK or DECLINED |