Public Attributes | List of all members
MQTTClient_connectOptions Struct Reference

#include <MQTTClient.h>

Public Attributes

struct {
   const void *   data
 
   int   len
 
binarypwd
 
int cleansession
 
int cleanstart
 
int connectTimeout
 
const MQTTClient_nameValuehttpHeaders
 
int keepAliveInterval
 
int maxInflightMessages
 
int MQTTVersion
 
const char * password
 
int reliable
 
int retryInterval
 
struct {
   int   MQTTVersion
 
   const char *   serverURI
 
   int   sessionPresent
 
returned
 
int serverURIcount
 
char *const * serverURIs
 
MQTTClient_SSLOptionsssl
 
char struct_id [4]
 
int struct_version
 
const char * username
 
MQTTClient_willOptionswill
 

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.

Definition at line 805 of file MQTTClient.h.

Member Data Documentation

struct { ... } MQTTClient_connectOptions::binarypwd

Optional binary password. Only checked and used if the password option is NULL

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.

Definition at line 850 of file MQTTClient.h.

int MQTTClient_connectOptions::cleanstart

Definition at line 946 of file MQTTClient.h.

int MQTTClient_connectOptions::connectTimeout

The time interval in seconds to allow a connect to complete.

Definition at line 882 of file MQTTClient.h.

const void* MQTTClient_connectOptions::data

binary password data

Definition at line 937 of file MQTTClient.h.

const MQTTClient_nameValue* MQTTClient_connectOptions::httpHeaders

httpHeaders

Definition at line 950 of file MQTTClient.h.

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.

Definition at line 828 of file MQTTClient.h.

int MQTTClient_connectOptions::len

binary password length

Definition at line 936 of file MQTTClient.h.

int MQTTClient_connectOptions::maxInflightMessages

The maximum number of messages in flight

Definition at line 942 of file MQTTClient.h.

int MQTTClient_connectOptions::MQTTVersion

Sets the version of MQTT to be used on the connect. 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

the MQTT version used to connect with

Definition at line 921 of file MQTTClient.h.

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.

Definition at line 878 of file MQTTClient.h.

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.

Definition at line 860 of file MQTTClient.h.

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.

Definition at line 890 of file MQTTClient.h.

struct { ... } MQTTClient_connectOptions::returned

Returned from the connect when the MQTT version used to connect is 3.1.1

const char* MQTTClient_connectOptions::serverURI

the serverURI connected to

Definition at line 927 of file MQTTClient.h.

int MQTTClient_connectOptions::serverURIcount

The number of entries in the optional serverURIs array. Defaults to 0.

Definition at line 899 of file MQTTClient.h.

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.

Definition at line 913 of file MQTTClient.h.

int MQTTClient_connectOptions::sessionPresent

if the MQTT version is 3.1.1, the value of sessionPresent returned in the connack

Definition at line 929 of file MQTTClient.h.

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.

Definition at line 895 of file MQTTClient.h.

char MQTTClient_connectOptions::struct_id[4]

The eyecatcher for this structure. must be MQTC.

Definition at line 808 of file MQTTClient.h.

int MQTTClient_connectOptions::struct_version

The version number of this structure. Must be 0, 1, 2, 3, 4, 5, 6 or 7. 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

Definition at line 818 of file MQTTClient.h.

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.

Definition at line 872 of file MQTTClient.h.

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.

Definition at line 866 of file MQTTClient.h.


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


plotjuggler
Author(s): Davide Faconti
autogenerated on Sun Dec 6 2020 04:02:49