From: Joe Orton Date: Mon, 12 Mar 2007 14:49:07 +0000 (+0000) Subject: * server/mpm_common.c (dummy_connection): Use "OPTIONS *" for request X-Git-Tag: 2.3.0~1883 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2af272c512cb40cc7ff9cd1c4813c8b04ca8d1b5;p=apache * server/mpm_common.c (dummy_connection): Use "OPTIONS *" for request on dummy connection. PR: 41796 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@517233 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index 09fea3400b..832cc4084b 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -635,7 +635,7 @@ static apr_status_t dummy_connection(ap_pod_t *pod) * adminstrators can track down the cause of the odd-looking * requests in their logs. */ - srequest = apr_pstrcat(p, "GET / HTTP/1.0\r\nUser-Agent: ", + srequest = apr_pstrcat(p, "OPTIONS * HTTP/1.0\r\nUser-Agent: ", ap_get_server_banner(), " (internal dummy connection)\r\n\r\n", NULL);