接受文件传输

发布于 2024-12-17 19:34:22 字数 666 浏览 1 评论 0原文

我将 Adium 客户端与我的 iPhone 模拟器连接,一切都已连接 TurnSocket 成功 在 adium 中,我发送了一个文件,然后收到了这个“iq”:

<iq xmlns="jabber:client" type="get" id="purple60d20b07"
 to="[email protected]/MacBook-Pro-de-Javier-Delgado"
 from="[email protected]/MacBook-Pro-de-Javier-Delgado">
    <query xmlns="http://jabber.org/protocol/disco#info"/>
</iq>

我想这是一条接受传输的消息,不是吗?

我必须做什么才能接受它?

谢谢

I connect Adium client with my iphone simulator, and all is connected
and TurnSocket Succesfull
And in adium i send a file and i recive this "iq":

<iq xmlns="jabber:client" type="get" id="purple60d20b07"
 to="[email protected]/MacBook-Pro-de-Javier-Delgado"
 from="[email protected]/MacBook-Pro-de-Javier-Delgado">
    <query xmlns="http://jabber.org/protocol/disco#info"/>
</iq>

I guess that is a message to accept the transfer, no?

What i have to done to accept it?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不如归去 2024-12-24 19:34:22

它想知道您支持哪些协议扩展,请参阅XEP 30,服务发现

It wants to know what protocol extensions you support, see XEP 30, Service Discovery.

朱染 2024-12-24 19:34:22

正如@Zash 所说,它正在寻找您的客户端支持哪些扩展。具体来说,Adium 要求您提供此信息,以便确定您是否能够进行文件传输。

这是 XEP-0095 Stream Initiation 扩展的一部分,用于协商文件传输两个客户之间。在该请求之后,表明您能够进行文件传输的响应将导致进一步协商如何进行传输(通常是 Socks5 字节流或 IBB)。

使用 XEP-0115 将完全消除谈判中这一步的需要,假设Adium 客户端理解此扩展。 (感谢@Joe Hildebrand - 不知道该扩展)。

As @Zash said, it is looking to find out what extensions your client supports. Specifically, Adium is asking you for this information so it can determine if you are capable of file transfers.

This is part of the XEP-0095 Stream Initiation extension, which is used to negotiate file transfers between two clients. After that request, a response which indicates you are capable of file transfer will lead to further negotiation as to how the transfer should occur (Socks5 bytestream or IBB typically).

Usage of XEP-0115 will eliminate the need for this step in negotiation altogether, assuming that the Adium client understands this extension. (Thanks @Joe Hildebrand - didn't know about that extension).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文