MQTT C Client Libraries Internals
Data Fields
MQTTClient_connectOptions Struct Reference

MQTTClient_connectOptions defines several settings that control the way the client connects to an MQTT server. More...

#include <MQTTClient.h>

Collaboration diagram for MQTTClient_connectOptions:
Collaboration graph
[legend]

Data Fields

char struct_id [4]
 The eyecatcher for this structure. More...
 
int struct_version
 The version number of this structure. More...
 
int keepAliveInterval
 The "keep alive" interval, measured in seconds, defines the maximum time that should pass without communication between the client and the server The client will ensure that at least one message travels across the network within each keep alive period. More...
 
int cleansession
 This is a boolean value. More...
 
int reliable
 This is a boolean value that controls how many messages can be in-flight simultaneously. More...
 
MQTTClient_willOptionswill
 This is a pointer to an MQTTClient_willOptions structure. More...
 
const char * username
 MQTT servers that support the MQTT v3.1.1 protocol provide authentication and authorisation by user name and password. More...
 
const char * password
 MQTT servers that support the MQTT v3.1.1 protocol provide authentication and authorisation by user name and password. More...
 
int connectTimeout
 The time interval in seconds to allow a connect to complete.
 
int retryInterval
 The time interval in seconds after which unacknowledged publish requests are retried during a TCP session. More...
 
MQTTClient_SSLOptionsssl
 This is a pointer to an MQTTClient_SSLOptions structure. More...
 
int serverURIcount
 The number of entries in the optional serverURIs array. More...
 
char *const * serverURIs
 An optional array of null-terminated strings specifying the servers to which the client will connect. More...
 
int MQTTVersion
 Sets the version of MQTT to be used on the connect. More...
 
struct {
   const char *   serverURI
 the serverURI connected to
 
   int   MQTTVersion
 the MQTT version used to connect with
 
   int   sessionPresent
 if the MQTT version is 3.1.1, the value of sessionPresent returned in the connack
 
returned
 Returned from the connect when the MQTT version used to connect is 3.1.1.
 
struct {
   int   len
 binary password length
 
   const void *   data
 binary password data
 
binarypwd
 Optional binary password. More...
 
int maxInflightMessages
 The maximum number of messages in flight.
 
int cleanstart
 
const MQTTClient_nameValuehttpHeaders
 HTTP headers for websockets.
 
const char * httpProxy
 HTTP proxy.
 
const char * httpsProxy
 HTTPS proxy.
 

Detailed Description

MQTTClient_connectOptions defines several settings that control the way the client connects to an MQTT server.

Note: Default values are not defined for members of MQTTClient_connectOptions so it is good practice to specify all settings. If the MQTTClient_connectOptions structure is defined as an automatic variable, all members are set to random values and thus must be set by the client application. If the MQTTClient_connectOptions structure is defined as a static variable, initialization (in compliant compilers) sets all values to 0 (NULL for pointers). A keepAliveInterval setting of 0 prevents correct operation of the client and so you must at least set a value for keepAliveInterval.

Suitable default values are set in the following initializers:

Field Documentation

◆ binarypwd

struct { ... } MQTTClient_connectOptions::binarypwd

Optional binary password.

Only checked and used if the password option is NULL

◆ cleansession

int MQTTClient_connectOptions::cleansession

This is a boolean value.

The cleansession setting controls the behaviour of both the client and the server at connection and disconnection time. The client and server both maintain session state information. This information is used to ensure "at least once" and "exactly once" delivery, and "exactly once" receipt of messages. Session state also includes subscriptions created by an MQTT client. You can choose to maintain or discard state information between sessions.

When cleansession is true, the state information is discarded at connect and disconnect. Setting cleansession to false keeps the state information. When you connect an MQTT client application with MQTTClient_connect(), the client identifies the connection using the client identifier and the address of the server. The server checks whether session information for this client has been saved from a previous connection to the server. If a previous session still exists, and cleansession=true, then the previous session information at the client and server is cleared. If cleansession=false, the previous session is resumed. If no previous session exists, a new session is started.

◆ keepAliveInterval

int MQTTClient_connectOptions::keepAliveInterval

The "keep alive" interval, measured in seconds, defines the maximum time that should pass without communication between the client and the server The client will ensure that at least one message travels across the network within each keep alive period.

In the absence of a data-related message during the time period, the client sends a very small MQTT "ping" message, which the server will acknowledge. The keep alive interval enables the client to detect when the server is no longer available without having to wait for the long TCP/IP timeout.

◆ MQTTVersion

int MQTTClient_connectOptions::MQTTVersion

Sets the version of MQTT to be used on the connect.

the MQTT version used to connect with

MQTTVERSION_DEFAULT (0) = default: start with 3.1.1, and if that fails, fall back to 3.1 MQTTVERSION_3_1 (3) = only try version 3.1 MQTTVERSION_3_1_1 (4) = only try version 3.1.1 MQTTVERSION_5 (5) = only try version 5.0

◆ password

const char* MQTTClient_connectOptions::password

MQTT servers that support the MQTT v3.1.1 protocol provide authentication and authorisation by user name and password.

This is the password parameter.

◆ reliable

int MQTTClient_connectOptions::reliable

This is a boolean value that controls how many messages can be in-flight simultaneously.

Setting reliable to true means that a published message must be completed (acknowledgements received) before another can be sent. Attempts to publish additional messages receive an ::MQTTCLIENT_MAX_MESSAGES_INFLIGHT return code. Setting this flag to false allows up to 10 messages to be in-flight. This can increase overall throughput in some circumstances.

◆ retryInterval

int MQTTClient_connectOptions::retryInterval

The time interval in seconds after which unacknowledged publish requests are retried during a TCP session.

With MQTT 3.1.1 and later, retries are not required except on reconnect. 0 turns off in-session retries, and is the recommended setting. Adding retries to an already overloaded network only exacerbates the problem.

◆ serverURIcount

int MQTTClient_connectOptions::serverURIcount

The number of entries in the optional serverURIs array.

Defaults to 0.

◆ serverURIs

char* const* MQTTClient_connectOptions::serverURIs

An optional array of null-terminated strings specifying the servers to which the client will connect.

Each string takes the form protocol://host:port. protocol must be tcp, ssl, ws or wss. The TLS enabled prefixes (ssl, wss) are only valid if a TLS version of the library is linked with. For host, you can specify either an IP address or a host name. For instance, to connect to a server running on the local machines with the default MQTT port, specify tcp://localhost:1883. If this list is empty (the default), the server URI specified on MQTTClient_create() is used.

◆ ssl

MQTTClient_SSLOptions* MQTTClient_connectOptions::ssl

This is a pointer to an MQTTClient_SSLOptions structure.

If your application does not make use of SSL, set this pointer to NULL.

◆ struct_id

char MQTTClient_connectOptions::struct_id[4]

The eyecatcher for this structure.

must be MQTC.

◆ struct_version

int MQTTClient_connectOptions::struct_version

The version number of this structure.

Must be 0, 1, 2, 3, 4, 5, 6, 7 or 8. 0 signifies no SSL options and no serverURIs 1 signifies no serverURIs 2 signifies no MQTTVersion 3 signifies no returned values 4 signifies no binary password option 5 signifies no maxInflightMessages and cleanstart 6 signifies no HTTP headers option 7 signifies no HTTP proxy and HTTPS proxy options

◆ username

const char* MQTTClient_connectOptions::username

MQTT servers that support the MQTT v3.1.1 protocol provide authentication and authorisation by user name and password.

This is the user name parameter.

◆ will

MQTTClient_willOptions* MQTTClient_connectOptions::will

This is a pointer to an MQTTClient_willOptions structure.

If your application does not make use of the Last Will and Testament feature, set this pointer to NULL.


The documentation for this struct was generated from the following file: