The host to which to connect. それに対して接続することになるホスト。
Type Method
型メソッド
get
getStreamsToHost:port:inputStream:outputStream:
Creates and returns by reference an
NSInputStream
object and NSOutputStream
object for a socket connection with a given host on a given port.
NSInputStream
オブジェクトとNSOutputStream
オブジェクトを、ある与えられたポート上でのある与えられたホストとのソケット接続に対して、作成して参照によって返します。
Availability 有効性
- macOS 10.3–10.10 Deprecated
Technology
- Foundation ファウンデーション
Declaration 宣言
+ (void)getStreamsToHost:(NSHost
*)host
port:(NSInteger
)port
inputStream:(NSInputStream
* _Nullable *)inputStream
outputStream:(NSOutputStream
* _Nullable *)outputStream;
Parameters パラメータ
host
port
The port to connect to on
host
.host
上で接続することになるポート。inputStream
Upon return, contains the input stream. If
nil
is passed, the stream object is not created. 戻りでは、入力ストリームを含みます。nil
が渡されるならば、ストリームオブジェクトは作成されません。outputStream
Upon return, contains the output stream. If
nil
is passed, the stream object is not created. 戻りでは、出力入力ストリームを含みます。nil
が渡されるならば、ストリームオブジェクトは作成されません。
Discussion 議論
If neither port
nor host
is properly specified, no socket connection is made.
port
もhost
も適切に指定されないならば、どんなソケット接続もなされません。