Home | History | Annotate | Download | only in ssl

Lines Matching refs:sport

62         int sport = startServer("Cons InetAddress,I");
65 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost(), sport);
67 assertEquals(sport, ssl.getPort());
71 getSSLSocket(InetAddress.getLocalHost(), sport + 1);
90 int sport = startServer("Cons InetAddress,I,InetAddress,I");
92 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost(), sport,
95 assertEquals(sport, ssl.getPort());
105 getSSLSocket(InetAddress.getLocalHost(), -1, InetAddress.getLocalHost(), sport + 1);
110 getSSLSocket(InetAddress.getLocalHost(), sport, InetAddress.getLocalHost(), -1);
117 InetAddress.getLocalHost(), sport + 1);
125 getSSLSocket(InetAddress.getLocalHost(), sport,
137 int sport = startServer("Cons String,I");
140 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost().getHostName(), sport);
142 assertEquals(sport, ssl.getPort());
160 getSSLSocket("1.2.3.4hello", sport);
171 int sport = startServer("Cons String,I,InetAddress,I");
174 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost().getHostName(), sport,
177 assertEquals(sport, ssl.getPort());
193 getSSLSocket(InetAddress.getLocalHost().getHostName(), sport,
201 getSSLSocket("1.2.3.4hello", sport, InetAddress.getLocalHost(), 0);
500 return server.sport;
524 int sport;
545 sport = serverSocket.getLocalPort();