From cvs-return-26396-apmail-httpd-cvs-archive=httpd.apache.org@httpd.apache.org Mon Mar 12 14:49:31 2007 Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 5753 invoked from network); 12 Mar 2007 14:49:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Mar 2007 14:49:29 -0000 Received: (qmail 63236 invoked by uid 500); 12 Mar 2007 14:49:37 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 63192 invoked by uid 500); 12 Mar 2007 14:49:37 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 63177 invoked by uid 99); 12 Mar 2007 14:49:37 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Mar 2007 07:49:37 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Mar 2007 07:49:28 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id E1A701A983A; Mon, 12 Mar 2007 07:49:07 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r517233 - /httpd/httpd/trunk/server/mpm_common.c Date: Mon, 12 Mar 2007 14:49:07 -0000 To: cvs@httpd.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070312144907.E1A701A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jorton Date: Mon Mar 12 07:49:07 2007 New Revision: 517233 URL: http://svn.apache.org/viewvc?view=rev&rev=517233 Log: * server/mpm_common.c (dummy_connection): Use "OPTIONS *" for request on dummy connection. PR: 41796 Modified: httpd/httpd/trunk/server/mpm_common.c Modified: httpd/httpd/trunk/server/mpm_common.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm_common.c?view=diff&rev=517233&r1=517232&r2=517233 ============================================================================== --- httpd/httpd/trunk/server/mpm_common.c (original) +++ httpd/httpd/trunk/server/mpm_common.c Mon Mar 12 07:49:07 2007 @@ -635,7 +635,7 @@ * 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);