Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for specs (0.3 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/CustomCipherSuites.java

          @Override protected SSLSocket configureSocket(SSLSocket socket) throws IOException {
            socket.setEnabledCipherSuites(javaNames(spec.cipherSuites()));
            return socket;
          }
        };
    
        client = new OkHttpClient.Builder()
            .connectionSpecs(Collections.singletonList(spec))
            .sslSocketFactory(customSslSocketFactory, trustManager)
            .build();
      }
    
      /**
    Java
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Mar 14 21:57:42 GMT 2019
    - 6.5K bytes
    - Viewed (0)
Back to top