Initializer

init(remoteWithTCPPort:host:)

Initializes the receiver as a TCP/IP socket of type SOCK_STREAM that can connect to a remote host on a specified port. レシーバを型SOCK_STREAMのローカルTCP/IPソケットとして初期化します、それは指定されたポート上でリモートホストに接続できます。

Declaration 宣言

convenience init?(remoteWithTCPPort port: UInt16, 
             host hostName: String?)

Parameters パラメータ

port

The port to connect to. 接続することになるポート。

hostName

The host name to connect to. hostName may be either a host name or an IPv4-style address. 接続することになるホスト名。hostNameは、ホスト名またはIPv4形式のアドレスのどちらかであるかもしれません。

Return Value 戻り値

A TCP/IP socket port of type SOCK_STREAM that can connect to the remote host hostName on port port. SOCK_STREAMのTCP/IPソケットポート、それはリモートホストhostNameにポートport上で接続できます。

Discussion 議論

A connection is not opened to the remote host until data is sent. 接続は、リモートホストに対して開かれません、データが送られるまでは。

See Also 参照

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