You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Connects to the MQTT broker and stores the parameters for subsequent reconnects
238
-
* @param host specifies the hostname or ip address to connect to. Defaults to @"localhost".
239
-
* @param port specifies the port to connect to
240
-
* @param tls specifies whether to use SSL or not
241
-
* @param keepalive The Keep Alive is a time interval measured in seconds. The MQTTClient ensures that the interval between Control Packets being sent does not exceed the Keep Alive value. In the absence of sending any other Control Packets, the Client sends a PINGREQ Packet.
242
-
* @param clean specifies if the server should discard previous session information.
243
-
* @param auth specifies the user and pass parameters should be used for authenthication
244
-
* @param user an NSString object containing the user's name (or ID) for authentication. May be nil.
245
-
* @param pass an NSString object containing the user's password. If userName is nil, password must be nil as well.
246
-
* @param will indicates whether a will shall be sent
247
-
* @param willTopic the Will Topic is a string, may be nil
248
-
* @param willMsg the Will Message, might be zero length or nil
249
-
* @param willQos specifies the QoS level to be used when publishing the Will Message.
250
-
* @param willRetainFlag indicates if the server should publish the Will Messages with retainFlag.
251
-
* @param clientId The Client Identifier identifies the Client to the Server. If nil, a random clientId is generated.
252
-
* @param securityPolicy A custom SSL security policy or nil.
253
-
* @param certificates An NSArray of the pinned certificates to use or nil.
238
+
* @param host see connectTo description
239
+
* @param port see connectTo description
240
+
* @param tls see connectTo description
241
+
* @param keepalive see connectTo description
242
+
* @param clean see connectTo description
243
+
* @param auth see connectTo description
244
+
* @param user see connectTo description
245
+
* @param pass see connectTo description
246
+
* @param will see connectTo description
247
+
* @param willTopic see connectTo description
248
+
* @param willMsg see connectTo description
249
+
* @param willQos see connectTo description
250
+
* @param willRetainFlag see connectTo description
251
+
* @param clientId see connectTo description
252
+
* @param securityPolicy see connectTo description
253
+
* @param certificates An see connectTo description
0 commit comments