我正在尝试使用 XMPPFramework 和 OpenFire 在 iOS 上通过 XMPP 传输文件。我的代码基础来自以下教程。我有一个成功的 TurnSocket (XEP-0065: SOCKS5 Bytestreams) 连接,但我不知道如何使用它来发送数据。我有两个考虑因素,我都坚持:1.调用[socket writeData]和2.使用'XEP-0096:SI文件传输'。
可能的解决方案 1 - 调用 [socket writeData] 在我的 App 委托中,我有一个 didSucceed 方法。我可以像这样调用 [socket writeData] ...
- (void)turnSocket:(TURNSocket *)sender didSucceed:(GCDAsyncSocket *)socket {
NSLog(@"TURN Connection succeeded!");
[socket writeData:myData withTimeout:60.0f tag:0];
[turnSockets removeObject:sender];
}
6 月 14 日更新:这是正确的吗?如果是这样,其他用户如何读取数据?我试过实施
- (void)socket:(GCDAsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag
但它永远不会被调用。我如何确保它被调用?
可能的解决方案 2 - XEP-0096:SI 文件传输 我需要使用 XEP-0096:SI 文件传输吗?如果是这样,我如何在需要形成的 XEP-0096 XML 中使用我的成功连接?XEP-0096 文档暗示有一个“哈希”属性,但我不知道这是从哪里来的。
例如
<iq type='set' id='offer1' to='receiver@jabber.org/resource'>
<si xmlns='http://jabber.org/protocol/si'
id='a0'
mime-type='text/plain'
profile='http://jabber.org/protocol/si/profile/file-transfer'>
<file xmlns='http://jabber.org/protocol/si/profile/file-transfer'
name='test.txt'
size='1022'
hash='552da749930852c69ae5d2141d3766b1'
date='1969-07-21T02:56:15Z'>
<desc>This is a test. If this were a real file...</desc>
</file>
<feature xmlns='http://jabber.org/protocol/feature-neg'>
<x xmlns='jabber:x:data' type='form'>
<field var='stream-method' type='list-single'>
<option><value>http://jabber.org/protocol/bytestreams</value></option>
<option><value>http://jabber.org/protocol/ibb</value></option>
</field>
</x>
</feature>
</si>
</iq>