merge r2976:

allow underscore in request method
This commit is contained in:
Igor Sysoev 2009-10-26 17:37:18 +00:00
parent 74007f8ed3
commit ddfa019fc2
1 changed files with 2 additions and 2 deletions

View File

@ -143,7 +143,7 @@ ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b)
break;
}
if (ch < 'A' || ch > 'Z') {
if ((ch < 'A' || ch > 'Z') && ch != '_') {
return NGX_HTTP_PARSE_INVALID_METHOD;
}
@ -257,7 +257,7 @@ ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b)
break;
}
if (ch < 'A' || ch > 'Z') {
if ((ch < 'A' || ch > 'Z') && ch != '_') {
return NGX_HTTP_PARSE_INVALID_METHOD;
}