diff options
author | Pablo Lamela <[email protected]> | 2015-12-08 17:45:55 +0000 |
---|---|---|
committer | Pablo Lamela <[email protected]> | 2015-12-08 19:39:48 +0000 |
commit | b20321973be4d8f7be2f766ac51d2a7b9d5d120f (patch) | |
tree | 6387b62758c150170067740f1fd5cea9ee78d40d /lib/inets/src/http_server/mod_esi.erl | |
parent | a16b7d63cc665dca90305b146c15de04487808db (diff) | |
download | otp-b20321973be4d8f7be2f766ac51d2a7b9d5d120f.tar.gz otp-b20321973be4d8f7be2f766ac51d2a7b9d5d120f.tar.bz2 otp-b20321973be4d8f7be2f766ac51d2a7b9d5d120f.zip |
inets: Add PATCH method to client and server
Diffstat (limited to 'lib/inets/src/http_server/mod_esi.erl')
-rw-r--r-- | lib/inets/src/http_server/mod_esi.erl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/inets/src/http_server/mod_esi.erl b/lib/inets/src/http_server/mod_esi.erl index 1923411449..686ab65336 100644 --- a/lib/inets/src/http_server/mod_esi.erl +++ b/lib/inets/src/http_server/mod_esi.erl @@ -281,6 +281,15 @@ erl(#mod{request_uri = ReqUri, ?NICE("Erl mechanism doesn't support method DELETE")}}| Data]}; +erl(#mod{request_uri = ReqUri, + method = "PATCH", + http_version = Version, + data = Data}, _ESIBody, _Modules) -> + ?hdrt("erl", [{method, patch}]), + {proceed, [{status,{501,{"PATCH", ReqUri, Version}, + ?NICE("Erl mechanism doesn't support method PATCH")}}| + Data]}; + erl(#mod{method = "POST", entity_body = Body} = ModData, ESIBody, Modules) -> ?hdrt("erl", [{method, post}]), |