Commit 16784e7c authored by Paul Querna's avatar Paul Querna
Browse files

* Style fixes only. No functional changes. Remove two tabs. Fix an If. Split a String.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@111719 13f79535-47bb-0310-9956-ffa450edef68
parent 9989d917
Loading
Loading
Loading
Loading
+14 −9
Original line number Diff line number Diff line
@@ -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)
{