|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ServerSocket | |
|---|---|
| javax.net | Provides classes for networking applications. |
| javax.net.ssl | Provides classes for the secure socket package. |
| Uses of ServerSocket in javax.net |
|---|
| Methods in javax.net that return ServerSocket | |
|---|---|
ServerSocket |
ServerSocketFactory.createServerSocket()
Returns an unbound server socket. |
abstract ServerSocket |
ServerSocketFactory.createServerSocket(int port)
Returns a server socket bound to the specified port. |
abstract ServerSocket |
ServerSocketFactory.createServerSocket(int port,
int backlog)
Returns a server socket bound to the specified port, and uses the specified connection backlog. |
abstract ServerSocket |
ServerSocketFactory.createServerSocket(int port,
int backlog,
InetAddress ifAddress)
Returns a server socket bound to the specified port, with a specified listen backlog and local IP. |
| Uses of ServerSocket in javax.net.ssl |
|---|
| Subclasses of ServerSocket in javax.net.ssl | |
|---|---|
class |
SSLServerSocket
This class extends ServerSockets and
provides secure server sockets using protocols such as the Secure
Sockets Layer (SSL) or Transport Layer Security (TLS) protocols. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||