init(tcpPort:)
Initializes the receiver as a local TCP/IP socket of type SOCK_STREAM, listening on a specified port number.
Declaration
convenience init?(tcpPort port: UInt16)Parameters
- port:
The port number for the newly created socket port to listen on. If
portis 0, the system will assign a port number.
Return Value
An initialized local TCP/IP socket of type SOCK_STREAM, listening on port port.
Discussion
This method creates an IPv4 port, not an IPv6 port.