mirror of
https://github.com/apache/httpd.git
synced 2025-08-15 23:27:39 +00:00
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:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user