Type Method 型メソッド

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オブジェクトを、ある与えられたポート上でのある与えられたホストとのソケット接続に対して、作成して参照によって返します。

Declaration 宣言

+ (void)getStreamsToHost:(NSHost *)host 
                    port:(NSInteger)port 
             inputStream:(NSInputStream * _Nullable *)inputStream 
            outputStream:(NSOutputStream * _Nullable *)outputStream;

Parameters パラメータ

host

The host to which to connect. それに対して接続することになるホスト。

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. porthostも適切に指定されないならば、どんなソケット接続もなされません。

See Also 参照

Related Documentation 関連文書