You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Christophe JAILLET <ch...@wanadoo.fr> on 2021/05/27 14:07:03 UTC

Re: svn commit: r1890245 - in /httpd/httpd/branches/2.4.x: ./ docs/manual/mod/ include/ modules/http2/ server/

Hi,

Nitpicking

CJ

Le 27/05/2021 à 15:08, icing@apache.org a écrit :
> Author: icing
> Date: Thu May 27 13:08:21 2021
> New Revision: 1890245
>
> URL: http://svn.apache.org/viewvc?rev=1890245&view=rev
> Log:
> Merged r1734009,r1734231,r1734281,r1838055,r1838079,r1840229,r1876664,r1876674,r1876784,r1879078,r1881620,r1887311,r1888871 from trunk:
>
>    *) core: Split ap_create_request() from ap_read_request(). [Graham Leggett]
>
>    *) core, h2: common ap_parse_request_line() and ap_check_request_header()
>       code. [Yann Ylavic]
>
>    *) core: Add StrictHostCheck to allow unconfigured hostnames to be
>       rejected. [Eric Covener]
>
> [...]
>
> Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml
> URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml?rev=1890245&r1=1890244&r2=1890245&view=diff
> ==============================================================================
> --- httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml (original)
> +++ httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml Thu May 27 13:08:21 2021
> @@ -5207,6 +5207,42 @@ recognized methods to modules.</p>
>   </directivesynopsis>
>   
>   <directivesynopsis>
> +<name>StrictHostCheck</name>
> +<description>Controls whether the server requires the requested hostname be
> +             listed enumerated in the virtual host handling the request
> +             </description>
> +<syntax>StrictHostCheck ON|OFF</syntax>
> +<default>StrictHostCheck OFF</default>
> +<contextlist><context>server config</context><context>virtual host</context>
> +</contextlist>
> +<compatibility>Added in 2.5.1</compatibility>

2.4.49

> [...]
>
> Modified: httpd/httpd/branches/2.4.x/include/ap_mmn.h
> URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/include/ap_mmn.h?rev=1890245&r1=1890244&r2=1890245&view=diff
> ==============================================================================
> --- httpd/httpd/branches/2.4.x/include/ap_mmn.h (original)
> +++ httpd/httpd/branches/2.4.x/include/ap_mmn.h Thu May 27 13:08:21 2021
> @@ -559,6 +559,9 @@
>    *                           and ap_ssl_answer_challenge and hooks.
>    * 20120211.104 (2.4.47-dev) Move ap_ssl_* into new http_ssl.h header file
>    * 20120211.105 (2.4.47-dev) Add ap_ssl_ocsp* hooks and functions to http_ssl.h.
> + * 20120211.106 (2.4.47-dev) Add ap_create_request().
> + * 20120211.107 (2.4.47-dev) Add ap_parse_request_line() and
> + *                           ap_check_request_header()
>    */
>   

2.4.49-dev


Re: svn commit: r1890245 - in /httpd/httpd/branches/2.4.x: ./ docs/manual/mod/ include/ modules/http2/ server/

Posted by Stefan Eissing <st...@greenbytes.de>.
Thx! Fixed.

> Am 27.05.2021 um 16:07 schrieb Christophe JAILLET <ch...@wanadoo.fr>:
> 
> Hi,
> 
> Nitpicking
> 
> CJ
> 
> Le 27/05/2021 à 15:08, icing@apache.org a écrit :
>> Author: icing
>> Date: Thu May 27 13:08:21 2021
>> New Revision: 1890245
>> 
>> URL: http://svn.apache.org/viewvc?rev=1890245&view=rev
>> Log:
>> Merged r1734009,r1734231,r1734281,r1838055,r1838079,r1840229,r1876664,r1876674,r1876784,r1879078,r1881620,r1887311,r1888871 from trunk:
>> 
>>   *) core: Split ap_create_request() from ap_read_request(). [Graham Leggett]
>> 
>>   *) core, h2: common ap_parse_request_line() and ap_check_request_header()
>>      code. [Yann Ylavic]
>> 
>>   *) core: Add StrictHostCheck to allow unconfigured hostnames to be
>>      rejected. [Eric Covener]
>> 
>> [...]
>> 
>> Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml
>> URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml?rev=1890245&r1=1890244&r2=1890245&view=diff
>> ==============================================================================
>> --- httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml (original)
>> +++ httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml Thu May 27 13:08:21 2021
>> @@ -5207,6 +5207,42 @@ recognized methods to modules.</p>
>>  </directivesynopsis>
>>    <directivesynopsis>
>> +<name>StrictHostCheck</name>
>> +<description>Controls whether the server requires the requested hostname be
>> +             listed enumerated in the virtual host handling the request
>> +             </description>
>> +<syntax>StrictHostCheck ON|OFF</syntax>
>> +<default>StrictHostCheck OFF</default>
>> +<contextlist><context>server config</context><context>virtual host</context>
>> +</contextlist>
>> +<compatibility>Added in 2.5.1</compatibility>
> 
> 2.4.49
> 
>> [...]
>> 
>> Modified: httpd/httpd/branches/2.4.x/include/ap_mmn.h
>> URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/include/ap_mmn.h?rev=1890245&r1=1890244&r2=1890245&view=diff
>> ==============================================================================
>> --- httpd/httpd/branches/2.4.x/include/ap_mmn.h (original)
>> +++ httpd/httpd/branches/2.4.x/include/ap_mmn.h Thu May 27 13:08:21 2021
>> @@ -559,6 +559,9 @@
>>   *                           and ap_ssl_answer_challenge and hooks.
>>   * 20120211.104 (2.4.47-dev) Move ap_ssl_* into new http_ssl.h header file
>>   * 20120211.105 (2.4.47-dev) Add ap_ssl_ocsp* hooks and functions to http_ssl.h.
>> + * 20120211.106 (2.4.47-dev) Add ap_create_request().
>> + * 20120211.107 (2.4.47-dev) Add ap_parse_request_line() and
>> + *                           ap_check_request_header()
>>   */
>>  
> 
> 2.4.49-dev
>