Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 22 of 22 for connectionSpec (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/changelogs/changelog_3x.md

        configure OkHttp 3.13 to allow TLSv1 and TLSv1.1 connections:
    
        ```
        OkHttpClient client = new OkHttpClient.Builder()
            .connectionSpecs(Arrays.asList(ConnectionSpec.COMPATIBLE_TLS))
            .build();
        ```
    
     *  New: You can now access HTTP trailers with `Response.trailers()`. This method may only be called
        after the entire HTTP response body has been read.
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Click Count (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RealInterceptorChain.kt

          certificatePinner = useCertificatePinner,
          proxyAuthenticator = proxyAuthenticator,
          proxy = proxy,
          protocols = call.client.protocols,
          connectionSpecs = call.client.connectionSpecs,
          proxySelector = proxySelector,
        )
      }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 12.8K bytes
    - Click Count (0)
Back to Top