mpm_event[opt]: Send the SSL close notify alert when the KeepAliveTimeout

expires. PR54998.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1601185 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yann Ylavic
2014-06-07 22:57:08 +00:00
parent 6502fec22a
commit ff0963e3f7
6 changed files with 31 additions and 6 deletions

View File

@ -47,9 +47,18 @@ extern "C" {
*/
AP_CORE_DECLARE(void) ap_process_connection(conn_rec *c, void *csd);
/**
* Shutdown the connection for writing.
* @param c The connection to shutdown
* @param flush Whether or not to flush pending data before
* @return APR_SUCCESS or the underlying error
*/
AP_CORE_DECLARE(apr_status_t) ap_shutdown_conn(conn_rec *c, int flush);
/**
* Flushes all remain data in the client send buffer
* @param c The connection to flush
* @remark calls ap_shutdown_conn(c, 1)
*/
AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c);