Initializer

init(tcpPort:)

Initializes the receiver as a local TCP/IP socket of type SOCK_STREAM, listening on a specified port number. レシーバを型SOCK_STREAMのローカルTCP/IPソケットとして初期化します、指定されたポート番号上で聞き耳を立てます。

Declaration 宣言

convenience init?(tcpPort port: UInt16)

Parameters パラメータ

port

The port number for the newly created socket port to listen on. If port is 0, the system will assign a port number. 新しく作成されたソケットポートに対するポート番号、それの上で聞き耳をたてることになります。portが0ならば、システムがポート番号を割り当てるでしょう。

Return Value 戻り値

An initialized local TCP/IP socket of type SOCK_STREAM, listening on port port. SOCK_STREAMのある初期化されたローカルTCP/IPソケット、それはポートport上で聞き耳を立てます。

Discussion 議論

This method creates an IPv4 port, not an IPv6 port. このメソッドは、あるIPv4ポートを作成します、IPv6ポートではなく。

See Also 参照

Creating Instances インスタンスを作成する