Re: svn commit: r581374 - /httpd/httpd/trunk/modules/http/http_core.c

2007-10-02 Thread William A. Rowe, Jr.
[EMAIL PROTECTED] wrote: Log: Reduce the last change to a minimum, since OPTIONS * does not include an Allow header field (* is not a resource). Ignore my previous question; obviously this makes it a non-issue.

Re: svn commit: r581374 - /httpd/httpd/trunk/modules/http/http_core.c

2007-10-02 Thread Ruediger Pluem
On 10/02/2007 10:36 PM, [EMAIL PROTECTED] wrote: Author: fielding Date: Tue Oct 2 13:36:47 2007 New Revision: 581374 URL: http://svn.apache.org/viewvc?rev=581374view=rev Log: Reduce the last change to a minimum, since OPTIONS * does not include an Allow header field (* is not a

Re: svn commit: r581374 - /httpd/httpd/trunk/modules/http/http_core.c

2007-10-02 Thread Jim Jagielski
On Oct 2, 2007, at 5:15 PM, Ruediger Pluem wrote: On 10/02/2007 10:36 PM, [EMAIL PROTECTED] wrote: Author: fielding Date: Tue Oct 2 13:36:47 2007 New Revision: 581374 URL: http://svn.apache.org/viewvc?rev=581374view=rev Log: Reduce the last change to a minimum, since OPTIONS * does not

Re: svn commit: r581374 - /httpd/httpd/trunk/modules/http/http_core.c

2007-10-02 Thread Roy T. Fielding
On Oct 2, 2007, at 2:15 PM, Ruediger Pluem wrote: -if ((r-method_number != M_OPTIONS) || !r-uri || strcmp(r- uri, *)) { -return DECLINED; +if ((r-method_number == M_OPTIONS) r-uri (r-uri[0] == '*')) { +return OK; /* Send HTTP pong, without Allow header */