建立mqtt连接时如何解决“ SocketStream写错误[0x60400016d080]:1 32”

时间:2019-05-18 23:03:12

标签: ios swift mqtt

我正在尝试通过Swift连接到ios上使用的mqtt服务器。 我尝试使用通过CocoaPods安装的SwiftMQTT。

mqttSession = MQTTSession(
    host: "url",
    port: 3004,
    clientID: "101",
    cleanSession: true,
    keepAlive: 30,
    useSSL: false
)

mqttSession.connect { error in
    if error == .none {
        print("Connected!")
    } else {
        print("DAAAMN")
        print(error.description)
    }
}

但是,连接时出现以下错误:

  

SocketStream写错误[0x60400016d080]:1 32

关于如何解决此问题的任何建议,或用于连接的替代方法?我只需要订阅功能。

0 个答案:

没有答案