mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-27 13:28:32 +00:00
BUG/MINOR: http: Add OPTIONS in supported http methods (found by find_http_meth)
The 'OPTIONS' method was not in the list of supported HTTP methods and find_http_meth return HTTP_METH_OTHER instead of HTTP_METH_OPTIONS. [wt: this fix needs to be backported at least to 1.5, 1.4 and 1.3]
This commit is contained in:
parent
3c3a035be0
commit
d57ad64873
@ -458,6 +458,9 @@ const struct http_method_desc http_methods[26][3] = {
|
|||||||
['H' - 'A'] = {
|
['H' - 'A'] = {
|
||||||
[0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
|
[0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
|
||||||
},
|
},
|
||||||
|
['O' - 'A'] = {
|
||||||
|
[0] = { .meth = HTTP_METH_OPTIONS , .len=7, .text="OPTIONS" },
|
||||||
|
},
|
||||||
['P' - 'A'] = {
|
['P' - 'A'] = {
|
||||||
[0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
|
[0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
|
||||||
[1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
|
[1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
|
||||||
|
Loading…
Reference in New Issue
Block a user