public Socket createSocket()

in src/main/java/com/spotify/google/cloud/pubsub/client/ConfigurableSSLSocketFactory.java [77:83]


  public Socket createSocket(final String host, final int port) throws IOException {
    final SSLSocket s = (SSLSocket) sslSocketFactory.createSocket(host, port);
    if (enabledCipherSuites != null) {
      s.setEnabledCipherSuites(enabledCipherSuites);
    }
    return s;
  }