Class java.net.ServerSocket (1.0)


public class ServerSocket extends Object {
  // Public Constructors
    public ServerSocket(int port) throws IOException;
    public ServerSocket(int port, int backlog) throws IOException;
    public ServerSocket(int port, int backlog, InetAddress bindAddr) throws IOException;
  // Class Methods
    public static synchronized void setSocketFactory(SocketImplFactory fac) throws IOException, SocketException;
  // Public Instance Methods
    public Socket accept( ) throws IOException;
    public void close( ) throws IOException;
    public InetAddress getInetAddress( );
    public int getLocalPort( );
    public synchronized int getSoTimeout( ) throws IOException;
    public synchronized void setSoTimeout(int timeout) throws SocketException;
    public String toString( );  // Overrides Object.toString( )
  // Protected Instance Methods
    protected final void implAccept(Socket s) throws IOException;
}