Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for SPDY_3 (0.55 seconds)

  1. okhttp/src/jvmTest/kotlin/okhttp3/OkHttpClientTest.kt

        }
      }
    
      @Test fun spdy3IsRemovedFromProtocols() {
        val protocols =
          mutableListOf(
            Protocol.HTTP_1_1,
            Protocol.SPDY_3,
          )
        val client =
          OkHttpClient
            .Builder()
            .protocols(protocols)
            .build()
        assertThat(client.protocols).containsExactly(Protocol.HTTP_1_1)
      }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 13.4K bytes
    - Click Count (1)
Back to Top