aboutsummaryrefslogtreecommitdiffstats
path: root/src/cow_http_te.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/cow_http_te.erl')
-rw-r--r--src/cow_http_te.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cow_http_te.erl b/src/cow_http_te.erl
index d3cb4a0..59f4b86 100644
--- a/src/cow_http_te.erl
+++ b/src/cow_http_te.erl
@@ -128,10 +128,10 @@ horse_stream_identity_dripfeed() ->
%% @doc Decode a chunked stream.
-spec stream_chunked(Data, State)
- -> more | {more, Data, State} | {more, Data, Len, State}
+ -> more | {more, Data, State} | {more, Data, non_neg_integer(), State}
| {more, Data, Data, State}
- | {done, Len, Data} | {done, Data, Len, Data}
- when Data::binary(), State::state(), Len::non_neg_integer().
+ | {done, HasTrailers, Data} | {done, Data, HasTrailers, Data}
+ when Data::binary(), State::state(), HasTrailers::trailers | no_trailers.
stream_chunked(Data, State) ->
stream_chunked(Data, State, <<>>).