| java.lang.Object org.apache.catalina.net.DefaultServerSocketFactory
DefaultServerSocketFactory | final public class DefaultServerSocketFactory implements ServerSocketFactory(Code) | | Default server socket factory, which returns unadorned server sockets.
author: db@eng.sun.com author: Harish Prabandham author: Craig R. McClanahan |
Method Summary | |
public ServerSocket | createSocket(int port) Returns a server socket which uses all network interfaces on
the host, and is bound to a the specified port. | public ServerSocket | createSocket(int port, int backlog) Returns a server socket which uses all network interfaces on
the host, is bound to a the specified port, and uses the
specified connection backlog. | public ServerSocket | createSocket(int port, int backlog, InetAddress ifAddress) Returns a server socket which uses only the specified network
interface on the local host, is bound to a the specified port,
and uses the specified connection backlog. |
|
|