Searched defs:bindAddr (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/net/
H A DServerSocket.java186 * local IP address to bind to. The <i>bindAddr</i> argument
189 * If <i>bindAddr</i> is null, it will default accepting
214 * @param bindAddr the local InetAddress the server will bind to
229 public ServerSocket(int port, int backlog, InetAddress bindAddr) throws IOException { argument
237 bind(new InetSocketAddress(bindAddr, port), backlog);

Completed in 31 milliseconds