mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-15 20:50:24 +00:00
Merge branch 'master' of git://github.com/pmyarchon/cowboy
This commit is contained in:
commit
5e5d8ab299
1 changed files with 4 additions and 4 deletions
|
@ -791,9 +791,9 @@ body_qs(MaxBodyLength, Req) ->
|
|||
%% @doc Return data from the multipart parser.
|
||||
%%
|
||||
%% Use this function for multipart streaming. For each part in the request,
|
||||
%% this function returns <em>{headers, Headers}</em> followed by a sequence of
|
||||
%% <em>{body, Data}</em> tuples and finally <em>end_of_part</em>. When there
|
||||
%% is no part to parse anymore, <em>eof</em> is returned.
|
||||
%% this function returns <em>{headers, Headers, Req}</em> followed by a sequence of
|
||||
%% <em>{body, Data, Req}</em> tuples and finally <em>{end_of_part, Req}</em>. When there
|
||||
%% is no part to parse anymore, <em>{eof, Req}</em> is returned.
|
||||
-spec multipart_data(Req)
|
||||
-> {headers, cowboy:http_headers(), Req} | {body, binary(), Req}
|
||||
| {end_of_part | eof, Req} when Req::req().
|
||||
|
@ -832,7 +832,7 @@ multipart_data(Req, Length, {more, Parser}) when Length > 0 ->
|
|||
%% @doc Skip a part returned by the multipart parser.
|
||||
%%
|
||||
%% This function repeatedly calls <em>multipart_data/1</em> until
|
||||
%% <em>end_of_part</em> or <em>eof</em> is parsed.
|
||||
%% <em>{end_of_part, Req}</em> or <em>{eof, Req}</em> is parsed.
|
||||
-spec multipart_skip(Req) -> {ok, Req} when Req::req().
|
||||
multipart_skip(Req) ->
|
||||
case multipart_data(Req) of
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue