Returns a new server socket object bound to the specified port and inet address object.
Syntax
ServerSocket( port )
ServerSocket( port , length )
ServerSocket( port , length , inetaddress )
Parameters
port
|
the local port number to use.
|
length
|
the maximum size of the queue.
|
inetaddress
|
the inet address object to bind to.
|
Returns
serversocket
|
the new server socket object.
|
Example
sSocket = ServerSocket( port )
|