diff options
author | Ryan Bloom <rbb@apache.org> | 2001-11-15 21:49:54 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-11-15 21:49:54 +0100 |
commit | a4f00625aad31844c75af1336c4ec64a8c4a99ad (patch) | |
tree | 3d74e295a175776548a77423d12437edaa40bdac /include/http_connection.h | |
parent | Style updates before I convert to the new lock type. (diff) | |
download | apache2-a4f00625aad31844c75af1336c4ec64a8c4a99ad.tar.xz apache2-a4f00625aad31844c75af1336c4ec64a8c4a99ad.zip |
Pull lingering close out of the pool cleanup phase. This was causing too
many bugs. Instead, it is called where it used to be called. I have
abstracted some of the logic out of the lingering close so that it gets
the socket from the connection using the core's conn_config vector. This
is in anticipation of a change to use a hook for the lingering close,
which I hope to do soon.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91968 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r-- | include/http_connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_connection.h b/include/http_connection.h index eb48cfcdd0..57b043890c 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -92,7 +92,7 @@ AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c); * </pre> * @param c The connection we are closing */ -apr_status_t ap_lingering_close(void *dummy); +AP_DECLARE(void) ap_lingering_close(conn_rec *c); #endif /* Hooks */ |