Home | History | Annotate | Download | only in ssl

Lines Matching defs:InetAddress

22 import java.net.InetAddress;
60 * javax.net.ssl.SSLSocket#SSLSocket(InetAddress address, int port)
63 int sport = startServer("Cons InetAddress,I");
66 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost(), sport);
72 getSSLSocket(InetAddress.getLocalHost(), sport + 1);
79 getSSLSocket(InetAddress.getLocalHost(), invalidPort[i]);
87 * javax.net.ssl.SSLSocket#SSLSocket(InetAddress address, int port,
88 * InetAddress clientAddress, int clientPort)
91 int sport = startServer("Cons InetAddress,I,InetAddress,I");
93 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost(), sport,
94 InetAddress.getLocalHost(), 0);
100 getSSLSocket(InetAddress.getLocalHost(), 8081, InetAddress.getLocalHost(), 8082);
106 getSSLSocket(InetAddress.getLocalHost(), -1, InetAddress.getLocalHost(), sport + 1);
111 getSSLSocket(InetAddress.getLocalHost(), sport, InetAddress.getLocalHost(), -1);
117 getSSLSocket(InetAddress.getLocalHost(), Integer.MIN_VALUE,
118 InetAddress.getLocalHost(), sport + 1);
126 getSSLSocket(InetAddress.getLocalHost(), sport,
127 InetAddress.getLocalHost(), Integer.MAX_VALUE);
141 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost().getHostName(), sport);
154 getSSLSocket(InetAddress.getLocalHost().getHostName(), invalidPort[i]);
168 * javax.net.ssl.SSLSocket#SSLSocket(String host, int port, InetAddress clientAddress,
172 int sport = startServer("Cons String,I,InetAddress,I");
175 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost().getHostName(), sport,
176 InetAddress.getLocalHost(), 0);
181 getSSLSocket(InetAddress.getLocalHost().getHostName(), 8081, InetAddress.getLocalHost(), 8082);
188 getSSLSocket(InetAddress.getLocalHost().getHostName(), invalidPort[i],
189 InetAddress.getLocalHost(), 0);
194 getSSLSocket(InetAddress.getLocalHost().getHostName(), sport,
195 InetAddress.getLocalHost(), invalidPort[i]);
202 getSSLSocket("bla-bla", sport, InetAddress.getLocalHost(), 0);
608 private SSLSocket getSSLSocket(InetAddress host, int port) throws IOException {
616 private SSLSocket getSSLSocket(InetAddress host, int port, InetAddress localHost, int localPort)
624 private SSLSocket getSSLSocket(String host, int port, InetAddress localHost, int localPort)