diff options
author | Loïc Hoguin <[email protected]> | 2017-05-19 16:42:37 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2017-05-19 16:42:37 +0200 |
commit | 0d5b36e1ba765c4aef84449e76c8ab8061074f96 (patch) | |
tree | 891921b2b33e951db2cc3d07f4f4a34a150ff962 /src/cow_multipart.erl | |
parent | 15750e632d9886eb9bfc876ba03402464b8facb3 (diff) | |
download | cowlib-0d5b36e1ba765c4aef84449e76c8ab8061074f96.tar.gz cowlib-0d5b36e1ba765c4aef84449e76c8ab8061074f96.tar.bz2 cowlib-0d5b36e1ba765c4aef84449e76c8ab8061074f96.zip |
Add functions for creating WINDOW_UPDATE h2 frames
Diffstat (limited to 'src/cow_multipart.erl')
-rw-r--r-- | src/cow_multipart.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cow_multipart.erl b/src/cow_multipart.erl index 3cbef56..e86afcc 100644 --- a/src/cow_multipart.erl +++ b/src/cow_multipart.erl @@ -538,6 +538,7 @@ form_data(Headers) -> false -> <<"text/plain">>; {_, T} -> T end, + %% @todo Turns out this is unnecessary per RFC7578 4.7. TransferEncoding = case lists:keyfind( <<"content-transfer-encoding">>, 1, Headers) of false -> <<"7bit">>; |