- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for client_max_window_bits (0.1 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt
private fun WebSocketExtensions.isValid(): Boolean { // If the server returned parameters we don't understand, fail the web socket. if (unknownValues) return false // If the server returned a value for client_max_window_bits, fail the web socket. if (clientMaxWindowBits != null) return false // If the server returned an illegal server_max_window_bits, fail the web socket.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 01 14:21:25 UTC 2024 - 22.1K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt
} @Test @Throws(Exception::class) fun clientMaxWindowBitsIncluded() { extensionNegotiationFailure("permessage-deflate; client_max_window_bits=15") } @Test @Throws(Exception::class) fun serverMaxWindowBitsTooLow() { extensionNegotiationFailure("permessage-deflate; server_max_window_bits=7") } @Test
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 31 17:16:15 UTC 2024 - 35.2K bytes - Viewed (0)