Loading modules/http/http_core.c +14 −9 Original line number Diff line number Diff line Loading @@ -88,17 +88,22 @@ static const command_rec http_cmds[] = { AP_INIT_TAKE1("KeepAliveTimeout", set_keep_alive_timeout, NULL, RSRC_CONF, "Keep-Alive timeout duration (sec)"), AP_INIT_TAKE1("MaxKeepAliveRequests", set_keep_alive_max, NULL, RSRC_CONF, "Maximum number of Keep-Alive requests per connection, or 0 for infinite"), "Maximum number of Keep-Alive requests per connection, " "or 0 for infinite"), AP_INIT_TAKE1("KeepAlive", set_keep_alive, NULL, RSRC_CONF, "Whether persistent connections should be On or Off"), { NULL } }; static const char *http_method(const request_rec *r) { return "http"; } { return "http"; } static apr_port_t http_port(const request_rec *r) { return DEFAULT_HTTP_PORT; } { return DEFAULT_HTTP_PORT; } static int ap_process_http_async_connection(conn_rec *c) { Loading Loading
modules/http/http_core.c +14 −9 Original line number Diff line number Diff line Loading @@ -88,17 +88,22 @@ static const command_rec http_cmds[] = { AP_INIT_TAKE1("KeepAliveTimeout", set_keep_alive_timeout, NULL, RSRC_CONF, "Keep-Alive timeout duration (sec)"), AP_INIT_TAKE1("MaxKeepAliveRequests", set_keep_alive_max, NULL, RSRC_CONF, "Maximum number of Keep-Alive requests per connection, or 0 for infinite"), "Maximum number of Keep-Alive requests per connection, " "or 0 for infinite"), AP_INIT_TAKE1("KeepAlive", set_keep_alive, NULL, RSRC_CONF, "Whether persistent connections should be On or Off"), { NULL } }; static const char *http_method(const request_rec *r) { return "http"; } { return "http"; } static apr_port_t http_port(const request_rec *r) { return DEFAULT_HTTP_PORT; } { return DEFAULT_HTTP_PORT; } static int ap_process_http_async_connection(conn_rec *c) { Loading