Home | History | Annotate | Download | only in net

Lines Matching refs:port

49      * Creates a server with the specified port, listen backlog, and local IP address to bind to.
50 * comparable to "new java.net.ServerSocket(port,backlog,bindAddress);"
52 * @param port
57 public ServerSocket createServerSocket(int port, int backlog,
61 * Creates an SSL server with the specified port, listen backlog, and local IP address to bind to.
64 * @param port
69 public SSLServerSocket createSSLServerSocket(int port, int backlog,
73 * Creates a stream socket and connects it to the specified port number at the specified IP address.
74 * comparable to "new java.net.Socket(address, port);"
77 * @param port
80 public Socket createSocket(InetAddress address, int port) throws IOException;
83 * Creates a stream socket and connects it to the specified port number at the specified IP address.
84 * comparable to "new java.net.Socket(address, port,localaddress);"
87 * @param port
91 public Socket createSocket(InetAddress address, int port, InetAddress localAddress) throws IOException;
95 * address:port.
98 * @param port the port that we'd like to connect to
101 * @param myPort the port that we are supposed to bind on or 0 for a random
105 * address:port.
109 public Socket createSocket(InetAddress address, int port,
114 * Creates a stream SSL socket and connects it to the specified port number at the specified IP address.
118 * @param port
121 public SSLSocket createSSLSocket(InetAddress address, int port) throws IOException;
124 * Creates a stream SSL socket and connects it to the specified port number at the specified IP address.
128 * @param port
132 public SSLSocket createSSLSocket(InetAddress address, int port, InetAddress localAddress) throws IOException;
135 * Constructs a datagram socket and binds it to any available port on the local host machine.
144 * comparable to "new java.net.DatagramSocket(port,laddr);"
146 * @param port
150 public DatagramSocket createDatagramSocket(int port, InetAddress laddr)