Home | History | Annotate | Download | only in net

Lines Matching defs:createSocket

64  * If you want a connection timeout as well, use {@link #createSocket()}
71 * for createSocket variants that specify a hostname. When using methods that
176 * to {@link #createSocket()}. It is harmless to call this method
255 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException {
256 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close);
273 public Socket createSocket() throws IOException {
274 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket();
287 public Socket createSocket(InetAddress addr, int port, InetAddress localAddr, int localPort)
289 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
303 public Socket createSocket(InetAddress addr, int port) throws IOException {
304 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(addr, port);
316 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort)
318 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(
334 public Socket createSocket(String host, int port) throws IOException {
335 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(host, port);