diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/http.hrl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http.hrl b/include/http.hrl index 9ba3787..21d837b 100644 --- a/include/http.hrl +++ b/include/http.hrl @@ -41,8 +41,8 @@ meta = [] :: [{atom(), any()}], %% Request body. - body_state = waiting :: waiting | done | - {multipart, non_neg_integer(), fun()}, + body_state = waiting :: waiting | done | {stream, fun(), any(), fun()} + | {multipart, non_neg_integer(), fun()}, buffer = <<>> :: binary(), %% Response. |