File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 118
118
| {peer_unidi_stream_count , uint16 ()}
119
119
| {retry_memory_limit , uint16 ()}
120
120
| {load_balancing_mode , 0 ..2 }
121
- | {max_operations_per_drain , uint8 ( )}
121
+ | {max_operations_per_drain , 1 ..( 1 bsl 8 - 1 )}
122
122
| {send_buffering_enabled , 0 | 1 }
123
123
| {pacing_enabled , 0 | 1 }
124
124
| {migration_enabled , 0 | 1 }
Original file line number Diff line number Diff line change @@ -301,8 +301,8 @@ valid_quicer_settings() ->
301
301
quicer_setting_val_is_power_2 (stream_recv_window_bidi_local_default , Opts ) andalso
302
302
quicer_setting_val_is_power_2 (stream_recv_window_bidi_remote_default , Opts ) andalso
303
303
quicer_setting_val_is_power_2 (stream_recv_window_unidi_default , Opts ) andalso
304
- (proplists :get_value (maximum_mtu , Opts , 1500 ) >
305
- proplists :get_value (minimum_mtu , Opts , 1248 ))
304
+ (proplists :get_value (maximum_mtu , lists : reverse ( Opts ) , 1500 ) >
305
+ proplists :get_value (minimum_mtu , lists : reverse ( Opts ) , 1248 ))
306
306
).
307
307
308
308
-spec ensure_dummy_listener (non_neg_integer ()) -> _ .
You can’t perform that action at this time.
0 commit comments