Я использую XMPPStream XMPP framework и у меня следующая ошибка:
<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!")
}