Uses of Class
java.net.ServerSocket
| Package | Description |
|---|---|
| java.nio.channels | |
| javax.net | |
| javax.net.ssl |
This package provides classes and interfaces needed to use the Secure
Sockets Layer (SSL) protocol and the successor Transport Layer
Security (TLS) protocol.
|
| org.conscrypt |
-
Uses of ServerSocket in java.nio.channels
Methods in java.nio.channels that return ServerSocket Modifier and Type Method Description abstract ServerSocketServerSocketChannel. socket()Return the server-socket assigned this channel, which does not declare any public methods that are not declared inServerSocket. -
Uses of ServerSocket in javax.net
Methods in javax.net that return ServerSocket Modifier and Type Method Description ServerSocketServerSocketFactory. createServerSocket()Creates a new server socket which is not bound to any local address.abstract ServerSocketServerSocketFactory. createServerSocket(int port)Creates a new server socket which is bound to the given port with a maximum backlog of 50 unaccepted connections.abstract ServerSocketServerSocketFactory. createServerSocket(int port, int backlog)Creates a new server socket which is bound to the given port and configures its maximum of queued connections.abstract ServerSocketServerSocketFactory. createServerSocket(int port, int backlog, InetAddress iAddress)Creates a new server socket which is bound to the given address on the specified port and configures its maximum of queued connections. -
Uses of ServerSocket in javax.net.ssl
Subclasses of ServerSocket in javax.net.ssl Modifier and Type Class Description classSSLServerSocketThe extension ofServerSocketwhich provides secure server sockets based on protocols like SSL, TLS, or others. -
Uses of ServerSocket in org.conscrypt
Subclasses of ServerSocket in org.conscrypt Modifier and Type Class Description classOpenSSLServerSocketImplOpenSSL-based implementation of server sockets.classSSLServerSocketImplSSLServerSocket implementationMethods in org.conscrypt that return ServerSocket Modifier and Type Method Description ServerSocketOpenSSLServerSocketFactoryImpl. createServerSocket()ServerSocketOpenSSLServerSocketFactoryImpl. createServerSocket(int port)ServerSocketOpenSSLServerSocketFactoryImpl. createServerSocket(int port, int backlog)ServerSocketOpenSSLServerSocketFactoryImpl. createServerSocket(int port, int backlog, InetAddress iAddress)ServerSocketSSLServerSocketFactoryImpl. createServerSocket()ServerSocketSSLServerSocketFactoryImpl. createServerSocket(int port)ServerSocketSSLServerSocketFactoryImpl. createServerSocket(int port, int backlog)ServerSocketSSLServerSocketFactoryImpl. createServerSocket(int port, int backlog, InetAddress iAddress)