あるユーザーから別のユーザーにファイルを転送するにはどうすればよいですか。接続に xmpp プロトコルを使用しています。以下のコードで接続を試みました。しかし、接続が失敗するたびにメッセージが表示されます。
[TURNSocket setProxyCandidates:@[@"testserver-desktop"]];
XMPPJID *jid = [XMPPJID jidWithString:@"256122466@testserver-desktop"];
TURNSocket *turnSocket = [[TURNSocket alloc] initWithStream:[self xmppStream] toJID:jid];
[turnSockets addObject:turnSocket];
[turnSocket startWithDelegate:self delegateQueue:dispatch_get_main_queue()];
[turnSocket release];
// デリゲート - (void)turnSocket:(TURNSocket *)sender didSucceed:(GCDAsyncSocket *)socket {
NSLog(@"TURN Connection succeeded!");
NSLog(@"You now have a socket that you can use to send/receive data to/from the other person.");
}
(void)turnSocketDidFail:(TURNSocket *)送信者 {
NSLog(@"TURN 接続に失敗しました!");
}
ファイル転送で2人のユーザー間を接続する方法を教えてください。