ios中XMPPFramework的TURNSocket连接成功后如何接收文件?



我想使用TURNSocket在两个用户之间传输文件。

User1:(iphone sumulator)User2:(Spark用户)

现在套接字已经连接,我想通过Spark从User2发送文件到User1。iphone模拟器可以接收到以下信息:

<iq xmlns="jabber:client" id="P1J6b-29" to="User1@local/75694fce" from="User2@local/Spark 2.6.3"     type="set">
  <si xmlns="http://jabber.org/protocol/si" id="jsi_8334411215933911079" mime-type="image/png"
      profile="http://jabber.org/protocol/si/profile/file-transfer">
    <file xmlns="http://jabber.org/protocol/si/profile/file-transfer" name="a2.png" size="12618">
      <desc>Sending 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>

我看到这些在iphone sdk的XMPP发送/接收文件…?关于如何在didSucceed方法中处理的主题,但我不知道如何在iphone模拟器上接收Spark用户发送的文件。

然后,在您的didSucceed实现中,在传入的套接字上发送数据,使用:

- (void)writeData:(NSData *)data 
  withTimeout:(NSTimeInterval)timeout 
          tag:(long)tag;

最后,关闭socket:

- (void)disconnectAfterWriting;

那么如何在这种方法或其他方法中编码来接收文件?

- (void)turnSocket:(TURNSocket *)sender didSucceed:(GCDAsyncSocket *)socket {
    // Where is the NSData that can be find to used in writeData method ?
}

试试FastSocket https://github.com/dreese/fast-socket。它最适合iphone或服务器之间的TCP连接。也请阅读文档(尤其是单元测试),以获得如何使用它的详细说明。您需要知道需要相互连接的每个设备的IP。

最新更新