空闲连接 - 超时 - XMPP 连接

Idle connection - timeout - XMPP connect

我正在使用 XMPPStream XMPP 框架并且我有以下内容 错误:

<stream:error xmlns:stream="http://etherx.jabber.org/streams">
    <connection-timeout xmlns="urn:ietf:params:xml:ns:xmpp-streams">
    </connection-timeout>
    <text xmlns="urn:ietf:params:xml:ns:xmpp-streams" lang="en">Idle connection
    </text>
</stream:error>

这是我正在使用的代码片段:

let xmppStream = XMPPStream()
xmppStream.addDelegate(self, delegateQueue: .main)

let jabberID = "emad@chat.address.net"
xmppStream.myJID = XMPPJID(string: jabberID)

do {
    try xmppStream.connect(withTimeout: XMPPStreamTimeoutNone)
} catch {
    print("Something went wrong!")
}

我有同样的问题。我解决了。转到此 link

您的委托函数有问题。去修复它