Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for peerPrincipal (0.26 sec)

  1. docs/changelogs/upgrading_to_okhttp_4.md

     * **Cookie**: domain, expiresAt, hostOnly, httpOnly, name, path, persistent, value
     * **Dispatcher**: executorService
     * **FormBody**: size
     * **Handshake**: cipherSuite, localCertificates, localPrincipal, peerCertificates, peerPrincipal,
       tlsVersion
     * **HandshakeCertificates**: keyManager, trustManager
     * **Headers**: size
     * **HeldCertificate**: certificate, keyPair
     * **HttpLoggingInterceptor**: level
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 16:58:16 GMT 2022
    - 10.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

          )
        val tlsVersion: TlsVersion = handshake.tlsVersion
        val cipherSuite: CipherSuite = handshake.cipherSuite
        val peerCertificates: List<Certificate> = handshake.peerCertificates
        val peerPrincipal: Principal? = handshake.peerPrincipal
        val localCertificates: List<Certificate> = handshake.localCertificates
        val localPrincipal: Principal? = handshake.localPrincipal
      }
    
      @Test
      fun headers() {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 01 14:21:25 GMT 2024
    - 46.5K bytes
    - Viewed (4)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

        val cipherSuite = response1.handshake!!.cipherSuite
        val localCerts = response1.handshake!!.localCertificates
        val serverCerts = response1.handshake!!.peerCertificates
        val peerPrincipal = response1.handshake!!.peerPrincipal
        val localPrincipal = response1.handshake!!.localPrincipal
        val response2 = client.newCall(request).execute() // Cached!
        assertThat(response2.body.string()).isEqualTo("ABC")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  4. okhttp/api/okhttp.api

    	public final fun -deprecated_localPrincipal ()Ljava/security/Principal;
    	public final fun -deprecated_peerCertificates ()Ljava/util/List;
    	public final fun -deprecated_peerPrincipal ()Ljava/security/Principal;
    	public final fun -deprecated_tlsVersion ()Lokhttp3/TlsVersion;
    	public final fun cipherSuite ()Lokhttp3/CipherSuite;
    	public fun equals (Ljava/lang/Object;)Z
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
Back to top