mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-16 05:00:24 +00:00
Improve consistency of return types for cowboy_req API
The signature of parse_header, body_qs, multipart_data and the set_resp_* functions has changed. See the cowboy_req module edoc for more details.
This commit is contained in:
parent
e13ab806ea
commit
8d5f8db90a
9 changed files with 116 additions and 103 deletions
|
@ -16,7 +16,7 @@ handle(Req, State=#state{headers=_Headers, body=Body, reply=set_resp}) ->
|
|||
{ok, Transport, Socket} = cowboy_req:transport(Req),
|
||||
SFun = fun() -> Transport:send(Socket, Body), sent end,
|
||||
SLen = iolist_size(Body),
|
||||
{ok, Req2} = cowboy_req:set_resp_body_fun(SLen, SFun, Req),
|
||||
Req2 = cowboy_req:set_resp_body_fun(SLen, SFun, Req),
|
||||
{ok, Req3} = cowboy_req:reply(200, Req2),
|
||||
{ok, Req3, State}.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue