Lines Matching defs:ServerSocket

47  * @see     java.net.ServerSocket#setSocketFactory(java.net.SocketImplFactory)
52 class ServerSocket implements java.io.Closeable {
72 * Package-private constructor to create a ServerSocket associated with
75 ServerSocket(SocketImpl impl) {
86 public ServerSocket() throws IOException {
124 * @see java.net.ServerSocket#setSocketFactory(java.net.SocketImplFactory)
127 public ServerSocket(int port) throws IOException {
177 * @see java.net.ServerSocket#setSocketFactory(java.net.SocketImplFactory)
180 public ServerSocket(int port, int backlog) throws IOException {
187 * can be used on a multi-homed host for a ServerSocket that
229 public ServerSocket(int port, int backlog, InetAddress bindAddr) throws IOException {
251 * @return the {@code SocketImpl} attached to that ServerSocket.
314 * Binds the {@code ServerSocket} to a specific address
335 * Binds the {@code ServerSocket} to a specific address
520 * Subclasses of ServerSocket use this method to override accept()
613 * Returns the binding state of the ServerSocket.
615 * @return true if the ServerSocket successfully bound to an address
624 * Returns the closed state of the ServerSocket.
638 * timeout, a call to accept() for this ServerSocket
641 * ServerSocket is still valid. The option <B>must</B> be enabled
694 * When a {@code ServerSocket} is created the initial setting
750 return "ServerSocket[unbound]";
756 return "ServerSocket[addr=" + in +
812 * accepted from this {@code ServerSocket}. The value actually set
824 * then the proposed value must be set in the ServerSocket <B>before</B>
825 * it is bound to a local address. This implies, that the ServerSocket must be
827 * be called and lastly the ServerSocket is bound to an address by calling bind().
831 * this ServerSocket will be no larger than 64K bytes.
856 * for this {@code ServerSocket}, that is the proposed buffer size that
857 * will be used for Sockets accepted from this {@code ServerSocket}.
881 * Sets performance preferences for this ServerSocket.