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</code> attached to that ServerSocket.
314 * Binds the <code>ServerSocket</code> to a specific address
335 * Binds the <code>ServerSocket</code> to a specific address
503 * Subclasses of ServerSocket use this method to override accept()
596 * Returns the binding state of the ServerSocket.
598 * @return true if the ServerSocket succesfuly bound to an address
607 * Returns the closed state of the ServerSocket.
621 * a call to accept() for this ServerSocket
624 * ServerSocket is still valid. The option <B>must</B> be enabled
677 * When a <tt>ServerSocket</tt> is created the initial setting
725 return "ServerSocket[unbound]";
734 return "ServerSocket[addr=" + in +
789 * accepted from this <tt>ServerSocket</tt>. The value actually set
801 * then the proposed value must be set in the ServerSocket <B>before</B>
802 * it is bound to a local address. This implies, that the ServerSocket must be
804 * be called and lastly the ServerSocket is bound to an address by calling bind().
808 * this ServerSocket will be no larger than 64K bytes.
832 * Gets the value of the SO_RCVBUF option for this <tt>ServerSocket</tt>,
834 * from this <tt>ServerSocket</tt>.
857 * Sets performance preferences for this ServerSocket.