File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1666,14 +1666,14 @@ bool NegotiateWebSocketCompression(
16661666 negotiated->client_max_window_bits = 15 ;
16671667 if (offer.client_max_window_bits_requested ) {
16681668 negotiated->client_max_window_bits =
1669- std::min (NormalizeWindowBits (local_options.client_max_window_bits ),
1670- NormalizeWindowBits (offer.client_max_window_bits ));
1669+ ( std::min) (NormalizeWindowBits (local_options.client_max_window_bits ),
1670+ NormalizeWindowBits (offer.client_max_window_bits ));
16711671 }
16721672 negotiated->server_max_window_bits = NormalizeWindowBits (local_options.server_max_window_bits );
16731673 if (offer.server_max_window_bits_requested ) {
16741674 negotiated->server_max_window_bits =
1675- std::min (negotiated->server_max_window_bits ,
1676- NormalizeWindowBits (offer.server_max_window_bits ));
1675+ ( std::min) (negotiated->server_max_window_bits ,
1676+ NormalizeWindowBits (offer.server_max_window_bits ));
16771677 }
16781678
16791679 std::string header = " permessage-deflate" ;
You can’t perform that action at this time.
0 commit comments