https://bz.apache.org/bugzilla/show_bug.cgi?id=63284
Bug ID: 63284
Summary: Http Request : there is no request body using HTTP
PATCH request
Product: Apache httpd-2
Version: 2.5-HEAD
Hardware: PC
OS: All
Status: NEW
Severity: normal
Priority: P2
Component: mod_lua
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
If a HTTP client sends a PATCH request to httpd the r:requestBody() method
under Lua returns nil.
Obviously the corresponding method lua_ap_requestbody only supports POST and
PUT:
...
if (r->method_number != M_POST && r->method_number != M_PUT)
return (0);
...
So HTTP PATCH requests can not be processed with mod_lua.
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]