hostId | この接続のホストソケット Id |
address | IP4 アドレス |
port | ポート |
exceptionConnectionId | デフォルトの接続の場合は 0 です。 |
error | 起こりうるエラー。kOK であれば成功。 |
int 成功した場合、ConnectionId を返します (失敗した場合は、0 )。
他のピアへ接続するよう試みます。
接続を設定し、NetworkTransport デバイスへの接続を可能にします。
Receive() を接続する前に Connect の実行が必要です。
エラーが発生した場合、エラーパラメーターは kOK でない値を返します。connectionId は
ホスト接続のための一意のID とともに返されます。
If any problem occurs Receive() will signal that the connection cannot be established.
コード例は、ネットワークトランスポートへの接続とデータ取得の方法を表示しています。
var connectionId = NetworkTransport.Connect(hostId, "10.10.01.17", 2355, 0, error ); if( error != kOk ) { //cannot allocate resources for connection }
//... var event = NetworkTransport.Receive(recHostId, recConnectionId, channelId, buffer, bufferSize, receivedSize, error ); if( event == kConnectEvent ) { if( recHostId == hostId && recConnectionId == connectionId && error == kOK ) ///connection can be used } if( event == kDisconnectEvent ) { if( recHostId == hostId && recConnectionId == connectionId ) { //connection which identified by connectionId cannot be established if( error == kVersionMismatch ) //treansport protocol is different else if( error == kCRCMismatch ) //peer has different network configuration else if( error == kTimeout ) //cannot connect to other peer in period of time, possible peer has not running } }