diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cow_http2.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cow_http2.erl b/src/cow_http2.erl index 7f2d75b..e3f5537 100644 --- a/src/cow_http2.erl +++ b/src/cow_http2.erl @@ -391,9 +391,11 @@ settings_payload(Settings) -> header_table_size -> <<1:16, Value:32>>; enable_push when Value -> <<2:16, 1:32>>; enable_push -> <<2:16, 0:32>>; + max_concurrent_streams when Value =:= infinity -> <<>>; max_concurrent_streams -> <<3:16, Value:32>>; initial_window_size -> <<4:16, Value:32>>; max_frame_size -> <<5:16, Value:32>>; + max_header_list_size when Value =:= infinity -> <<>>; max_header_list_size -> <<6:16, Value:32>>; enable_connect_protocol when Value -> <<8:16, 1:32>>; enable_connect_protocol -> <<8:16, 0:32>> |