public bind(port as Int, backlog as Int, host as String) as Void throws IOException:
Binds and starts listening.
| Parameter | Description |
|---|---|
port | Requested TCP port, or 0 for an automatically assigned port. |
backlog | Maximum pending connection queue length. |
host | Local IPv4 host or wildcard address. |
server = ServerSocket(0) assert server.localPort > 0 server.close()