Home | History | Annotate | Download | only in okhttp

Lines Matching refs:port

43   @Override public SSLSocket createSocket(String host, int port) throws IOException {
44 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port);
49 String host, int port, InetAddress localAddress, int localPort) throws IOException {
50 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port, localAddress, localPort);
54 @Override public SSLSocket createSocket(InetAddress host, int port) throws IOException {
55 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port);
60 InetAddress host, int port, InetAddress localAddress, int localPort) throws IOException {
61 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port, localAddress, localPort);
74 Socket socket, String host, int port, boolean autoClose) throws IOException {
75 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(socket, host, port, autoClose);