diff --git a/.github/workflows/artifact_linux.yml b/.github/workflows/artifact_linux.yml index fdc7f556..3a876e9a 100644 --- a/.github/workflows/artifact_linux.yml +++ b/.github/workflows/artifact_linux.yml @@ -3,7 +3,7 @@ on: [workflow_dispatch] jobs: build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@v2 @@ -26,5 +26,5 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v3 with: - name: Eclipse-Paho-MQTT-C-1.3.12-Linux.tar.gz - path: /home/runner/work/paho.mqtt.c/paho.mqtt.c/build.paho/Eclipse-Paho-MQTT-C-1.3.12-Linux.tar.gz + name: Eclipse-Paho-MQTT-C-1.3.13-Linux.tar.gz + path: /home/runner/work/paho.mqtt.c/paho.mqtt.c/build.paho/Eclipse-Paho-MQTT-C-1.3.13-Linux.tar.gz diff --git a/.github/workflows/artifact_macos.yml b/.github/workflows/artifact_macos.yml index 8013e86e..cac2ca3e 100644 --- a/.github/workflows/artifact_macos.yml +++ b/.github/workflows/artifact_macos.yml @@ -26,5 +26,5 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v3 with: - name: Eclipse-Paho-MQTT-C-1.3.12-Darwin.tar.gz - path: /Users/runner/work/paho.mqtt.c/paho.mqtt.c/build.paho/Eclipse-Paho-MQTT-C-1.3.12-Darwin.tar.gz + name: Eclipse-Paho-MQTT-C-1.3.13-Darwin.tar.gz + path: /Users/runner/work/paho.mqtt.c/paho.mqtt.c/build.paho/Eclipse-Paho-MQTT-C-1.3.13-Darwin.tar.gz diff --git a/CMakeLists.txt b/CMakeLists.txt index cf0fd68b..1148e8ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ #******************************************************************************* -# Copyright (c) 2015, 2020 logi.cals GmbH and others +# Copyright (c) 2015, 2023 logi.cals GmbH and others # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v2.0 @@ -44,6 +44,7 @@ ENDIF() ## build options SET(PAHO_WITH_SSL FALSE CACHE BOOL "Flag that defines whether to build ssl-enabled binaries too. ") +SET(PAHO_WITH_LIBUUID FALSE CACHE BOOL "Flag that defines whether libuuid or a custom uuid implementation should be used") SET(PAHO_BUILD_SHARED TRUE CACHE BOOL "Build shared library") SET(PAHO_BUILD_STATIC FALSE CACHE BOOL "Build static library") SET(PAHO_BUILD_DOCUMENTATION FALSE CACHE BOOL "Create and install the HTML based API documentation (requires Doxygen)") @@ -62,10 +63,18 @@ IF (PAHO_USE_SELECT) ADD_DEFINITIONS(-DUSE_SELECT=1) ENDIF() +IF (PAHO_WITH_LIBUUID) + ADD_DEFINITIONS(-DUSE_LIBUUID=1) +ENDIF() + IF (NOT PAHO_BUILD_SHARED AND NOT PAHO_BUILD_STATIC) MESSAGE(FATAL_ERROR "You must set either PAHO_BUILD_SHARED, PAHO_BUILD_STATIC, or both") ENDIF() +IF (PAHO_BUILD_SAMPLES AND NOT PAHO_WITH_SSL) + MESSAGE(FATAL_ERROR "You must build with SSL to build the samples") +ENDIF() + IF(PAHO_BUILD_DEB_PACKAGE) set(CMAKE_INSTALL_DOCDIR share/doc/libpaho-mqtt) set(CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS ON) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d62bd218..91b782b0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -31,14 +31,11 @@ Please read the [Eclipse Foundation policy on accepting contributions via Git](h 9. Push the changes in your branch to your forked repository. 10. Finally, go to [https://github.com/eclipse/paho.mqtt.c](https://github.com/eclipse/paho.mqtt.c) and create a pull request from your "YOUR_BRANCH_NAME" branch to the ```develop``` one to request review and merge of the commits in your pushed branch. - -What happens next depends on the content of the patch. If it is 100% authored -by the contributor and is less than 1000 lines (and meets the needs of the -project), then it can be pulled into the main repository. If not, more steps -are required. These are detailed in the -[legal process poster](http://www.eclipse.org/legal/EclipseLegalProcessPoster.pdf). - - +What happens next depends on the content of the patch. +If it is 100% authored by the contributor with less than 1000 lines of new product code that meets +the needs of the project (refactored, test code and sample code is excluded from the count), then it +can be pulled into the main repository. When there are more than 1000 lines of new product code, +more steps are required. More details are provided in the [handbook](https://www.eclipse.org/projects/handbook/#ip). ## Developer resources: diff --git a/README.md b/README.md index fce8f686..2950379e 100644 --- a/README.md +++ b/README.md @@ -214,7 +214,7 @@ Test code is available in the `test` directory. The tests can be built and execu After ensuring a MQTT broker is available, it is possible to execute the tests by starting the proxy and running `ctest` as described below: ``` -$ python ../test/mqttsas2.py & +$ python ../test/mqttsas.py & $ ctest -VV ``` diff --git a/docs/MQTTAsync/html/_m_q_t_t_async_8h.html b/docs/MQTTAsync/html/_m_q_t_t_async_8h.html index 0e0b4628..e7e5513e 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_async_8h.html +++ b/docs/MQTTAsync/html/_m_q_t_t_async_8h.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync.h File Reference @@ -30,10 +30,10 @@ - + @@ -244,14 +244,14 @@ Typedefs

Enumerations

enum  MQTTASYNC_TRACE_LEVELS {
-  MQTTASYNC_TRACE_MAXIMUM = 1, -MQTTASYNC_TRACE_MEDIUM, -MQTTASYNC_TRACE_MINIMUM, -MQTTASYNC_TRACE_PROTOCOL, -
-  MQTTASYNC_TRACE_ERROR, -MQTTASYNC_TRACE_SEVERE, -MQTTASYNC_TRACE_FATAL +  MQTTASYNC_TRACE_MAXIMUM = 1 +, MQTTASYNC_TRACE_MEDIUM +, MQTTASYNC_TRACE_MINIMUM +, MQTTASYNC_TRACE_PROTOCOL +,
+  MQTTASYNC_TRACE_ERROR +, MQTTASYNC_TRACE_SEVERE +, MQTTASYNC_TRACE_FATAL
}   @@ -927,6 +927,7 @@ Functions
Value:
{ {'M', 'Q', 'T', 'C'}, 8, 60, 1, 65535, NULL, NULL, NULL, 30, 0,\
NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_DEFAULT, 0, 1, 60, {0, NULL}, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
+
#define MQTTVERSION_DEFAULT
Definition: MQTTAsync.h:209

Initializer for connect options for MQTT 3.1.1 non-WebSocket connections

@@ -944,6 +945,7 @@ Functions
Value:
{ {'M', 'Q', 'T', 'C'}, 8, 60, 0, 65535, NULL, NULL, NULL, 30, 0,\
NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_5, 0, 1, 60, {0, NULL}, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
+
#define MQTTVERSION_5
Definition: MQTTAsync.h:221

Initializer for connect options for MQTT 5.0 non-WebSocket connections

@@ -995,6 +997,7 @@ Functions
Value:
{ {'M', 'Q', 'T', 'D'}, 0, 0, NULL, NULL, NULL,\
MQTTProperties_initializer, MQTTREASONCODE_SUCCESS, NULL, NULL }
+
@ MQTTREASONCODE_SUCCESS
Definition: MQTTReasonCodes.h:24
@@ -2661,14 +2664,9 @@ Functions -
MQTTREASONCODE_SUCCESS
@ MQTTREASONCODE_SUCCESS
Definition: MQTTReasonCodes.h:38
-
MQTTVERSION_5
#define MQTTVERSION_5
Definition: MQTTAsync.h:221
-
MQTTVERSION_DEFAULT
#define MQTTVERSION_DEFAULT
Definition: MQTTAsync.h:209
diff --git a/docs/MQTTAsync/html/_m_q_t_t_async_8h_source.html b/docs/MQTTAsync/html/_m_q_t_t_async_8h_source.html index 61ac8b79..9eace0d3 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_async_8h_source.html +++ b/docs/MQTTAsync/html/_m_q_t_t_async_8h_source.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync.h Source File @@ -30,10 +30,10 @@ - + @@ -116,7 +116,6 @@ $(function() {
107 #endif
108 
113 #define MQTTASYNC_SUCCESS 0
-
114 
118 #define MQTTASYNC_FAILURE -1
119 
120 /* error code -2 is MQTTAsync_PERSISTENCE_ERROR */
@@ -124,33 +123,19 @@ $(function() {
122 #define MQTTASYNC_PERSISTENCE_ERROR -2
123 
127 #define MQTTASYNC_DISCONNECTED -3
-
128 
132 #define MQTTASYNC_MAX_MESSAGES_INFLIGHT -4
-
133 
136 #define MQTTASYNC_BAD_UTF8_STRING -5
-
137 
140 #define MQTTASYNC_NULL_PARAMETER -6
-
141 
146 #define MQTTASYNC_TOPICNAME_TRUNCATED -7
-
147 
151 #define MQTTASYNC_BAD_STRUCTURE -8
-
152 
155 #define MQTTASYNC_BAD_QOS -9
-
156 
159 #define MQTTASYNC_NO_MORE_MSGIDS -10
-
160 
163 #define MQTTASYNC_OPERATION_INCOMPLETE -11
-
164 
167 #define MQTTASYNC_MAX_BUFFERED_MESSAGES -12
-
168 
171 #define MQTTASYNC_SSL_NOT_SUPPORTED -13
-
172 
182 #define MQTTASYNC_BAD_PROTOCOL -14
-
183 
186 #define MQTTASYNC_BAD_MQTT_OPTION -15
-
187 
190 #define MQTTASYNC_WRONG_MQTT_VERSION -16
-
191 
194 #define MQTTASYNC_0_LEN_WILL_TOPIC -17
195 /*
196  * Return code: connect or disconnect command ignored because there is already a connect or disconnect
@@ -164,13 +149,9 @@ $(function() {
204  #define MQTTASYNC_MAX_BUFFERED -19
205 
209 #define MQTTVERSION_DEFAULT 0
-
210 
213 #define MQTTVERSION_3_1 3
-
214 
217 #define MQTTVERSION_3_1_1 4
-
218 
221 #define MQTTVERSION_5 5
-
222 
225 #define MQTT_BAD_SUBSCRIBE 0x80
226 
227 
@@ -183,7 +164,7 @@ $(function() {
240 
241 #define MQTTAsync_init_options_initializer { {'M', 'Q', 'T', 'G'}, 0, 0 }
242 
-
247 LIBMQTT_API void MQTTAsync_global_init(MQTTAsync_init_options* inits);
+
247 LIBMQTT_API void MQTTAsync_global_init(MQTTAsync_init_options* inits);
248 
253 typedef void* MQTTAsync;
263 typedef int MQTTAsync_token;
@@ -215,7 +196,7 @@ $(function() {
444 typedef void MQTTAsync_disconnected(void* context, MQTTProperties* properties,
445  enum MQTTReasonCodes reasonCode);
446 
-
462 LIBMQTT_API int MQTTAsync_setDisconnected(MQTTAsync handle, void* context, MQTTAsync_disconnected* co);
+
462 LIBMQTT_API int MQTTAsync_setDisconnected(MQTTAsync handle, void* context, MQTTAsync_disconnected* co);
463 
465 typedef struct
466 {
@@ -225,19 +206,19 @@ $(function() {
483  struct {
484  int len;
485  const void* data;
-
486  } binarypwd;
+
486  } binarypwd;
487 } MQTTAsync_connectData;
488 
489 #define MQTTAsync_connectData_initializer {{'M', 'Q', 'C', 'D'}, 0, NULL, {0, NULL}}
490 
497 typedef int MQTTAsync_updateConnectOptions(void* context, MQTTAsync_connectData* data);
498 
-
508 LIBMQTT_API int MQTTAsync_setUpdateConnectOptions(MQTTAsync handle, void* context, MQTTAsync_updateConnectOptions* co);
+
508 LIBMQTT_API int MQTTAsync_setUpdateConnectOptions(MQTTAsync handle, void* context, MQTTAsync_updateConnectOptions* co);
509 
-
519 LIBMQTT_API int MQTTAsync_setBeforePersistenceWrite(MQTTAsync handle, void* context, MQTTPersistence_beforeWrite* co);
+
519 LIBMQTT_API int MQTTAsync_setBeforePersistenceWrite(MQTTAsync handle, void* context, MQTTPersistence_beforeWrite* co);
520 
521 
-
531 LIBMQTT_API int MQTTAsync_setAfterPersistenceRead(MQTTAsync handle, void* context, MQTTPersistence_afterRead* co);
+
531 LIBMQTT_API int MQTTAsync_setAfterPersistenceRead(MQTTAsync handle, void* context, MQTTPersistence_afterRead* co);
532 
533 
535 typedef struct
@@ -252,8 +233,8 @@ $(function() {
548 {
550  char struct_id[4];
552  int struct_version;
-
554  MQTTAsync_token token;
-
556  enum MQTTReasonCodes reasonCode;
+
554  MQTTAsync_token token;
+
556  enum MQTTReasonCodes reasonCode;
558  MQTTProperties properties;
560  int code;
562  const char *message;
@@ -273,15 +254,15 @@ $(function() {
585  {
586  MQTTAsync_message message;
587  char* destinationName;
-
588  } pub;
+
588  } pub;
589  /* For connect, the server connected to, MQTT version used, and sessionPresent flag */
590  struct
591  {
592  char* serverURI;
593  int MQTTVersion;
594  int sessionPresent;
-
595  } connect;
-
596  } alt;
+
595  } connect;
+
596  } alt;
597 } MQTTAsync_successData;
598 
599 
@@ -289,8 +270,8 @@ $(function() {
602 {
603  char struct_id[4];
604  int struct_version;
-
606  MQTTAsync_token token;
-
607  enum MQTTReasonCodes reasonCode;
+
606  MQTTAsync_token token;
+
607  enum MQTTReasonCodes reasonCode;
608  MQTTProperties properties;
610  union
611  {
@@ -298,25 +279,25 @@ $(function() {
614  {
615  int reasonCodeCount;
616  enum MQTTReasonCodes* reasonCodes;
-
617  } sub;
+
617  } sub;
619  struct
620  {
621  MQTTAsync_message message;
622  char* destinationName;
-
623  } pub;
+
623  } pub;
624  /* For connect, the server connected to, MQTT version used, and sessionPresent flag */
625  struct
626  {
627  char* serverURI;
628  int MQTTVersion;
629  int sessionPresent;
-
630  } connect;
+
630  } connect;
632  struct
633  {
634  int reasonCodeCount;
635  enum MQTTReasonCodes* reasonCodes;
-
636  } unsub;
-
637  } alt;
+
636  } unsub;
+
637  } alt;
638 } MQTTAsync_successData5;
639 
640 #define MQTTAsync_successData5_initializer {{'M', 'Q', 'S', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer, {.sub={0,0}}}
@@ -327,7 +308,7 @@ $(function() {
672 
686 typedef void MQTTAsync_onFailure(void* context, MQTTAsync_failureData* response);
687 
-
701 typedef void MQTTAsync_onFailure5(void* context, MQTTAsync_failureData5* response);
+
701 typedef void MQTTAsync_onFailure5(void* context, MQTTAsync_failureData5* response);
702 
708 typedef struct MQTTAsync_responseOptions
709 {
@@ -353,32 +334,32 @@ $(function() {
766  * MQTT V5 subscribe option array, when used with subscribeMany only.
767  */
768  MQTTSubscribe_options* subscribeOptionsList;
-
769 } MQTTAsync_responseOptions;
+
769 } MQTTAsync_responseOptions;
770 
771 #define MQTTAsync_responseOptions_initializer { {'M', 'Q', 'T', 'R'}, 1, NULL, NULL, 0, 0, NULL, NULL, MQTTProperties_initializer, MQTTSubscribe_options_initializer, 0, NULL}
772 
-
774 typedef struct MQTTAsync_responseOptions MQTTAsync_callOptions;
+
774 typedef struct MQTTAsync_responseOptions MQTTAsync_callOptions;
775 #define MQTTAsync_callOptions_initializer MQTTAsync_responseOptions_initializer
776 
-
806 LIBMQTT_API int MQTTAsync_setCallbacks(MQTTAsync handle, void* context, MQTTAsync_connectionLost* cl,
+
806 LIBMQTT_API int MQTTAsync_setCallbacks(MQTTAsync handle, void* context, MQTTAsync_connectionLost* cl,
807  MQTTAsync_messageArrived* ma, MQTTAsync_deliveryComplete* dc);
808 
-
829 LIBMQTT_API int MQTTAsync_setConnectionLostCallback(MQTTAsync handle, void* context,
+
829 LIBMQTT_API int MQTTAsync_setConnectionLostCallback(MQTTAsync handle, void* context,
830  MQTTAsync_connectionLost* cl);
831 
-
853 LIBMQTT_API int MQTTAsync_setMessageArrivedCallback(MQTTAsync handle, void* context,
+
853 LIBMQTT_API int MQTTAsync_setMessageArrivedCallback(MQTTAsync handle, void* context,
854  MQTTAsync_messageArrived* ma);
855 
-
875 LIBMQTT_API int MQTTAsync_setDeliveryCompleteCallback(MQTTAsync handle, void* context,
+
875 LIBMQTT_API int MQTTAsync_setDeliveryCompleteCallback(MQTTAsync handle, void* context,
876  MQTTAsync_deliveryComplete* dc);
877 
-
890 LIBMQTT_API int MQTTAsync_setConnected(MQTTAsync handle, void* context, MQTTAsync_connected* co);
+
890 LIBMQTT_API int MQTTAsync_setConnected(MQTTAsync handle, void* context, MQTTAsync_connected* co);
891 
892 
-
901 LIBMQTT_API int MQTTAsync_reconnect(MQTTAsync handle);
+
901 LIBMQTT_API int MQTTAsync_reconnect(MQTTAsync handle);
902 
903 
-
956 LIBMQTT_API int MQTTAsync_create(MQTTAsync* handle, const char* serverURI, const char* clientId,
+
956 LIBMQTT_API int MQTTAsync_create(MQTTAsync* handle, const char* serverURI, const char* clientId,
957  int persistence_type, void* persistence_context);
958 
960 typedef struct
@@ -408,7 +389,7 @@ $(function() {
1002 #define MQTTAsync_createOptions_initializer5 { {'M', 'Q', 'C', 'O'}, 2, 0, 100, MQTTVERSION_5, 0, 0, 1, 1}
1003 
1004 
-
1005 LIBMQTT_API int MQTTAsync_createWithOptions(MQTTAsync* handle, const char* serverURI, const char* clientId,
+
1005 LIBMQTT_API int MQTTAsync_createWithOptions(MQTTAsync* handle, const char* serverURI, const char* clientId,
1006  int persistence_type, void* persistence_context, MQTTAsync_createOptions* options);
1007 
1020 typedef struct
@@ -423,7 +404,7 @@ $(function() {
1043  {
1044  int len;
1045  const void* data;
-
1046  } payload;
+
1046  } payload;
1047 } MQTTAsync_willOptions;
1048 
1049 #define MQTTAsync_willOptions_initializer { {'M', 'Q', 'T', 'W'}, 1, NULL, NULL, 0, 0, { 0, NULL } }
@@ -457,11 +438,11 @@ $(function() {
1123 
1129  const char* CApath;
1130 
-
1135  int (*ssl_error_cb) (const char *str, size_t len, void *u);
+
1135  int (*ssl_error_cb) (const char *str, size_t len, void *u);
1136 
1141  void* ssl_error_context;
1142 
-
1148  unsigned int (*ssl_psk_cb) (const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u);
+
1148  unsigned int (*ssl_psk_cb) (const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u);
1149 
1154  void* ssl_psk_context;
1155 
@@ -505,7 +486,7 @@ $(function() {
1341  struct {
1342  int len;
1343  const void* data;
-
1344  } binarypwd;
+
1344  } binarypwd;
1345  /*
1346  * MQTT V5 clean start flag. Only clears state at the beginning of the session.
1347  */
@@ -532,7 +513,7 @@ $(function() {
1401 NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_5, 0, 1, 60, {0, NULL}, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
1402 
1403 
-
1424 LIBMQTT_API int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions* options);
+
1424 LIBMQTT_API int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions* options);
1425 
1427 typedef struct
1428 {
@@ -543,7 +524,7 @@ $(function() {
1449  MQTTAsync_onFailure* onFailure;
1455  void* context;
1459  MQTTProperties properties;
-
1463  enum MQTTReasonCodes reasonCode;
+
1463  enum MQTTReasonCodes reasonCode;
1469  MQTTAsync_onSuccess5* onSuccess5;
1475  MQTTAsync_onFailure5* onFailure5;
1476 } MQTTAsync_disconnectOptions;
@@ -554,44 +535,44 @@ $(function() {
1481 #define MQTTAsync_disconnectOptions_initializer5 { {'M', 'Q', 'T', 'D'}, 1, 0, NULL, NULL, NULL,\
1482  MQTTProperties_initializer, MQTTREASONCODE_SUCCESS, NULL, NULL }
1483 
-
1502 LIBMQTT_API int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions* options);
+
1502 LIBMQTT_API int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions* options);
1503 
1504 
-
1512 LIBMQTT_API int MQTTAsync_isConnected(MQTTAsync handle);
+
1512 LIBMQTT_API int MQTTAsync_isConnected(MQTTAsync handle);
1513 
1514 
-
1529 LIBMQTT_API int MQTTAsync_subscribe(MQTTAsync handle, const char* topic, int qos, MQTTAsync_responseOptions* response);
+
1529 LIBMQTT_API int MQTTAsync_subscribe(MQTTAsync handle, const char* topic, int qos, MQTTAsync_responseOptions* response);
1530 
1531 
-
1549 LIBMQTT_API int MQTTAsync_subscribeMany(MQTTAsync handle, int count, char* const* topic, const int* qos, MQTTAsync_responseOptions* response);
+
1549 LIBMQTT_API int MQTTAsync_subscribeMany(MQTTAsync handle, int count, char* const* topic, const int* qos, MQTTAsync_responseOptions* response);
1550 
-
1563 LIBMQTT_API int MQTTAsync_unsubscribe(MQTTAsync handle, const char* topic, MQTTAsync_responseOptions* response);
+
1563 LIBMQTT_API int MQTTAsync_unsubscribe(MQTTAsync handle, const char* topic, MQTTAsync_responseOptions* response);
1564 
-
1577 LIBMQTT_API int MQTTAsync_unsubscribeMany(MQTTAsync handle, int count, char* const* topic, MQTTAsync_responseOptions* response);
+
1577 LIBMQTT_API int MQTTAsync_unsubscribeMany(MQTTAsync handle, int count, char* const* topic, MQTTAsync_responseOptions* response);
1578 
1579 
-
1599 LIBMQTT_API int MQTTAsync_send(MQTTAsync handle, const char* destinationName, int payloadlen, const void* payload, int qos,
+
1599 LIBMQTT_API int MQTTAsync_send(MQTTAsync handle, const char* destinationName, int payloadlen, const void* payload, int qos,
1600  int retained, MQTTAsync_responseOptions* response);
1601 
-
1618 LIBMQTT_API int MQTTAsync_sendMessage(MQTTAsync handle, const char* destinationName, const MQTTAsync_message* msg, MQTTAsync_responseOptions* response);
+
1618 LIBMQTT_API int MQTTAsync_sendMessage(MQTTAsync handle, const char* destinationName, const MQTTAsync_message* msg, MQTTAsync_responseOptions* response);
1619 
1620 
-
1639 LIBMQTT_API int MQTTAsync_getPendingTokens(MQTTAsync handle, MQTTAsync_token **tokens);
+
1639 LIBMQTT_API int MQTTAsync_getPendingTokens(MQTTAsync handle, MQTTAsync_token **tokens);
1640 
1649 #define MQTTASYNC_TRUE 1
-
1650 LIBMQTT_API int MQTTAsync_isComplete(MQTTAsync handle, MQTTAsync_token token);
+
1650 LIBMQTT_API int MQTTAsync_isComplete(MQTTAsync handle, MQTTAsync_token token);
1651 
1652 
-
1665 LIBMQTT_API int MQTTAsync_waitForCompletion(MQTTAsync handle, MQTTAsync_token token, unsigned long timeout);
+
1665 LIBMQTT_API int MQTTAsync_waitForCompletion(MQTTAsync handle, MQTTAsync_token token, unsigned long timeout);
1666 
1667 
-
1678 LIBMQTT_API void MQTTAsync_freeMessage(MQTTAsync_message** msg);
+
1678 LIBMQTT_API void MQTTAsync_freeMessage(MQTTAsync_message** msg);
1679 
-
1688 LIBMQTT_API void MQTTAsync_free(void* ptr);
+
1688 LIBMQTT_API void MQTTAsync_free(void* ptr);
1689 
-
1697 LIBMQTT_API void* MQTTAsync_malloc(size_t size);
+
1697 LIBMQTT_API void* MQTTAsync_malloc(size_t size);
1698 
-
1706 LIBMQTT_API void MQTTAsync_destroy(MQTTAsync* handle);
+
1706 LIBMQTT_API void MQTTAsync_destroy(MQTTAsync* handle);
1707 
1708 
1709 
@@ -607,16 +588,16 @@ $(function() {
1719 };
1720 
1721 
-
1727 LIBMQTT_API void MQTTAsync_setTraceLevel(enum MQTTASYNC_TRACE_LEVELS level);
+
1727 LIBMQTT_API void MQTTAsync_setTraceLevel(enum MQTTASYNC_TRACE_LEVELS level);
1728 
1729 
1739 typedef void MQTTAsync_traceCallback(enum MQTTASYNC_TRACE_LEVELS level, char* message);
1740 
-
1747 LIBMQTT_API void MQTTAsync_setTraceCallback(MQTTAsync_traceCallback* callback);
+
1747 LIBMQTT_API void MQTTAsync_setTraceCallback(MQTTAsync_traceCallback* callback);
1748 
-
1755 LIBMQTT_API MQTTAsync_nameValue* MQTTAsync_getVersionInfo(void);
+
1755 LIBMQTT_API MQTTAsync_nameValue* MQTTAsync_getVersionInfo(void);
1756 
-
1763 LIBMQTT_API const char* MQTTAsync_strerror(int code);
+
1763 LIBMQTT_API const char* MQTTAsync_strerror(int code);
1764 
1765 
2379 #if defined(__cplusplus)
@@ -624,212 +605,208 @@ $(function() {
2381 #endif
2382 
2383 #endif
- -
MQTTAsync_isConnected
int MQTTAsync_isConnected(MQTTAsync handle)
-
MQTTAsync_SSLOptions::protos_len
unsigned int protos_len
Definition: MQTTAsync.h:1176
-
MQTTAsync_waitForCompletion
int MQTTAsync_waitForCompletion(MQTTAsync handle, MQTTAsync_token token, unsigned long timeout)
-
MQTTAsync_successData::qosList
int * qosList
Definition: MQTTAsync.h:582
-
MQTTAsync_connectOptions::httpHeaders
const MQTTAsync_nameValue * httpHeaders
Definition: MQTTAsync.h:1372
-
MQTTAsync_responseOptions::context
void * context
Definition: MQTTAsync.h:732
-
MQTTProperties.h
-
MQTTAsync_successData5::sessionPresent
int sessionPresent
Definition: MQTTAsync.h:629
-
MQTTAsync_token
int MQTTAsync_token
Definition: MQTTAsync.h:263
-
MQTTAsync_successData::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:593
-
MQTTAsync_createOptions::allowDisconnectedSendAtAnyTime
int allowDisconnectedSendAtAnyTime
Definition: MQTTAsync.h:985
-
MQTTAsync_createOptions::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:981
-
MQTTAsync_setDisconnected
int MQTTAsync_setDisconnected(MQTTAsync handle, void *context, MQTTAsync_disconnected *co)
-
MQTTAsync_createWithOptions
int MQTTAsync_createWithOptions(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context, MQTTAsync_createOptions *options)
-
MQTTAsync_createOptions::struct_version
int struct_version
Definition: MQTTAsync.h:969
-
MQTTAsync_getVersionInfo
MQTTAsync_nameValue * MQTTAsync_getVersionInfo(void)
-
MQTTAsync_subscribe
int MQTTAsync_subscribe(MQTTAsync handle, const char *topic, int qos, MQTTAsync_responseOptions *response)
-
MQTTAsync
void * MQTTAsync
Definition: MQTTAsync.h:253
-
MQTTAsync_connectOptions::httpProxy
const char * httpProxy
Definition: MQTTAsync.h:1376
-
MQTTAsync_connectOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1212
-
MQTTAsync_successData::serverURI
char * serverURI
Definition: MQTTAsync.h:592
-
MQTTAsync_successData::sessionPresent
int sessionPresent
Definition: MQTTAsync.h:594
-
MQTTAsync_init_options::do_openssl_init
int do_openssl_init
Definition: MQTTAsync.h:238
+
MQTTAsync_connect
int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
+
MQTTAsync_unsubscribe
int MQTTAsync_unsubscribe(MQTTAsync handle, const char *topic, MQTTAsync_responseOptions *response)
MQTTAsync_setTraceCallback
void MQTTAsync_setTraceCallback(MQTTAsync_traceCallback *callback)
+
MQTTAsync
void * MQTTAsync
Definition: MQTTAsync.h:253
+
MQTTAsync_setBeforePersistenceWrite
int MQTTAsync_setBeforePersistenceWrite(MQTTAsync handle, void *context, MQTTPersistence_beforeWrite *co)
+
MQTTAsync_global_init
void MQTTAsync_global_init(MQTTAsync_init_options *inits)
+
MQTTAsync_setConnected
int MQTTAsync_setConnected(MQTTAsync handle, void *context, MQTTAsync_connected *co)
+
MQTTAsync_free
void MQTTAsync_free(void *ptr)
+
MQTTAsync_connected
void MQTTAsync_connected(void *context, char *cause)
Definition: MQTTAsync.h:430
+
MQTTAsync_connectionLost
void MQTTAsync_connectionLost(void *context, char *cause)
Definition: MQTTAsync.h:412
+
MQTTAsync_messageArrived
int MQTTAsync_messageArrived(void *context, char *topicName, int topicLen, MQTTAsync_message *message)
Definition: MQTTAsync.h:369
MQTTAsync_setMessageArrivedCallback
int MQTTAsync_setMessageArrivedCallback(MQTTAsync handle, void *context, MQTTAsync_messageArrived *ma)
-
MQTTAsync_successData5
Definition: MQTTAsync.h:601
+
MQTTAsync_isConnected
int MQTTAsync_isConnected(MQTTAsync handle)
+
MQTTAsync_waitForCompletion
int MQTTAsync_waitForCompletion(MQTTAsync handle, MQTTAsync_token token, unsigned long timeout)
+
MQTTAsync_disconnected
void MQTTAsync_disconnected(void *context, MQTTProperties *properties, enum MQTTReasonCodes reasonCode)
Definition: MQTTAsync.h:444
+
MQTTAsync_create
int MQTTAsync_create(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
+
MQTTAsync_sendMessage
int MQTTAsync_sendMessage(MQTTAsync handle, const char *destinationName, const MQTTAsync_message *msg, MQTTAsync_responseOptions *response)
+
MQTTASYNC_TRACE_LEVELS
MQTTASYNC_TRACE_LEVELS
Definition: MQTTAsync.h:1711
+
MQTTASYNC_TRACE_FATAL
@ MQTTASYNC_TRACE_FATAL
Definition: MQTTAsync.h:1718
+
MQTTASYNC_TRACE_MEDIUM
@ MQTTASYNC_TRACE_MEDIUM
Definition: MQTTAsync.h:1713
+
MQTTASYNC_TRACE_SEVERE
@ MQTTASYNC_TRACE_SEVERE
Definition: MQTTAsync.h:1717
+
MQTTASYNC_TRACE_PROTOCOL
@ MQTTASYNC_TRACE_PROTOCOL
Definition: MQTTAsync.h:1715
+
MQTTASYNC_TRACE_MINIMUM
@ MQTTASYNC_TRACE_MINIMUM
Definition: MQTTAsync.h:1714
+
MQTTASYNC_TRACE_ERROR
@ MQTTASYNC_TRACE_ERROR
Definition: MQTTAsync.h:1716
+
MQTTASYNC_TRACE_MAXIMUM
@ MQTTASYNC_TRACE_MAXIMUM
Definition: MQTTAsync.h:1712
+
MQTTAsync_updateConnectOptions
int MQTTAsync_updateConnectOptions(void *context, MQTTAsync_connectData *data)
Definition: MQTTAsync.h:497
+
MQTTAsync_onFailure
void MQTTAsync_onFailure(void *context, MQTTAsync_failureData *response)
Definition: MQTTAsync.h:686
+
MQTTAsync_send
int MQTTAsync_send(MQTTAsync handle, const char *destinationName, int payloadlen, const void *payload, int qos, int retained, MQTTAsync_responseOptions *response)
+
MQTTAsync_traceCallback
void MQTTAsync_traceCallback(enum MQTTASYNC_TRACE_LEVELS level, char *message)
Definition: MQTTAsync.h:1739
+
MQTTAsync_unsubscribeMany
int MQTTAsync_unsubscribeMany(MQTTAsync handle, int count, char *const *topic, MQTTAsync_responseOptions *response)
+
MQTTAsync_createWithOptions
int MQTTAsync_createWithOptions(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context, MQTTAsync_createOptions *options)
+
MQTTAsync_onSuccess
void MQTTAsync_onSuccess(void *context, MQTTAsync_successData *response)
Definition: MQTTAsync.h:655
+
MQTTAsync_token
int MQTTAsync_token
Definition: MQTTAsync.h:263
+
MQTTAsync_getVersionInfo
MQTTAsync_nameValue * MQTTAsync_getVersionInfo(void)
+
MQTTAsync_strerror
const char * MQTTAsync_strerror(int code)
+
MQTTAsync_onSuccess5
void MQTTAsync_onSuccess5(void *context, MQTTAsync_successData5 *response)
Definition: MQTTAsync.h:671
+
MQTTAsync_onFailure5
void MQTTAsync_onFailure5(void *context, MQTTAsync_failureData5 *response)
Definition: MQTTAsync.h:701
+
MQTTAsync_setDeliveryCompleteCallback
int MQTTAsync_setDeliveryCompleteCallback(MQTTAsync handle, void *context, MQTTAsync_deliveryComplete *dc)
+
MQTTAsync_freeMessage
void MQTTAsync_freeMessage(MQTTAsync_message **msg)
+
MQTTAsync_setUpdateConnectOptions
int MQTTAsync_setUpdateConnectOptions(MQTTAsync handle, void *context, MQTTAsync_updateConnectOptions *co)
MQTTAsync_deliveryComplete
void MQTTAsync_deliveryComplete(void *context, MQTTAsync_token token)
Definition: MQTTAsync.h:392
MQTTAsync_isComplete
int MQTTAsync_isComplete(MQTTAsync handle, MQTTAsync_token token)
-
MQTTAsync_connectOptions::cleanstart
int cleanstart
Definition: MQTTAsync.h:1348
-
MQTTAsync_successData5::token
MQTTAsync_token token
Definition: MQTTAsync.h:606
-
MQTTAsync_message::retained
int retained
Definition: MQTTAsync.h:314
-
MQTTAsync_failureData5
Definition: MQTTAsync.h:547
-
MQTTAsync_failureData::message
const char * message
Definition: MQTTAsync.h:542
-
MQTTAsync_SSLOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1080
-
MQTTProperties
Definition: MQTTProperties.h:112
-
MQTTAsync_SSLOptions::trustStore
const char * trustStore
Definition: MQTTAsync.h:1083
-
MQTTAsync_responseOptions::properties
MQTTProperties properties
Definition: MQTTAsync.h:755
-
MQTTAsync_connectOptions::automaticReconnect
int automaticReconnect
Definition: MQTTAsync.h:1329
-
MQTTAsync_SSLOptions::privateKey
const char * privateKey
Definition: MQTTAsync.h:1093
-
MQTTAsync_successData5::struct_version
int struct_version
Definition: MQTTAsync.h:604
-
MQTTAsync_message::msgid
int msgid
Definition: MQTTAsync.h:327
-
MQTTAsync_failureData5::code
int code
Definition: MQTTAsync.h:560
-
MQTTAsync_connectOptions::serverURIs
char *const * serverURIs
Definition: MQTTAsync.h:1318
-
MQTTAsync_responseOptions::struct_id
char struct_id[4]
Definition: MQTTAsync.h:711
-
MQTTAsync_failureData5::packet_type
int packet_type
Definition: MQTTAsync.h:564
-
MQTTAsync_disconnectOptions::properties
MQTTProperties properties
Definition: MQTTAsync.h:1459
-
MQTTAsync_setCallbacks
int MQTTAsync_setCallbacks(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl, MQTTAsync_messageArrived *ma, MQTTAsync_deliveryComplete *dc)
-
MQTTAsync_sendMessage
int MQTTAsync_sendMessage(MQTTAsync handle, const char *destinationName, const MQTTAsync_message *msg, MQTTAsync_responseOptions *response)
-
MQTTAsync_connectOptions::will
MQTTAsync_willOptions * will
Definition: MQTTAsync.h:1255
-
MQTTAsync_SSLOptions::CApath
const char * CApath
Definition: MQTTAsync.h:1129
-
MQTTAsync_failureData::token
MQTTAsync_token token
Definition: MQTTAsync.h:538
-
MQTTAsync_send
int MQTTAsync_send(MQTTAsync handle, const char *destinationName, int payloadlen, const void *payload, int qos, int retained, MQTTAsync_responseOptions *response)
-
MQTTAsync_SSLOptions
Definition: MQTTAsync.h:1068
-
MQTTAsync_malloc
void * MQTTAsync_malloc(size_t size)
-
MQTTAsync_disconnect
int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions *options)
-
MQTTASYNC_TRACE_SEVERE
@ MQTTASYNC_TRACE_SEVERE
Definition: MQTTAsync.h:1717
-
MQTTAsync_subscribeMany
int MQTTAsync_subscribeMany(MQTTAsync handle, int count, char *const *topic, const int *qos, MQTTAsync_responseOptions *response)
-
MQTTAsync_connectOptions::willProperties
MQTTProperties * willProperties
Definition: MQTTAsync.h:1356
-
MQTTAsync_connectOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1362
-
MQTTAsync_message::payloadlen
int payloadlen
Definition: MQTTAsync.h:279
-
MQTTAsync_SSLOptions::sslVersion
int sslVersion
Definition: MQTTAsync.h:1115
-
MQTTAsync_successData5::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:628
-
MQTTAsync_connectData::username
const char * username
Definition: MQTTAsync.h:477
-
MQTTAsync_SSLOptions::keyStore
const char * keyStore
Definition: MQTTAsync.h:1088
-
MQTTAsync_destroy
void MQTTAsync_destroy(MQTTAsync *handle)
-
MQTTAsync_unsubscribeMany
int MQTTAsync_unsubscribeMany(MQTTAsync handle, int count, char *const *topic, MQTTAsync_responseOptions *response)
-
MQTTAsync_connectOptions::serverURIcount
int serverURIcount
Definition: MQTTAsync.h:1306
-
MQTTAsync_disconnectOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1475
-
MQTTAsync_connectData::len
int len
Definition: MQTTAsync.h:484
-
MQTTAsync_successData5::message
MQTTAsync_message message
Definition: MQTTAsync.h:621
-
MQTTAsync_connectOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1368
-
MQTTAsync_connectOptions::connectTimeout
int connectTimeout
Definition: MQTTAsync.h:1271
-
MQTTAsync_failureData5::token
MQTTAsync_token token
Definition: MQTTAsync.h:554
-
MQTTAsync_setTraceLevel
void MQTTAsync_setTraceLevel(enum MQTTASYNC_TRACE_LEVELS level)
-
MQTTAsync_connectOptions::httpsProxy
const char * httpsProxy
Definition: MQTTAsync.h:1380
-
MQTTAsync_connectOptions::connectProperties
MQTTProperties * connectProperties
Definition: MQTTAsync.h:1352
-
MQTTAsync_connectOptions::maxRetryInterval
int maxRetryInterval
Definition: MQTTAsync.h:1337
-
MQTTAsync_successData
Definition: MQTTAsync.h:570
-
MQTTAsync_setBeforePersistenceWrite
int MQTTAsync_setBeforePersistenceWrite(MQTTAsync handle, void *context, MQTTPersistence_beforeWrite *co)
-
MQTTAsync_setConnectionLostCallback
int MQTTAsync_setConnectionLostCallback(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl)
-
MQTTAsync_disconnectOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:1443
-
MQTTASYNC_TRACE_FATAL
@ MQTTASYNC_TRACE_FATAL
Definition: MQTTAsync.h:1718
-
MQTTSubscribeOpts.h
-
MQTTAsync_onFailure
void MQTTAsync_onFailure(void *context, MQTTAsync_failureData *response)
Definition: MQTTAsync.h:686
-
MQTTAsync_responseOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:751
-
MQTTAsync_setUpdateConnectOptions
int MQTTAsync_setUpdateConnectOptions(MQTTAsync handle, void *context, MQTTAsync_updateConnectOptions *co)
-
MQTTAsync_traceCallback
void MQTTAsync_traceCallback(enum MQTTASYNC_TRACE_LEVELS level, char *message)
Definition: MQTTAsync.h:1739
+
MQTTAsync_setAfterPersistenceRead
int MQTTAsync_setAfterPersistenceRead(MQTTAsync handle, void *context, MQTTPersistence_afterRead *co)
MQTTAsync_getPendingTokens
int MQTTAsync_getPendingTokens(MQTTAsync handle, MQTTAsync_token **tokens)
-
MQTTAsync_updateConnectOptions
int MQTTAsync_updateConnectOptions(void *context, MQTTAsync_connectData *data)
Definition: MQTTAsync.h:497
-
MQTTAsync_connectOptions::retryInterval
int retryInterval
Definition: MQTTAsync.h:1279
-
MQTTAsync_disconnectOptions::context
void * context
Definition: MQTTAsync.h:1455
-
MQTTAsync_successData::message
MQTTAsync_message message
Definition: MQTTAsync.h:586
-
MQTTAsync_connectOptions::minRetryInterval
int minRetryInterval
Definition: MQTTAsync.h:1333
-
MQTTAsync_failureData5::struct_version
int struct_version
Definition: MQTTAsync.h:552
-
MQTTAsync_responseOptions
Definition: MQTTAsync.h:708
-
MQTTAsync_connectData
Definition: MQTTAsync.h:465
-
MQTTAsync_SSLOptions::ssl_psk_context
void * ssl_psk_context
Definition: MQTTAsync.h:1154
-
MQTTAsync_successData5::properties
MQTTProperties properties
Definition: MQTTAsync.h:608
-
MQTTASYNC_TRACE_MAXIMUM
@ MQTTASYNC_TRACE_MAXIMUM
Definition: MQTTAsync.h:1712
-
MQTTPersistence_beforeWrite
int MQTTPersistence_beforeWrite(void *context, int bufcount, char *buffers[], int buflens[])
Definition: MQTTClientPersistence.h:264
-
MQTTAsync_create
int MQTTAsync_create(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
-
MQTTAsync_willOptions::topicName
const char * topicName
Definition: MQTTAsync.h:1029
-
MQTTAsync_connectionLost
void MQTTAsync_connectionLost(void *context, char *cause)
Definition: MQTTAsync.h:412
-
MQTTAsync_global_init
void MQTTAsync_global_init(MQTTAsync_init_options *inits)
-
MQTTAsync_init_options
Definition: MQTTAsync.h:231
-
MQTTAsync_onFailure5
void MQTTAsync_onFailure5(void *context, MQTTAsync_failureData5 *response)
Definition: MQTTAsync.h:701
-
MQTTAsync_connectOptions::keepAliveInterval
int keepAliveInterval
Definition: MQTTAsync.h:1223
-
MQTTAsync_successData5::destinationName
char * destinationName
Definition: MQTTAsync.h:622
-
MQTTAsync_disconnectOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1469
-
MQTTAsync_SSLOptions::enabledCipherSuites
const char * enabledCipherSuites
Definition: MQTTAsync.h:1106
-
MQTTAsync_message::qos
int qos
Definition: MQTTAsync.h:295
-
MQTTReasonCodes.h
-
MQTTAsync_disconnectOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1432
-
MQTTAsync_unsubscribe
int MQTTAsync_unsubscribe(MQTTAsync handle, const char *topic, MQTTAsync_responseOptions *response)
-
MQTTAsync_disconnected
void MQTTAsync_disconnected(void *context, MQTTProperties *properties, enum MQTTReasonCodes reasonCode)
Definition: MQTTAsync.h:444
-
MQTTAsync_messageArrived
int MQTTAsync_messageArrived(void *context, char *topicName, int topicLen, MQTTAsync_message *message)
Definition: MQTTAsync.h:369
-
MQTTAsync_willOptions
Definition: MQTTAsync.h:1020
-
MQTTAsync_message::payload
void * payload
Definition: MQTTAsync.h:281
-
MQTTASYNC_TRACE_MINIMUM
@ MQTTASYNC_TRACE_MINIMUM
Definition: MQTTAsync.h:1714
-
MQTTAsync_responseOptions::token
MQTTAsync_token token
Definition: MQTTAsync.h:739
MQTTAsync_reconnect
int MQTTAsync_reconnect(MQTTAsync handle)
-
MQTTAsync_connectOptions::data
const void * data
Definition: MQTTAsync.h:1343
-
MQTTAsync_connectData::data
const void * data
Definition: MQTTAsync.h:485
-
MQTTASYNC_TRACE_LEVELS
MQTTASYNC_TRACE_LEVELS
Definition: MQTTAsync.h:1710
-
MQTTAsync_willOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1027
-
MQTTAsync_nameValue::name
const char * name
Definition: MQTTAsync.h:1184
-
MQTTAsync_setDeliveryCompleteCallback
int MQTTAsync_setDeliveryCompleteCallback(MQTTAsync handle, void *context, MQTTAsync_deliveryComplete *dc)
-
MQTTAsync_successData::destinationName
char * destinationName
Definition: MQTTAsync.h:587
-
MQTTAsync_connect
int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
-
MQTTAsync_createOptions::sendWhileDisconnected
int sendWhileDisconnected
Definition: MQTTAsync.h:971
-
MQTTAsync_message
Definition: MQTTAsync.h:271
-
MQTTAsync_responseOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:726
-
MQTTAsync_connectOptions::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:1325
-
MQTTAsync_SSLOptions::protos
const unsigned char * protos
Definition: MQTTAsync.h:1170
-
MQTTAsync_connectData::struct_version
int struct_version
Definition: MQTTAsync.h:470
-
MQTTAsync_connectOptions::username
const char * username
Definition: MQTTAsync.h:1261
-
MQTTAsync_free
void MQTTAsync_free(void *ptr)
-
MQTTAsync_connectOptions
Definition: MQTTAsync.h:1198
-
MQTTAsync_responseOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:745
-
MQTTAsync_failureData5::properties
MQTTProperties properties
Definition: MQTTAsync.h:558
-
MQTTASYNC_TRACE_PROTOCOL
@ MQTTASYNC_TRACE_PROTOCOL
Definition: MQTTAsync.h:1715
-
MQTTAsync_strerror
const char * MQTTAsync_strerror(int code)
-
MQTTAsync_SSLOptions::verify
int verify
Definition: MQTTAsync.h:1122
-
MQTTAsync_successData5::serverURI
char * serverURI
Definition: MQTTAsync.h:627
-
MQTTAsync_nameValue
Definition: MQTTAsync.h:1182
-
MQTTAsync_SSLOptions::privateKeyPassword
const char * privateKeyPassword
Definition: MQTTAsync.h:1096
-
MQTTAsync_failureData
Definition: MQTTAsync.h:535
-
MQTTSubscribe_options
Definition: MQTTSubscribeOpts.h:21
-
MQTTAsync_SSLOptions::disableDefaultTrustStore
int disableDefaultTrustStore
Definition: MQTTAsync.h:1161
-
MQTTAsync_willOptions::data
const void * data
Definition: MQTTAsync.h:1045
-
MQTTAsync_connectOptions::maxInflight
int maxInflight
Definition: MQTTAsync.h:1249
-
MQTTAsync_responseOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:720
-
MQTTAsync_connectOptions::ssl
MQTTAsync_SSLOptions * ssl
Definition: MQTTAsync.h:1284
+
MQTTAsync_subscribeMany
int MQTTAsync_subscribeMany(MQTTAsync handle, int count, char *const *topic, const int *qos, MQTTAsync_responseOptions *response)
+
MQTTAsync_setTraceLevel
void MQTTAsync_setTraceLevel(enum MQTTASYNC_TRACE_LEVELS level)
+
MQTTAsync_destroy
void MQTTAsync_destroy(MQTTAsync *handle)
+
MQTTAsync_setDisconnected
int MQTTAsync_setDisconnected(MQTTAsync handle, void *context, MQTTAsync_disconnected *co)
+
MQTTAsync_disconnect
int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions *options)
+
MQTTAsync_subscribe
int MQTTAsync_subscribe(MQTTAsync handle, const char *topic, int qos, MQTTAsync_responseOptions *response)
MQTTAsync_responseOptions
struct MQTTAsync_responseOptions MQTTAsync_responseOptions
+
MQTTAsync_setCallbacks
int MQTTAsync_setCallbacks(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl, MQTTAsync_messageArrived *ma, MQTTAsync_deliveryComplete *dc)
+
MQTTAsync_setConnectionLostCallback
int MQTTAsync_setConnectionLostCallback(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl)
+
MQTTAsync_malloc
void * MQTTAsync_malloc(size_t size)
+
MQTTClientPersistence.h
This structure represents a persistent data store, used to store outbound and inbound messages,...
+
MQTTPersistence_beforeWrite
int MQTTPersistence_beforeWrite(void *context, int bufcount, char *buffers[], int buflens[])
Definition: MQTTClientPersistence.h:264
+
MQTTPersistence_afterRead
int MQTTPersistence_afterRead(void *context, char **buffer, int *buflen)
Definition: MQTTClientPersistence.h:275
+
MQTTProperties.h
+
MQTTReasonCodes.h
+
MQTTReasonCodes
MQTTReasonCodes
Definition: MQTTReasonCodes.h:23
+
MQTTSubscribeOpts.h
+
MQTTAsync_SSLOptions
Definition: MQTTAsync.h:1069
+
MQTTAsync_SSLOptions::trustStore
const char * trustStore
Definition: MQTTAsync.h:1083
+
MQTTAsync_SSLOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1080
+
MQTTAsync_SSLOptions::disableDefaultTrustStore
int disableDefaultTrustStore
Definition: MQTTAsync.h:1161
+
MQTTAsync_SSLOptions::ssl_error_context
void * ssl_error_context
Definition: MQTTAsync.h:1141
+
MQTTAsync_SSLOptions::protos_len
unsigned int protos_len
Definition: MQTTAsync.h:1176
+
MQTTAsync_SSLOptions::CApath
const char * CApath
Definition: MQTTAsync.h:1129
+
MQTTAsync_SSLOptions::keyStore
const char * keyStore
Definition: MQTTAsync.h:1088
+
MQTTAsync_SSLOptions::sslVersion
int sslVersion
Definition: MQTTAsync.h:1115
+
MQTTAsync_SSLOptions::protos
const unsigned char * protos
Definition: MQTTAsync.h:1170
+
MQTTAsync_SSLOptions::enableServerCertAuth
int enableServerCertAuth
Definition: MQTTAsync.h:1109
+
MQTTAsync_SSLOptions::privateKey
const char * privateKey
Definition: MQTTAsync.h:1093
+
MQTTAsync_SSLOptions::verify
int verify
Definition: MQTTAsync.h:1122
+
MQTTAsync_SSLOptions::enabledCipherSuites
const char * enabledCipherSuites
Definition: MQTTAsync.h:1106
+
MQTTAsync_SSLOptions::ssl_psk_context
void * ssl_psk_context
Definition: MQTTAsync.h:1154
+
MQTTAsync_SSLOptions::privateKeyPassword
const char * privateKeyPassword
Definition: MQTTAsync.h:1096
+
MQTTAsync_connectData
Definition: MQTTAsync.h:466
+
MQTTAsync_connectData::struct_version
int struct_version
Definition: MQTTAsync.h:470
+
MQTTAsync_connectData::data
const void * data
Definition: MQTTAsync.h:485
+
MQTTAsync_connectData::username
const char * username
Definition: MQTTAsync.h:477
+
MQTTAsync_connectData::len
int len
Definition: MQTTAsync.h:484
+
MQTTAsync_connectOptions
Definition: MQTTAsync.h:1199
+
MQTTAsync_connectOptions::maxRetryInterval
int maxRetryInterval
Definition: MQTTAsync.h:1337
+
MQTTAsync_connectOptions::cleansession
int cleansession
Definition: MQTTAsync.h:1245
+
MQTTAsync_connectOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1212
+
MQTTAsync_connectOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1296
+
MQTTAsync_connectOptions::data
const void * data
Definition: MQTTAsync.h:1343
+
MQTTAsync_connectOptions::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:1325
+
MQTTAsync_connectOptions::minRetryInterval
int minRetryInterval
Definition: MQTTAsync.h:1333
+
MQTTAsync_connectOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1362
+
MQTTAsync_connectOptions::httpsProxy
const char * httpsProxy
Definition: MQTTAsync.h:1380
+
MQTTAsync_connectOptions::connectTimeout
int connectTimeout
Definition: MQTTAsync.h:1271
+
MQTTAsync_connectOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1368
+
MQTTAsync_connectOptions::maxInflight
int maxInflight
Definition: MQTTAsync.h:1249
+
MQTTAsync_connectOptions::automaticReconnect
int automaticReconnect
Definition: MQTTAsync.h:1329
+
MQTTAsync_connectOptions::will
MQTTAsync_willOptions * will
Definition: MQTTAsync.h:1255
+
MQTTAsync_connectOptions::ssl
MQTTAsync_SSLOptions * ssl
Definition: MQTTAsync.h:1284
+
MQTTAsync_connectOptions::connectProperties
MQTTProperties * connectProperties
Definition: MQTTAsync.h:1352
+
MQTTAsync_connectOptions::password
const char * password
Definition: MQTTAsync.h:1267
+
MQTTAsync_connectOptions::serverURIcount
int serverURIcount
Definition: MQTTAsync.h:1306
+
MQTTAsync_connectOptions::serverURIs
char *const * serverURIs
Definition: MQTTAsync.h:1318
+
MQTTAsync_connectOptions::username
const char * username
Definition: MQTTAsync.h:1261
+
MQTTAsync_connectOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:1290
+
MQTTAsync_connectOptions::willProperties
MQTTProperties * willProperties
Definition: MQTTAsync.h:1356
+
MQTTAsync_connectOptions::httpHeaders
const MQTTAsync_nameValue * httpHeaders
Definition: MQTTAsync.h:1372
+
MQTTAsync_connectOptions::retryInterval
int retryInterval
Definition: MQTTAsync.h:1279
+
MQTTAsync_connectOptions::keepAliveInterval
int keepAliveInterval
Definition: MQTTAsync.h:1223
+
MQTTAsync_connectOptions::cleanstart
int cleanstart
Definition: MQTTAsync.h:1348
+
MQTTAsync_connectOptions::httpProxy
const char * httpProxy
Definition: MQTTAsync.h:1376
+
MQTTAsync_connectOptions::context
void * context
Definition: MQTTAsync.h:1302
+
MQTTAsync_connectOptions::len
int len
Definition: MQTTAsync.h:1342
+
MQTTAsync_createOptions
Definition: MQTTAsync.h:961
+
MQTTAsync_createOptions::struct_version
int struct_version
Definition: MQTTAsync.h:969
+
MQTTAsync_createOptions::sendWhileDisconnected
int sendWhileDisconnected
Definition: MQTTAsync.h:971
MQTTAsync_createOptions::persistQoS0
int persistQoS0
Definition: MQTTAsync.h:997
-
MQTTAsync_willOptions::retained
int retained
Definition: MQTTAsync.h:1035
+
MQTTAsync_createOptions::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:981
+
MQTTAsync_createOptions::restoreMessages
int restoreMessages
Definition: MQTTAsync.h:993
MQTTAsync_createOptions::maxBufferedMessages
int maxBufferedMessages
Definition: MQTTAsync.h:975
MQTTAsync_createOptions::deleteOldestMessages
int deleteOldestMessages
Definition: MQTTAsync.h:989
-
MQTTAsync_successData5::reasonCodes
enum MQTTReasonCodes * reasonCodes
Definition: MQTTAsync.h:616
-
MQTTAsync_connectOptions::password
const char * password
Definition: MQTTAsync.h:1267
-
MQTTAsync_failureData::code
int code
Definition: MQTTAsync.h:540
-
MQTTAsync_responseOptions::subscribeOptions
MQTTSubscribe_options subscribeOptions
Definition: MQTTAsync.h:759
-
MQTTAsync_willOptions::message
const char * message
Definition: MQTTAsync.h:1031
+
MQTTAsync_createOptions::allowDisconnectedSendAtAnyTime
int allowDisconnectedSendAtAnyTime
Definition: MQTTAsync.h:985
+
MQTTAsync_disconnectOptions
Definition: MQTTAsync.h:1428
+
MQTTAsync_disconnectOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1432
MQTTAsync_disconnectOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1449
-
MQTTAsync_nameValue::value
const char * value
Definition: MQTTAsync.h:1185
-
MQTTAsync_setConnected
int MQTTAsync_setConnected(MQTTAsync handle, void *context, MQTTAsync_connected *co)
-
MQTTAsync_failureData5::message
const char * message
Definition: MQTTAsync.h:562
-
MQTTAsync_disconnectOptions
Definition: MQTTAsync.h:1427
-
MQTTAsync_responseOptions::subscribeOptionsList
MQTTSubscribe_options * subscribeOptionsList
Definition: MQTTAsync.h:768
-
MQTTPersistence_afterRead
int MQTTPersistence_afterRead(void *context, char **buffer, int *buflen)
Definition: MQTTClientPersistence.h:275
-
MQTTAsync_responseOptions::subscribeOptionsCount
int subscribeOptionsCount
Definition: MQTTAsync.h:764
-
MQTTAsync_connectOptions::len
int len
Definition: MQTTAsync.h:1342
-
MQTTASYNC_TRACE_ERROR
@ MQTTASYNC_TRACE_ERROR
Definition: MQTTAsync.h:1716
-
MQTTAsync_init_options::struct_version
int struct_version
Definition: MQTTAsync.h:236
-
MQTTAsync_connected
void MQTTAsync_connected(void *context, char *cause)
Definition: MQTTAsync.h:430
-
MQTTAsync_SSLOptions::enableServerCertAuth
int enableServerCertAuth
Definition: MQTTAsync.h:1109
-
MQTTAsync_setAfterPersistenceRead
int MQTTAsync_setAfterPersistenceRead(MQTTAsync handle, void *context, MQTTPersistence_afterRead *co)
-
MQTTAsync_onSuccess5
void MQTTAsync_onSuccess5(void *context, MQTTAsync_successData5 *response)
Definition: MQTTAsync.h:671
-
MQTTClientPersistence.h
This structure represents a persistent data store, used to store outbound and inbound messages,...
-
MQTTAsync_successData5::reasonCodeCount
int reasonCodeCount
Definition: MQTTAsync.h:615
-
MQTTAsync_successData::qos
int qos
Definition: MQTTAsync.h:579
+
MQTTAsync_disconnectOptions::properties
MQTTProperties properties
Definition: MQTTAsync.h:1459
+
MQTTAsync_disconnectOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1469
MQTTAsync_disconnectOptions::timeout
int timeout
Definition: MQTTAsync.h:1437
-
MQTTAsync_message::dup
int dup
Definition: MQTTAsync.h:321
-
MQTTAsync_message::properties
MQTTProperties properties
Definition: MQTTAsync.h:331
+
MQTTAsync_disconnectOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1475
+
MQTTAsync_disconnectOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:1443
+
MQTTAsync_disconnectOptions::context
void * context
Definition: MQTTAsync.h:1455
+
MQTTAsync_failureData5
Definition: MQTTAsync.h:548
+
MQTTAsync_failureData5::struct_version
int struct_version
Definition: MQTTAsync.h:552
+
MQTTAsync_failureData5::properties
MQTTProperties properties
Definition: MQTTAsync.h:558
+
MQTTAsync_failureData5::message
const char * message
Definition: MQTTAsync.h:562
+
MQTTAsync_failureData5::packet_type
int packet_type
Definition: MQTTAsync.h:564
+
MQTTAsync_failureData5::code
int code
Definition: MQTTAsync.h:560
+
MQTTAsync_failureData
Definition: MQTTAsync.h:536
+
MQTTAsync_failureData::message
const char * message
Definition: MQTTAsync.h:542
+
MQTTAsync_failureData::code
int code
Definition: MQTTAsync.h:540
+
MQTTAsync_failureData::token
MQTTAsync_token token
Definition: MQTTAsync.h:538
+
MQTTAsync_init_options
Definition: MQTTAsync.h:232
+
MQTTAsync_init_options::struct_version
int struct_version
Definition: MQTTAsync.h:236
+
MQTTAsync_init_options::do_openssl_init
int do_openssl_init
Definition: MQTTAsync.h:238
+
MQTTAsync_message
Definition: MQTTAsync.h:272
MQTTAsync_message::struct_version
int struct_version
Definition: MQTTAsync.h:277
-
MQTTAsync_willOptions::len
int len
Definition: MQTTAsync.h:1044
-
MQTTAsync_SSLOptions::ssl_error_context
void * ssl_error_context
Definition: MQTTAsync.h:1141
+
MQTTAsync_message::properties
MQTTProperties properties
Definition: MQTTAsync.h:331
+
MQTTAsync_message::qos
int qos
Definition: MQTTAsync.h:295
+
MQTTAsync_message::msgid
int msgid
Definition: MQTTAsync.h:327
+
MQTTAsync_message::retained
int retained
Definition: MQTTAsync.h:314
+
MQTTAsync_message::payload
void * payload
Definition: MQTTAsync.h:281
+
MQTTAsync_message::payloadlen
int payloadlen
Definition: MQTTAsync.h:279
+
MQTTAsync_message::dup
int dup
Definition: MQTTAsync.h:321
+
MQTTAsync_nameValue
Definition: MQTTAsync.h:1183
+
MQTTAsync_nameValue::value
const char * value
Definition: MQTTAsync.h:1185
+
MQTTAsync_nameValue::name
const char * name
Definition: MQTTAsync.h:1184
+
MQTTAsync_responseOptions
Definition: MQTTAsync.h:709
MQTTAsync_responseOptions::struct_version
int struct_version
Definition: MQTTAsync.h:714
-
MQTTAsync_willOptions::qos
int qos
Definition: MQTTAsync.h:1040
+
MQTTAsync_responseOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:726
+
MQTTAsync_responseOptions::properties
MQTTProperties properties
Definition: MQTTAsync.h:755
+
MQTTAsync_responseOptions::subscribeOptions
MQTTSubscribe_options subscribeOptions
Definition: MQTTAsync.h:759
+
MQTTAsync_responseOptions::subscribeOptionsCount
int subscribeOptionsCount
Definition: MQTTAsync.h:764
+
MQTTAsync_responseOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:745
+
MQTTAsync_responseOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:751
+
MQTTAsync_responseOptions::subscribeOptionsList
MQTTSubscribe_options * subscribeOptionsList
Definition: MQTTAsync.h:768
+
MQTTAsync_responseOptions::struct_id
char struct_id[4]
Definition: MQTTAsync.h:711
+
MQTTAsync_responseOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:720
+
MQTTAsync_responseOptions::context
void * context
Definition: MQTTAsync.h:732
+
MQTTAsync_responseOptions::token
MQTTAsync_token token
Definition: MQTTAsync.h:739
+
MQTTAsync_successData5
Definition: MQTTAsync.h:602
+
MQTTAsync_successData5::struct_version
int struct_version
Definition: MQTTAsync.h:604
+
MQTTAsync_successData5::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:628
+
MQTTAsync_successData5::properties
MQTTProperties properties
Definition: MQTTAsync.h:608
+
MQTTAsync_successData5::reasonCodes
enum MQTTReasonCodes * reasonCodes
Definition: MQTTAsync.h:616
+
MQTTAsync_successData5::sessionPresent
int sessionPresent
Definition: MQTTAsync.h:629
+
MQTTAsync_successData5::message
MQTTAsync_message message
Definition: MQTTAsync.h:621
+
MQTTAsync_successData5::serverURI
char * serverURI
Definition: MQTTAsync.h:627
+
MQTTAsync_successData5::reasonCodeCount
int reasonCodeCount
Definition: MQTTAsync.h:615
+
MQTTAsync_successData5::destinationName
char * destinationName
Definition: MQTTAsync.h:622
+
MQTTAsync_successData
Definition: MQTTAsync.h:571
+
MQTTAsync_successData::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:593
+
MQTTAsync_successData::qos
int qos
Definition: MQTTAsync.h:579
+
MQTTAsync_successData::sessionPresent
int sessionPresent
Definition: MQTTAsync.h:594
+
MQTTAsync_successData::message
MQTTAsync_message message
Definition: MQTTAsync.h:586
+
MQTTAsync_successData::qosList
int * qosList
Definition: MQTTAsync.h:582
+
MQTTAsync_successData::serverURI
char * serverURI
Definition: MQTTAsync.h:592
+
MQTTAsync_successData::destinationName
char * destinationName
Definition: MQTTAsync.h:587
MQTTAsync_successData::token
MQTTAsync_token token
Definition: MQTTAsync.h:573
-
MQTTAsync_connectOptions::cleansession
int cleansession
Definition: MQTTAsync.h:1245
-
MQTTAsync_createOptions::restoreMessages
int restoreMessages
Definition: MQTTAsync.h:993
-
MQTTASYNC_TRACE_MEDIUM
@ MQTTASYNC_TRACE_MEDIUM
Definition: MQTTAsync.h:1713
-
MQTTAsync_freeMessage
void MQTTAsync_freeMessage(MQTTAsync_message **msg)
-
MQTTReasonCodes
MQTTReasonCodes
Definition: MQTTReasonCodes.h:23
-
MQTTAsync_connectOptions::context
void * context
Definition: MQTTAsync.h:1302
-
MQTTAsync_onSuccess
void MQTTAsync_onSuccess(void *context, MQTTAsync_successData *response)
Definition: MQTTAsync.h:655
-
MQTTAsync_connectOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1296
-
MQTTAsync_createOptions
Definition: MQTTAsync.h:960
-
MQTTAsync_connectOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:1290
+
MQTTAsync_willOptions
Definition: MQTTAsync.h:1021
+
MQTTAsync_willOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1027
+
MQTTAsync_willOptions::data
const void * data
Definition: MQTTAsync.h:1045
+
MQTTAsync_willOptions::topicName
const char * topicName
Definition: MQTTAsync.h:1029
+
MQTTAsync_willOptions::message
const char * message
Definition: MQTTAsync.h:1031
+
MQTTAsync_willOptions::qos
int qos
Definition: MQTTAsync.h:1040
+
MQTTAsync_willOptions::retained
int retained
Definition: MQTTAsync.h:1035
+
MQTTAsync_willOptions::len
int len
Definition: MQTTAsync.h:1044
+
MQTTProperties
Definition: MQTTProperties.h:113
+
MQTTSubscribe_options
Definition: MQTTSubscribeOpts.h:22
+ diff --git a/docs/MQTTAsync/html/_m_q_t_t_client_persistence_8h.html b/docs/MQTTAsync/html/_m_q_t_t_client_persistence_8h.html index 079b0191..bcabe364 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_client_persistence_8h.html +++ b/docs/MQTTAsync/html/_m_q_t_t_client_persistence_8h.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTClientPersistence.h File Reference @@ -30,10 +30,10 @@ - + @@ -443,9 +443,7 @@ Typedefs diff --git a/docs/MQTTAsync/html/_m_q_t_t_client_persistence_8h_source.html b/docs/MQTTAsync/html/_m_q_t_t_client_persistence_8h_source.html index 2325d9a5..fd53aea7 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_client_persistence_8h_source.html +++ b/docs/MQTTAsync/html/_m_q_t_t_client_persistence_8h_source.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTClientPersistence.h Source File @@ -30,10 +30,10 @@ - + @@ -90,9 +90,7 @@ $(function() {
63 */
64 
69 #define MQTTCLIENT_PERSISTENCE_DEFAULT 0
-
70 
74 #define MQTTCLIENT_PERSISTENCE_NONE 1
-
75 
79 #define MQTTCLIENT_PERSISTENCE_USER 2
80 
85 #define MQTTCLIENT_PERSISTENCE_ERROR -2
@@ -132,32 +130,30 @@ $(function() {
275 typedef int MQTTPersistence_afterRead(void* context, char** buffer, int* buflen);
276 
277 #endif
- -
MQTTClient_persistence::pput
Persistence_put pput
Definition: MQTTClientPersistence.h:231
-
Persistence_put
int(* Persistence_put)(void *handle, char *key, int bufcount, char *buffers[], int buflens[])
Put the specified data into the persistent store.
Definition: MQTTClientPersistence.h:140
-
MQTTClient_persistence::pget
Persistence_get pget
Definition: MQTTClientPersistence.h:235
-
MQTTClient_persistence::premove
Persistence_remove premove
Definition: MQTTClientPersistence.h:239
-
MQTTClient_persistence::pclear
Persistence_clear pclear
Definition: MQTTClientPersistence.h:247
-
Persistence_containskey
int(* Persistence_containskey)(void *handle, char *key)
Returns whether any data has been persisted using the specified key.
Definition: MQTTClientPersistence.h:208
-
MQTTClient_persistence::pkeys
Persistence_keys pkeys
Definition: MQTTClientPersistence.h:243
-
MQTTPersistence_beforeWrite
int MQTTPersistence_beforeWrite(void *context, int bufcount, char *buffers[], int buflens[])
Definition: MQTTClientPersistence.h:264
-
MQTTClient_persistence::popen
Persistence_open popen
Definition: MQTTClientPersistence.h:223
-
Persistence_remove
int(* Persistence_remove)(void *handle, char *key)
Remove the data for the specified key from the store.
Definition: MQTTClientPersistence.h:169
-
MQTTClient_persistence::context
void * context
Definition: MQTTClientPersistence.h:219
-
MQTTClient_persistence
A structure containing the function pointers to a persistence implementation and the context or state...
Definition: MQTTClientPersistence.h:215
-
MQTTClient_persistence::pclose
Persistence_close pclose
Definition: MQTTClientPersistence.h:227
Persistence_keys
int(* Persistence_keys)(void *handle, char ***keys, int *nkeys)
Returns the keys in this persistent data store.
Definition: MQTTClientPersistence.h:186
-
Persistence_clear
int(* Persistence_clear)(void *handle)
Clears the persistence store, so that it no longer contains any persisted data.
Definition: MQTTClientPersistence.h:197
+
Persistence_close
int(* Persistence_close)(void *handle)
Close the persistent store referred to by the handle.
Definition: MQTTClientPersistence.h:123
+
Persistence_put
int(* Persistence_put)(void *handle, char *key, int bufcount, char *buffers[], int buflens[])
Put the specified data into the persistent store.
Definition: MQTTClientPersistence.h:140
Persistence_open
int(* Persistence_open)(void **handle, const char *clientID, const char *serverURI, void *context)
Initialize the persistent store.
Definition: MQTTClientPersistence.h:113
+
Persistence_remove
int(* Persistence_remove)(void *handle, char *key)
Remove the data for the specified key from the store.
Definition: MQTTClientPersistence.h:169
+
Persistence_containskey
int(* Persistence_containskey)(void *handle, char *key)
Returns whether any data has been persisted using the specified key.
Definition: MQTTClientPersistence.h:208
+
MQTTPersistence_beforeWrite
int MQTTPersistence_beforeWrite(void *context, int bufcount, char *buffers[], int buflens[])
Definition: MQTTClientPersistence.h:264
+
Persistence_clear
int(* Persistence_clear)(void *handle)
Clears the persistence store, so that it no longer contains any persisted data.
Definition: MQTTClientPersistence.h:197
Persistence_get
int(* Persistence_get)(void *handle, char *key, char **buffer, int *buflen)
Retrieve the specified data from the persistent store.
Definition: MQTTClientPersistence.h:156
MQTTPersistence_afterRead
int MQTTPersistence_afterRead(void *context, char **buffer, int *buflen)
Definition: MQTTClientPersistence.h:275
+
MQTTClient_persistence
A structure containing the function pointers to a persistence implementation and the context or state...
Definition: MQTTClientPersistence.h:215
+
MQTTClient_persistence::popen
Persistence_open popen
Definition: MQTTClientPersistence.h:223
+
MQTTClient_persistence::pkeys
Persistence_keys pkeys
Definition: MQTTClientPersistence.h:243
+
MQTTClient_persistence::pput
Persistence_put pput
Definition: MQTTClientPersistence.h:231
+
MQTTClient_persistence::pget
Persistence_get pget
Definition: MQTTClientPersistence.h:235
+
MQTTClient_persistence::premove
Persistence_remove premove
Definition: MQTTClientPersistence.h:239
+
MQTTClient_persistence::pclose
Persistence_close pclose
Definition: MQTTClientPersistence.h:227
+
MQTTClient_persistence::pclear
Persistence_clear pclear
Definition: MQTTClientPersistence.h:247
MQTTClient_persistence::pcontainskey
Persistence_containskey pcontainskey
Definition: MQTTClientPersistence.h:251
-
Persistence_close
int(* Persistence_close)(void *handle)
Close the persistent store referred to by the handle.
Definition: MQTTClientPersistence.h:123
+
MQTTClient_persistence::context
void * context
Definition: MQTTClientPersistence.h:219
+ diff --git a/docs/MQTTAsync/html/_m_q_t_t_properties_8h.html b/docs/MQTTAsync/html/_m_q_t_t_properties_8h.html index 2d59e365..d9f17574 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_properties_8h.html +++ b/docs/MQTTAsync/html/_m_q_t_t_properties_8h.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTProperties.h File Reference @@ -30,10 +30,10 @@ - + @@ -100,51 +100,51 @@ Typedefs

Enumerations

enum  MQTTPropertyCodes {
-  MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR = 1, -MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL = 2, -MQTTPROPERTY_CODE_CONTENT_TYPE = 3, -MQTTPROPERTY_CODE_RESPONSE_TOPIC = 8, -
-  MQTTPROPERTY_CODE_CORRELATION_DATA = 9, -MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER = 11, -MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL = 17, -MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER = 18, -
-  MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE = 19, -MQTTPROPERTY_CODE_AUTHENTICATION_METHOD = 21, -MQTTPROPERTY_CODE_AUTHENTICATION_DATA = 22, -MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION = 23, -
-  MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL = 24, -MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION = 25, -MQTTPROPERTY_CODE_RESPONSE_INFORMATION = 26, -MQTTPROPERTY_CODE_SERVER_REFERENCE = 28, -
-  MQTTPROPERTY_CODE_REASON_STRING = 31, -MQTTPROPERTY_CODE_RECEIVE_MAXIMUM = 33, -MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM = 34, -MQTTPROPERTY_CODE_TOPIC_ALIAS = 35, -
-  MQTTPROPERTY_CODE_MAXIMUM_QOS = 36, -MQTTPROPERTY_CODE_RETAIN_AVAILABLE = 37, -MQTTPROPERTY_CODE_USER_PROPERTY = 38, -MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE = 39, -
-  MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE = 40, -MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE = 41, -MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE = 42 +  MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR = 1 +, MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL = 2 +, MQTTPROPERTY_CODE_CONTENT_TYPE = 3 +, MQTTPROPERTY_CODE_RESPONSE_TOPIC = 8 +,
+  MQTTPROPERTY_CODE_CORRELATION_DATA = 9 +, MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER = 11 +, MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL = 17 +, MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER = 18 +,
+  MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE = 19 +, MQTTPROPERTY_CODE_AUTHENTICATION_METHOD = 21 +, MQTTPROPERTY_CODE_AUTHENTICATION_DATA = 22 +, MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION = 23 +,
+  MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL = 24 +, MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION = 25 +, MQTTPROPERTY_CODE_RESPONSE_INFORMATION = 26 +, MQTTPROPERTY_CODE_SERVER_REFERENCE = 28 +,
+  MQTTPROPERTY_CODE_REASON_STRING = 31 +, MQTTPROPERTY_CODE_RECEIVE_MAXIMUM = 33 +, MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM = 34 +, MQTTPROPERTY_CODE_TOPIC_ALIAS = 35 +,
+  MQTTPROPERTY_CODE_MAXIMUM_QOS = 36 +, MQTTPROPERTY_CODE_RETAIN_AVAILABLE = 37 +, MQTTPROPERTY_CODE_USER_PROPERTY = 38 +, MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE = 39 +,
+  MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE = 40 +, MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE = 41 +, MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE = 42
}   enum  MQTTPropertyTypes {
-  MQTTPROPERTY_TYPE_BYTE, -MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER, -MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER, -MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER, -
-  MQTTPROPERTY_TYPE_BINARY_DATA, -MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING, -MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR +  MQTTPROPERTY_TYPE_BYTE +, MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER +, MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER +, MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER +,
+  MQTTPROPERTY_TYPE_BINARY_DATA +, MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING +, MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR
}   @@ -422,7 +422,7 @@ Functions
-

Add a property pointer to the property array. There is no memory allocation.

Parameters
+

Add a property pointer to the property array. Memory is allocated in this function, so MQTTClient_create or MQTTAsync_create must be called first to initialize the internal heap tracking. Alternatively MQTTAsync_global_init() can be called first or build with the HIGH_PERFORMANCE option which disables the heap tracking.

Parameters
@@ -794,9 +794,7 @@ Functions diff --git a/docs/MQTTAsync/html/_m_q_t_t_properties_8h_source.html b/docs/MQTTAsync/html/_m_q_t_t_properties_8h_source.html index 4eb6118c..a13e2e8c 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_properties_8h_source.html +++ b/docs/MQTTAsync/html/_m_q_t_t_properties_8h_source.html @@ -3,7 +3,7 @@ - +Paho Asynchronous MQTT C Client Library: MQTTProperties.h Source File @@ -30,10 +30,10 @@
propsThe property list to add the property to.
propThe property to add to the list.
- + @@ -67,7 +67,7 @@ $(function() {
Go to the documentation of this file.
1 /*******************************************************************************
-
2  * Copyright (c) 2017, 2020 IBM Corp. and others
+
2  * Copyright (c) 2017, 2023 IBM Corp. and others
3  *
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v2.0
@@ -116,10 +116,10 @@ $(function() { - -
53 };
+ +
53 };
54 
-
61 LIBMQTT_API const char* MQTTPropertyName(enum MQTTPropertyCodes value);
+
61 LIBMQTT_API const char* MQTTPropertyName(enum MQTTPropertyCodes value);
62 
@@ -128,10 +128,10 @@ $(function() { - -
72 };
+ +
72 };
73 
-
79 LIBMQTT_API int MQTTProperty_getType(enum MQTTPropertyCodes value);
+
79 LIBMQTT_API int MQTTProperty_getType(enum MQTTPropertyCodes value);
80 
84 typedef struct
85 {
@@ -142,7 +142,7 @@ $(function() {
90 
94 typedef struct
95 {
-
96  enum MQTTPropertyCodes identifier;
+
96  enum MQTTPropertyCodes identifier;
98  union {
99  unsigned char byte;
100  unsigned short integer2;
@@ -151,7 +151,7 @@ $(function() {
105  };
-
106  } value;
+
106  } value;
107 } MQTTProperty;
108 
112 typedef struct MQTTProperties
@@ -160,106 +160,104 @@ $(function() {
115  int max_count;
116  int length;
- +
119 
120 #define MQTTProperties_initializer {0, 0, 0, NULL}
121 
- +
128 
-
135 LIBMQTT_API int MQTTProperties_add(MQTTProperties* props, const MQTTProperty* prop);
-
136 
-
143 int MQTTProperties_write(char** pptr, const MQTTProperties* properties);
-
144 
-
152 int MQTTProperties_read(MQTTProperties* properties, char** pptr, char* enddata);
-
153 
-
158 LIBMQTT_API void MQTTProperties_free(MQTTProperties* properties);
-
159 
-
165 LIBMQTT_API MQTTProperties MQTTProperties_copy(const MQTTProperties* props);
-
166 
-
173 LIBMQTT_API int MQTTProperties_hasProperty(MQTTProperties *props, enum MQTTPropertyCodes propid);
-
174 
-
182 LIBMQTT_API int MQTTProperties_propertyCount(MQTTProperties *props, enum MQTTPropertyCodes propid);
-
183 
-
190 LIBMQTT_API int MQTTProperties_getNumericValue(MQTTProperties *props, enum MQTTPropertyCodes propid);
-
191 
-
200 LIBMQTT_API int MQTTProperties_getNumericValueAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index);
-
201 
- -
209 
-
217 LIBMQTT_API MQTTProperty* MQTTProperties_getPropertyAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index);
-
218 
-
219 #endif /* MQTTPROPERTIES_H */
-
-
MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE
@ MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE
Definition: MQTTProperties.h:52
-
MQTTProperties_getProperty
MQTTProperty * MQTTProperties_getProperty(MQTTProperties *props, enum MQTTPropertyCodes propid)
-
MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE
@ MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE
Definition: MQTTProperties.h:51
-
MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER
@ MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER
Definition: MQTTProperties.h:31
-
MQTTPROPERTY_TYPE_BINARY_DATA
@ MQTTPROPERTY_TYPE_BINARY_DATA
Definition: MQTTProperties.h:69
-
MQTTProperties_len
int MQTTProperties_len(MQTTProperties *props)
-
MQTTProperties
struct MQTTProperties MQTTProperties
-
MQTTProperties::length
int length
Definition: MQTTProperties.h:116
-
MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM
@ MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM
Definition: MQTTProperties.h:44
-
MQTTProperties_propertyCount
int MQTTProperties_propertyCount(MQTTProperties *props, enum MQTTPropertyCodes propid)
-
MQTTPROPERTY_CODE_SERVER_REFERENCE
@ MQTTPROPERTY_CODE_SERVER_REFERENCE
Definition: MQTTProperties.h:41
-
MQTTProperties
Definition: MQTTProperties.h:112
-
MQTTPROPERTY_CODE_RESPONSE_TOPIC
@ MQTTPROPERTY_CODE_RESPONSE_TOPIC
Definition: MQTTProperties.h:29
-
MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL
@ MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL
Definition: MQTTProperties.h:38
-
MQTTProperties::count
int count
Definition: MQTTProperties.h:114
-
MQTTProperties_getNumericValue
int MQTTProperties_getNumericValue(MQTTProperties *props, enum MQTTPropertyCodes propid)
-
MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE
@ MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE
Definition: MQTTProperties.h:34
-
MQTTProperties_write
int MQTTProperties_write(char **pptr, const MQTTProperties *properties)
-
MQTTProperty::byte
unsigned char byte
Definition: MQTTProperties.h:99
-
MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER
@ MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER
Definition: MQTTProperties.h:66
-
MQTTProperties_getPropertyAt
MQTTProperty * MQTTProperties_getPropertyAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index)
-
MQTTProperties_copy
MQTTProperties MQTTProperties_copy(const MQTTProperties *props)
-
MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR
@ MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR
Definition: MQTTProperties.h:71
-
MQTTPropertyCodes
MQTTPropertyCodes
Definition: MQTTProperties.h:25
-
MQTTPROPERTY_CODE_RECEIVE_MAXIMUM
@ MQTTPROPERTY_CODE_RECEIVE_MAXIMUM
Definition: MQTTProperties.h:43
-
MQTTLenString::data
char * data
Definition: MQTTProperties.h:87
-
MQTTProperty::value
MQTTLenString value
Definition: MQTTProperties.h:104
-
MQTTProperties::max_count
int max_count
Definition: MQTTProperties.h:115
-
MQTTPROPERTY_CODE_MAXIMUM_QOS
@ MQTTPROPERTY_CODE_MAXIMUM_QOS
Definition: MQTTProperties.h:46
-
MQTTProperty::data
MQTTLenString data
Definition: MQTTProperties.h:103
-
MQTTPROPERTY_CODE_CONTENT_TYPE
@ MQTTPROPERTY_CODE_CONTENT_TYPE
Definition: MQTTProperties.h:28
-
MQTTPropertyName
const char * MQTTPropertyName(enum MQTTPropertyCodes value)
-
MQTTProperty_getType
int MQTTProperty_getType(enum MQTTPropertyCodes value)
-
MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER
@ MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER
Definition: MQTTProperties.h:67
-
MQTTLenString::len
int len
Definition: MQTTProperties.h:86
-
MQTTPROPERTY_CODE_CORRELATION_DATA
@ MQTTPROPERTY_CODE_CORRELATION_DATA
Definition: MQTTProperties.h:30
-
MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION
@ MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION
Definition: MQTTProperties.h:37
-
MQTTProperties::array
MQTTProperty * array
Definition: MQTTProperties.h:117
-
MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER
@ MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER
Definition: MQTTProperties.h:33
-
MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE
@ MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE
Definition: MQTTProperties.h:50
+
138 LIBMQTT_API int MQTTProperties_add(MQTTProperties* props, const MQTTProperty* prop);
+
139 
+
146 int MQTTProperties_write(char** pptr, const MQTTProperties* properties);
+
147 
+
155 int MQTTProperties_read(MQTTProperties* properties, char** pptr, char* enddata);
+
156 
+
161 LIBMQTT_API void MQTTProperties_free(MQTTProperties* properties);
+
162 
+
168 LIBMQTT_API MQTTProperties MQTTProperties_copy(const MQTTProperties* props);
+
169 
+
176 LIBMQTT_API int MQTTProperties_hasProperty(MQTTProperties *props, enum MQTTPropertyCodes propid);
+
177 
+
185 LIBMQTT_API int MQTTProperties_propertyCount(MQTTProperties *props, enum MQTTPropertyCodes propid);
+
186 
+
193 LIBMQTT_API int MQTTProperties_getNumericValue(MQTTProperties *props, enum MQTTPropertyCodes propid);
+
194 
+
203 LIBMQTT_API int MQTTProperties_getNumericValueAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index);
+
204 
+
211 LIBMQTT_API MQTTProperty* MQTTProperties_getProperty(MQTTProperties *props, enum MQTTPropertyCodes propid);
+
212 
+
220 LIBMQTT_API MQTTProperty* MQTTProperties_getPropertyAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index);
+
221 
+
222 #endif /* MQTTPROPERTIES_H */
MQTTProperties_hasProperty
int MQTTProperties_hasProperty(MQTTProperties *props, enum MQTTPropertyCodes propid)
-
MQTTProperty
Definition: MQTTProperties.h:94
-
MQTTPROPERTY_CODE_RETAIN_AVAILABLE
@ MQTTPROPERTY_CODE_RETAIN_AVAILABLE
Definition: MQTTProperties.h:47
-
MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION
@ MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION
Definition: MQTTProperties.h:39
-
MQTTPROPERTY_CODE_AUTHENTICATION_METHOD
@ MQTTPROPERTY_CODE_AUTHENTICATION_METHOD
Definition: MQTTProperties.h:35
-
MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING
@ MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING
Definition: MQTTProperties.h:70
-
MQTTProperties_read
int MQTTProperties_read(MQTTProperties *properties, char **pptr, char *enddata)
-
MQTTPROPERTY_CODE_TOPIC_ALIAS
@ MQTTPROPERTY_CODE_TOPIC_ALIAS
Definition: MQTTProperties.h:45
-
MQTTPROPERTY_TYPE_BYTE
@ MQTTPROPERTY_TYPE_BYTE
Definition: MQTTProperties.h:65
-
MQTTProperties_free
void MQTTProperties_free(MQTTProperties *properties)
-
MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL
@ MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL
Definition: MQTTProperties.h:27
-
MQTTPROPERTY_CODE_AUTHENTICATION_DATA
@ MQTTPROPERTY_CODE_AUTHENTICATION_DATA
Definition: MQTTProperties.h:36
-
MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER
@ MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER
Definition: MQTTProperties.h:68
-
MQTTPROPERTY_CODE_USER_PROPERTY
@ MQTTPROPERTY_CODE_USER_PROPERTY
Definition: MQTTProperties.h:48
-
MQTTPROPERTY_CODE_REASON_STRING
@ MQTTPROPERTY_CODE_REASON_STRING
Definition: MQTTProperties.h:42
-
MQTTPropertyTypes
MQTTPropertyTypes
Definition: MQTTProperties.h:64
-
MQTTPROPERTY_CODE_RESPONSE_INFORMATION
@ MQTTPROPERTY_CODE_RESPONSE_INFORMATION
Definition: MQTTProperties.h:40
-
MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR
@ MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR
Definition: MQTTProperties.h:26
-
MQTTLenString
Definition: MQTTProperties.h:84
-
MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL
@ MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL
Definition: MQTTProperties.h:32
-
MQTTProperty::integer2
unsigned short integer2
Definition: MQTTProperties.h:100
-
MQTTProperties_getNumericValueAt
int MQTTProperties_getNumericValueAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index)
-
MQTTProperty::integer4
unsigned int integer4
Definition: MQTTProperties.h:101
+
MQTTProperties_copy
MQTTProperties MQTTProperties_copy(const MQTTProperties *props)
+
MQTTProperties_propertyCount
int MQTTProperties_propertyCount(MQTTProperties *props, enum MQTTPropertyCodes propid)
+
MQTTProperties
struct MQTTProperties MQTTProperties
+
MQTTProperties_getProperty
MQTTProperty * MQTTProperties_getProperty(MQTTProperties *props, enum MQTTPropertyCodes propid)
+
MQTTProperty_getType
int MQTTProperty_getType(enum MQTTPropertyCodes value)
MQTTProperties_add
int MQTTProperties_add(MQTTProperties *props, const MQTTProperty *prop)
+
MQTTPropertyTypes
MQTTPropertyTypes
Definition: MQTTProperties.h:64
+
MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER
@ MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER
Definition: MQTTProperties.h:68
+
MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR
@ MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR
Definition: MQTTProperties.h:71
+
MQTTPROPERTY_TYPE_BINARY_DATA
@ MQTTPROPERTY_TYPE_BINARY_DATA
Definition: MQTTProperties.h:69
+
MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER
@ MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER
Definition: MQTTProperties.h:67
+
MQTTPROPERTY_TYPE_BYTE
@ MQTTPROPERTY_TYPE_BYTE
Definition: MQTTProperties.h:65
+
MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING
@ MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING
Definition: MQTTProperties.h:70
+
MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER
@ MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER
Definition: MQTTProperties.h:66
+
MQTTProperties_free
void MQTTProperties_free(MQTTProperties *properties)
+
MQTTProperties_len
int MQTTProperties_len(MQTTProperties *props)
+
MQTTProperties_getNumericValueAt
int MQTTProperties_getNumericValueAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index)
+
MQTTProperties_getPropertyAt
MQTTProperty * MQTTProperties_getPropertyAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index)
+
MQTTProperties_write
int MQTTProperties_write(char **pptr, const MQTTProperties *properties)
+
MQTTPropertyCodes
MQTTPropertyCodes
Definition: MQTTProperties.h:25
+
MQTTPROPERTY_CODE_SERVER_REFERENCE
@ MQTTPROPERTY_CODE_SERVER_REFERENCE
Definition: MQTTProperties.h:41
+
MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM
@ MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM
Definition: MQTTProperties.h:44
+
MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL
@ MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL
Definition: MQTTProperties.h:32
+
MQTTPROPERTY_CODE_RESPONSE_INFORMATION
@ MQTTPROPERTY_CODE_RESPONSE_INFORMATION
Definition: MQTTProperties.h:40
+
MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL
@ MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL
Definition: MQTTProperties.h:27
+
MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION
@ MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION
Definition: MQTTProperties.h:37
+
MQTTPROPERTY_CODE_REASON_STRING
@ MQTTPROPERTY_CODE_REASON_STRING
Definition: MQTTProperties.h:42
+
MQTTPROPERTY_CODE_CONTENT_TYPE
@ MQTTPROPERTY_CODE_CONTENT_TYPE
Definition: MQTTProperties.h:28
+
MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION
@ MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION
Definition: MQTTProperties.h:39
+
MQTTPROPERTY_CODE_RETAIN_AVAILABLE
@ MQTTPROPERTY_CODE_RETAIN_AVAILABLE
Definition: MQTTProperties.h:47
+
MQTTPROPERTY_CODE_MAXIMUM_QOS
@ MQTTPROPERTY_CODE_MAXIMUM_QOS
Definition: MQTTProperties.h:46
+
MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL
@ MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL
Definition: MQTTProperties.h:38
+
MQTTPROPERTY_CODE_USER_PROPERTY
@ MQTTPROPERTY_CODE_USER_PROPERTY
Definition: MQTTProperties.h:48
MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE
@ MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE
Definition: MQTTProperties.h:49
+
MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER
@ MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER
Definition: MQTTProperties.h:31
+
MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER
@ MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER
Definition: MQTTProperties.h:33
+
MQTTPROPERTY_CODE_AUTHENTICATION_METHOD
@ MQTTPROPERTY_CODE_AUTHENTICATION_METHOD
Definition: MQTTProperties.h:35
+
MQTTPROPERTY_CODE_RESPONSE_TOPIC
@ MQTTPROPERTY_CODE_RESPONSE_TOPIC
Definition: MQTTProperties.h:29
+
MQTTPROPERTY_CODE_CORRELATION_DATA
@ MQTTPROPERTY_CODE_CORRELATION_DATA
Definition: MQTTProperties.h:30
+
MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE
@ MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE
Definition: MQTTProperties.h:51
+
MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE
@ MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE
Definition: MQTTProperties.h:34
+
MQTTPROPERTY_CODE_RECEIVE_MAXIMUM
@ MQTTPROPERTY_CODE_RECEIVE_MAXIMUM
Definition: MQTTProperties.h:43
+
MQTTPROPERTY_CODE_AUTHENTICATION_DATA
@ MQTTPROPERTY_CODE_AUTHENTICATION_DATA
Definition: MQTTProperties.h:36
+
MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE
@ MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE
Definition: MQTTProperties.h:50
+
MQTTPROPERTY_CODE_TOPIC_ALIAS
@ MQTTPROPERTY_CODE_TOPIC_ALIAS
Definition: MQTTProperties.h:45
+
MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE
@ MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE
Definition: MQTTProperties.h:52
+
MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR
@ MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR
Definition: MQTTProperties.h:26
+
MQTTPropertyName
const char * MQTTPropertyName(enum MQTTPropertyCodes value)
+
MQTTProperties_getNumericValue
int MQTTProperties_getNumericValue(MQTTProperties *props, enum MQTTPropertyCodes propid)
+
MQTTProperties_read
int MQTTProperties_read(MQTTProperties *properties, char **pptr, char *enddata)
+
MQTTLenString
Definition: MQTTProperties.h:85
+
MQTTLenString::data
char * data
Definition: MQTTProperties.h:87
+
MQTTLenString::len
int len
Definition: MQTTProperties.h:86
+
MQTTProperties
Definition: MQTTProperties.h:113
+
MQTTProperties::array
MQTTProperty * array
Definition: MQTTProperties.h:117
+
MQTTProperties::max_count
int max_count
Definition: MQTTProperties.h:115
+
MQTTProperties::length
int length
Definition: MQTTProperties.h:116
+
MQTTProperties::count
int count
Definition: MQTTProperties.h:114
+
MQTTProperty
Definition: MQTTProperties.h:95
+
MQTTProperty::integer2
unsigned short integer2
Definition: MQTTProperties.h:100
+
MQTTProperty::value
MQTTLenString value
Definition: MQTTProperties.h:104
+
MQTTProperty::byte
unsigned char byte
Definition: MQTTProperties.h:99
+
MQTTProperty::integer4
unsigned int integer4
Definition: MQTTProperties.h:101
+
MQTTProperty::data
MQTTLenString data
Definition: MQTTProperties.h:103
+ diff --git a/docs/MQTTAsync/html/_m_q_t_t_reason_codes_8h.html b/docs/MQTTAsync/html/_m_q_t_t_reason_codes_8h.html index 500a75ed..3592e3b1 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_reason_codes_8h.html +++ b/docs/MQTTAsync/html/_m_q_t_t_reason_codes_8h.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTReasonCodes.h File Reference @@ -30,10 +30,10 @@ - + @@ -76,61 +76,61 @@ $(function() {

Enumerations

enum  MQTTReasonCodes {
-  MQTTREASONCODE_SUCCESS = 0, -MQTTREASONCODE_NORMAL_DISCONNECTION = 0, -MQTTREASONCODE_GRANTED_QOS_0 = 0, -MQTTREASONCODE_GRANTED_QOS_1 = 1, -
-  MQTTREASONCODE_GRANTED_QOS_2 = 2, -MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE = 4, -MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS = 16, -MQTTREASONCODE_NO_SUBSCRIPTION_FOUND = 17, -
-  MQTTREASONCODE_CONTINUE_AUTHENTICATION = 24, -MQTTREASONCODE_RE_AUTHENTICATE = 25, -MQTTREASONCODE_UNSPECIFIED_ERROR = 128, -MQTTREASONCODE_MALFORMED_PACKET = 129, -
-  MQTTREASONCODE_PROTOCOL_ERROR = 130, -MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR = 131, -MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION = 132, -MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID = 133, -
-  MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD = 134, -MQTTREASONCODE_NOT_AUTHORIZED = 135, -MQTTREASONCODE_SERVER_UNAVAILABLE = 136, -MQTTREASONCODE_SERVER_BUSY = 137, -
-  MQTTREASONCODE_BANNED = 138, -MQTTREASONCODE_SERVER_SHUTTING_DOWN = 139, -MQTTREASONCODE_BAD_AUTHENTICATION_METHOD = 140, -MQTTREASONCODE_KEEP_ALIVE_TIMEOUT = 141, -
-  MQTTREASONCODE_SESSION_TAKEN_OVER = 142, -MQTTREASONCODE_TOPIC_FILTER_INVALID = 143, -MQTTREASONCODE_TOPIC_NAME_INVALID = 144, -MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE = 145, -
-  MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND = 146, -MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED = 147, -MQTTREASONCODE_TOPIC_ALIAS_INVALID = 148, -MQTTREASONCODE_PACKET_TOO_LARGE = 149, -
-  MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH = 150, -MQTTREASONCODE_QUOTA_EXCEEDED = 151, -MQTTREASONCODE_ADMINISTRATIVE_ACTION = 152, -MQTTREASONCODE_PAYLOAD_FORMAT_INVALID = 153, -
-  MQTTREASONCODE_RETAIN_NOT_SUPPORTED = 154, -MQTTREASONCODE_QOS_NOT_SUPPORTED = 155, -MQTTREASONCODE_USE_ANOTHER_SERVER = 156, -MQTTREASONCODE_SERVER_MOVED = 157, -
-  MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED = 158, -MQTTREASONCODE_CONNECTION_RATE_EXCEEDED = 159, -MQTTREASONCODE_MAXIMUM_CONNECT_TIME = 160, -MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED = 161, -
+  MQTTREASONCODE_SUCCESS = 0 +, MQTTREASONCODE_NORMAL_DISCONNECTION = 0 +, MQTTREASONCODE_GRANTED_QOS_0 = 0 +, MQTTREASONCODE_GRANTED_QOS_1 = 1 +,
+  MQTTREASONCODE_GRANTED_QOS_2 = 2 +, MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE = 4 +, MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS = 16 +, MQTTREASONCODE_NO_SUBSCRIPTION_FOUND = 17 +,
+  MQTTREASONCODE_CONTINUE_AUTHENTICATION = 24 +, MQTTREASONCODE_RE_AUTHENTICATE = 25 +, MQTTREASONCODE_UNSPECIFIED_ERROR = 128 +, MQTTREASONCODE_MALFORMED_PACKET = 129 +,
+  MQTTREASONCODE_PROTOCOL_ERROR = 130 +, MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR = 131 +, MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION = 132 +, MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID = 133 +,
+  MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD = 134 +, MQTTREASONCODE_NOT_AUTHORIZED = 135 +, MQTTREASONCODE_SERVER_UNAVAILABLE = 136 +, MQTTREASONCODE_SERVER_BUSY = 137 +,
+  MQTTREASONCODE_BANNED = 138 +, MQTTREASONCODE_SERVER_SHUTTING_DOWN = 139 +, MQTTREASONCODE_BAD_AUTHENTICATION_METHOD = 140 +, MQTTREASONCODE_KEEP_ALIVE_TIMEOUT = 141 +,
+  MQTTREASONCODE_SESSION_TAKEN_OVER = 142 +, MQTTREASONCODE_TOPIC_FILTER_INVALID = 143 +, MQTTREASONCODE_TOPIC_NAME_INVALID = 144 +, MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE = 145 +,
+  MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND = 146 +, MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED = 147 +, MQTTREASONCODE_TOPIC_ALIAS_INVALID = 148 +, MQTTREASONCODE_PACKET_TOO_LARGE = 149 +,
+  MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH = 150 +, MQTTREASONCODE_QUOTA_EXCEEDED = 151 +, MQTTREASONCODE_ADMINISTRATIVE_ACTION = 152 +, MQTTREASONCODE_PAYLOAD_FORMAT_INVALID = 153 +,
+  MQTTREASONCODE_RETAIN_NOT_SUPPORTED = 154 +, MQTTREASONCODE_QOS_NOT_SUPPORTED = 155 +, MQTTREASONCODE_USE_ANOTHER_SERVER = 156 +, MQTTREASONCODE_SERVER_MOVED = 157 +,
+  MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED = 158 +, MQTTREASONCODE_CONNECTION_RATE_EXCEEDED = 159 +, MQTTREASONCODE_MAXIMUM_CONNECT_TIME = 160 +, MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED = 161 +,
  MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED = 162
} @@ -233,9 +233,7 @@ Functions diff --git a/docs/MQTTAsync/html/_m_q_t_t_reason_codes_8h_source.html b/docs/MQTTAsync/html/_m_q_t_t_reason_codes_8h_source.html index 25214ca4..f5cb39b4 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_reason_codes_8h_source.html +++ b/docs/MQTTAsync/html/_m_q_t_t_reason_codes_8h_source.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTReasonCodes.h Source File @@ -30,10 +30,10 @@ - + @@ -88,109 +88,107 @@ $(function() {
20 #include "MQTTExportDeclarations.h"
21 
23 enum MQTTReasonCodes {
-
24  MQTTREASONCODE_SUCCESS = 0,
-
25  MQTTREASONCODE_NORMAL_DISCONNECTION = 0,
-
26  MQTTREASONCODE_GRANTED_QOS_0 = 0,
-
27  MQTTREASONCODE_GRANTED_QOS_1 = 1,
-
28  MQTTREASONCODE_GRANTED_QOS_2 = 2,
-
29  MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE = 4,
-
30  MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS = 16,
-
31  MQTTREASONCODE_NO_SUBSCRIPTION_FOUND = 17,
-
32  MQTTREASONCODE_CONTINUE_AUTHENTICATION = 24,
-
33  MQTTREASONCODE_RE_AUTHENTICATE = 25,
-
34  MQTTREASONCODE_UNSPECIFIED_ERROR = 128,
-
35  MQTTREASONCODE_MALFORMED_PACKET = 129,
-
36  MQTTREASONCODE_PROTOCOL_ERROR = 130,
-
37  MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR = 131,
-
38  MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION = 132,
-
39  MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID = 133,
-
40  MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD = 134,
-
41  MQTTREASONCODE_NOT_AUTHORIZED = 135,
-
42  MQTTREASONCODE_SERVER_UNAVAILABLE = 136,
-
43  MQTTREASONCODE_SERVER_BUSY = 137,
-
44  MQTTREASONCODE_BANNED = 138,
-
45  MQTTREASONCODE_SERVER_SHUTTING_DOWN = 139,
-
46  MQTTREASONCODE_BAD_AUTHENTICATION_METHOD = 140,
-
47  MQTTREASONCODE_KEEP_ALIVE_TIMEOUT = 141,
-
48  MQTTREASONCODE_SESSION_TAKEN_OVER = 142,
-
49  MQTTREASONCODE_TOPIC_FILTER_INVALID = 143,
-
50  MQTTREASONCODE_TOPIC_NAME_INVALID = 144,
-
51  MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE = 145,
-
52  MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND = 146,
-
53  MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED = 147,
-
54  MQTTREASONCODE_TOPIC_ALIAS_INVALID = 148,
-
55  MQTTREASONCODE_PACKET_TOO_LARGE = 149,
-
56  MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH = 150,
-
57  MQTTREASONCODE_QUOTA_EXCEEDED = 151,
-
58  MQTTREASONCODE_ADMINISTRATIVE_ACTION = 152,
-
59  MQTTREASONCODE_PAYLOAD_FORMAT_INVALID = 153,
-
60  MQTTREASONCODE_RETAIN_NOT_SUPPORTED = 154,
-
61  MQTTREASONCODE_QOS_NOT_SUPPORTED = 155,
-
62  MQTTREASONCODE_USE_ANOTHER_SERVER = 156,
-
63  MQTTREASONCODE_SERVER_MOVED = 157,
-
64  MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED = 158,
-
65  MQTTREASONCODE_CONNECTION_RATE_EXCEEDED = 159,
-
66  MQTTREASONCODE_MAXIMUM_CONNECT_TIME = 160,
-
67  MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED = 161,
-
68  MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED = 162
-
69 };
-
70 
-
77 LIBMQTT_API const char* MQTTReasonCode_toString(enum MQTTReasonCodes value);
-
78 
-
79 #endif
- -
MQTTREASONCODE_PROTOCOL_ERROR
@ MQTTREASONCODE_PROTOCOL_ERROR
Definition: MQTTReasonCodes.h:50
-
MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND
@ MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND
Definition: MQTTReasonCodes.h:66
-
MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID
@ MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID
Definition: MQTTReasonCodes.h:53
-
MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED
@ MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:78
-
MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR
@ MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR
Definition: MQTTReasonCodes.h:51
-
MQTTREASONCODE_TOPIC_FILTER_INVALID
@ MQTTREASONCODE_TOPIC_FILTER_INVALID
Definition: MQTTReasonCodes.h:63
-
MQTTREASONCODE_MAXIMUM_CONNECT_TIME
@ MQTTREASONCODE_MAXIMUM_CONNECT_TIME
Definition: MQTTReasonCodes.h:80
-
MQTTREASONCODE_SUCCESS
@ MQTTREASONCODE_SUCCESS
Definition: MQTTReasonCodes.h:38
-
MQTTREASONCODE_ADMINISTRATIVE_ACTION
@ MQTTREASONCODE_ADMINISTRATIVE_ACTION
Definition: MQTTReasonCodes.h:72
-
MQTTREASONCODE_NO_SUBSCRIPTION_FOUND
@ MQTTREASONCODE_NO_SUBSCRIPTION_FOUND
Definition: MQTTReasonCodes.h:45
-
MQTTREASONCODE_KEEP_ALIVE_TIMEOUT
@ MQTTREASONCODE_KEEP_ALIVE_TIMEOUT
Definition: MQTTReasonCodes.h:61
-
MQTTREASONCODE_SERVER_BUSY
@ MQTTREASONCODE_SERVER_BUSY
Definition: MQTTReasonCodes.h:57
-
MQTTREASONCODE_SERVER_MOVED
@ MQTTREASONCODE_SERVER_MOVED
Definition: MQTTReasonCodes.h:77
-
MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED
@ MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED
Definition: MQTTReasonCodes.h:67
-
MQTTREASONCODE_BANNED
@ MQTTREASONCODE_BANNED
Definition: MQTTReasonCodes.h:58
-
MQTTREASONCODE_GRANTED_QOS_2
@ MQTTREASONCODE_GRANTED_QOS_2
Definition: MQTTReasonCodes.h:42
-
MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE
@ MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE
Definition: MQTTReasonCodes.h:65
-
MQTTREASONCODE_TOPIC_NAME_INVALID
@ MQTTREASONCODE_TOPIC_NAME_INVALID
Definition: MQTTReasonCodes.h:64
-
MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION
@ MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION
Definition: MQTTReasonCodes.h:52
-
MQTTREASONCODE_GRANTED_QOS_1
@ MQTTREASONCODE_GRANTED_QOS_1
Definition: MQTTReasonCodes.h:41
-
MQTTREASONCODE_CONTINUE_AUTHENTICATION
@ MQTTREASONCODE_CONTINUE_AUTHENTICATION
Definition: MQTTReasonCodes.h:46
-
MQTTREASONCODE_CONNECTION_RATE_EXCEEDED
@ MQTTREASONCODE_CONNECTION_RATE_EXCEEDED
Definition: MQTTReasonCodes.h:79
-
MQTTREASONCODE_NORMAL_DISCONNECTION
@ MQTTREASONCODE_NORMAL_DISCONNECTION
Definition: MQTTReasonCodes.h:39
-
MQTTREASONCODE_GRANTED_QOS_0
@ MQTTREASONCODE_GRANTED_QOS_0
Definition: MQTTReasonCodes.h:40
-
MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD
@ MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD
Definition: MQTTReasonCodes.h:54
-
MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE
@ MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE
Definition: MQTTReasonCodes.h:43
-
MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED
@ MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:82
-
MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS
@ MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS
Definition: MQTTReasonCodes.h:44
-
MQTTREASONCODE_MALFORMED_PACKET
@ MQTTREASONCODE_MALFORMED_PACKET
Definition: MQTTReasonCodes.h:49
-
MQTTREASONCODE_SERVER_SHUTTING_DOWN
@ MQTTREASONCODE_SERVER_SHUTTING_DOWN
Definition: MQTTReasonCodes.h:59
-
MQTTREASONCODE_TOPIC_ALIAS_INVALID
@ MQTTREASONCODE_TOPIC_ALIAS_INVALID
Definition: MQTTReasonCodes.h:68
-
MQTTREASONCODE_RETAIN_NOT_SUPPORTED
@ MQTTREASONCODE_RETAIN_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:74
-
MQTTREASONCODE_UNSPECIFIED_ERROR
@ MQTTREASONCODE_UNSPECIFIED_ERROR
Definition: MQTTReasonCodes.h:48
-
MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH
@ MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH
Definition: MQTTReasonCodes.h:70
-
MQTTREASONCODE_PAYLOAD_FORMAT_INVALID
@ MQTTREASONCODE_PAYLOAD_FORMAT_INVALID
Definition: MQTTReasonCodes.h:73
-
MQTTREASONCODE_QUOTA_EXCEEDED
@ MQTTREASONCODE_QUOTA_EXCEEDED
Definition: MQTTReasonCodes.h:71
-
MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED
@ MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:81
+
24  MQTTREASONCODE_SUCCESS = 0,
+
25  MQTTREASONCODE_NORMAL_DISCONNECTION = 0,
+
26  MQTTREASONCODE_GRANTED_QOS_0 = 0,
+
27  MQTTREASONCODE_GRANTED_QOS_1 = 1,
+
28  MQTTREASONCODE_GRANTED_QOS_2 = 2,
+
29  MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE = 4,
+
30  MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS = 16,
+
31  MQTTREASONCODE_NO_SUBSCRIPTION_FOUND = 17,
+
32  MQTTREASONCODE_CONTINUE_AUTHENTICATION = 24,
+
33  MQTTREASONCODE_RE_AUTHENTICATE = 25,
+
34  MQTTREASONCODE_UNSPECIFIED_ERROR = 128,
+
35  MQTTREASONCODE_MALFORMED_PACKET = 129,
+
36  MQTTREASONCODE_PROTOCOL_ERROR = 130,
+
37  MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR = 131,
+
38  MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION = 132,
+
39  MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID = 133,
+
40  MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD = 134,
+
41  MQTTREASONCODE_NOT_AUTHORIZED = 135,
+
42  MQTTREASONCODE_SERVER_UNAVAILABLE = 136,
+
43  MQTTREASONCODE_SERVER_BUSY = 137,
+
44  MQTTREASONCODE_BANNED = 138,
+
45  MQTTREASONCODE_SERVER_SHUTTING_DOWN = 139,
+
46  MQTTREASONCODE_BAD_AUTHENTICATION_METHOD = 140,
+
47  MQTTREASONCODE_KEEP_ALIVE_TIMEOUT = 141,
+
48  MQTTREASONCODE_SESSION_TAKEN_OVER = 142,
+
49  MQTTREASONCODE_TOPIC_FILTER_INVALID = 143,
+
50  MQTTREASONCODE_TOPIC_NAME_INVALID = 144,
+
51  MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE = 145,
+
52  MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND = 146,
+
53  MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED = 147,
+
54  MQTTREASONCODE_TOPIC_ALIAS_INVALID = 148,
+
55  MQTTREASONCODE_PACKET_TOO_LARGE = 149,
+
56  MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH = 150,
+
57  MQTTREASONCODE_QUOTA_EXCEEDED = 151,
+
58  MQTTREASONCODE_ADMINISTRATIVE_ACTION = 152,
+
59  MQTTREASONCODE_PAYLOAD_FORMAT_INVALID = 153,
+
60  MQTTREASONCODE_RETAIN_NOT_SUPPORTED = 154,
+
61  MQTTREASONCODE_QOS_NOT_SUPPORTED = 155,
+
62  MQTTREASONCODE_USE_ANOTHER_SERVER = 156,
+
63  MQTTREASONCODE_SERVER_MOVED = 157,
+
64  MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED = 158,
+
65  MQTTREASONCODE_CONNECTION_RATE_EXCEEDED = 159,
+
66  MQTTREASONCODE_MAXIMUM_CONNECT_TIME = 160,
+
67  MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED = 161,
+
68  MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED = 162
+
69 };
+
70 
+
77 LIBMQTT_API const char* MQTTReasonCode_toString(enum MQTTReasonCodes value);
+
78 
+
79 #endif
MQTTReasonCode_toString
const char * MQTTReasonCode_toString(enum MQTTReasonCodes value)
-
MQTTREASONCODE_RE_AUTHENTICATE
@ MQTTREASONCODE_RE_AUTHENTICATE
Definition: MQTTReasonCodes.h:47
-
MQTTREASONCODE_NOT_AUTHORIZED
@ MQTTREASONCODE_NOT_AUTHORIZED
Definition: MQTTReasonCodes.h:55
-
MQTTREASONCODE_SERVER_UNAVAILABLE
@ MQTTREASONCODE_SERVER_UNAVAILABLE
Definition: MQTTReasonCodes.h:56
-
MQTTREASONCODE_USE_ANOTHER_SERVER
@ MQTTREASONCODE_USE_ANOTHER_SERVER
Definition: MQTTReasonCodes.h:76
MQTTReasonCodes
MQTTReasonCodes
Definition: MQTTReasonCodes.h:23
-
MQTTREASONCODE_SESSION_TAKEN_OVER
@ MQTTREASONCODE_SESSION_TAKEN_OVER
Definition: MQTTReasonCodes.h:62
-
MQTTREASONCODE_PACKET_TOO_LARGE
@ MQTTREASONCODE_PACKET_TOO_LARGE
Definition: MQTTReasonCodes.h:69
-
MQTTREASONCODE_BAD_AUTHENTICATION_METHOD
@ MQTTREASONCODE_BAD_AUTHENTICATION_METHOD
Definition: MQTTReasonCodes.h:60
-
MQTTREASONCODE_QOS_NOT_SUPPORTED
@ MQTTREASONCODE_QOS_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:75
+
MQTTREASONCODE_TOPIC_FILTER_INVALID
@ MQTTREASONCODE_TOPIC_FILTER_INVALID
Definition: MQTTReasonCodes.h:49
+
MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION
@ MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION
Definition: MQTTReasonCodes.h:38
+
MQTTREASONCODE_GRANTED_QOS_1
@ MQTTREASONCODE_GRANTED_QOS_1
Definition: MQTTReasonCodes.h:27
+
MQTTREASONCODE_SERVER_SHUTTING_DOWN
@ MQTTREASONCODE_SERVER_SHUTTING_DOWN
Definition: MQTTReasonCodes.h:45
+
MQTTREASONCODE_CONTINUE_AUTHENTICATION
@ MQTTREASONCODE_CONTINUE_AUTHENTICATION
Definition: MQTTReasonCodes.h:32
+
MQTTREASONCODE_SERVER_UNAVAILABLE
@ MQTTREASONCODE_SERVER_UNAVAILABLE
Definition: MQTTReasonCodes.h:42
+
MQTTREASONCODE_PACKET_TOO_LARGE
@ MQTTREASONCODE_PACKET_TOO_LARGE
Definition: MQTTReasonCodes.h:55
+
MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS
@ MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS
Definition: MQTTReasonCodes.h:30
+
MQTTREASONCODE_UNSPECIFIED_ERROR
@ MQTTREASONCODE_UNSPECIFIED_ERROR
Definition: MQTTReasonCodes.h:34
+
MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED
@ MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:64
+
MQTTREASONCODE_MALFORMED_PACKET
@ MQTTREASONCODE_MALFORMED_PACKET
Definition: MQTTReasonCodes.h:35
+
MQTTREASONCODE_PAYLOAD_FORMAT_INVALID
@ MQTTREASONCODE_PAYLOAD_FORMAT_INVALID
Definition: MQTTReasonCodes.h:59
+
MQTTREASONCODE_NORMAL_DISCONNECTION
@ MQTTREASONCODE_NORMAL_DISCONNECTION
Definition: MQTTReasonCodes.h:25
+
MQTTREASONCODE_GRANTED_QOS_0
@ MQTTREASONCODE_GRANTED_QOS_0
Definition: MQTTReasonCodes.h:26
+
MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR
@ MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR
Definition: MQTTReasonCodes.h:37
+
MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED
@ MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED
Definition: MQTTReasonCodes.h:53
+
MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND
@ MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND
Definition: MQTTReasonCodes.h:52
+
MQTTREASONCODE_NO_SUBSCRIPTION_FOUND
@ MQTTREASONCODE_NO_SUBSCRIPTION_FOUND
Definition: MQTTReasonCodes.h:31
+
MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE
@ MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE
Definition: MQTTReasonCodes.h:29
+
MQTTREASONCODE_TOPIC_NAME_INVALID
@ MQTTREASONCODE_TOPIC_NAME_INVALID
Definition: MQTTReasonCodes.h:50
+
MQTTREASONCODE_SUCCESS
@ MQTTREASONCODE_SUCCESS
Definition: MQTTReasonCodes.h:24
+
MQTTREASONCODE_RE_AUTHENTICATE
@ MQTTREASONCODE_RE_AUTHENTICATE
Definition: MQTTReasonCodes.h:33
+
MQTTREASONCODE_MAXIMUM_CONNECT_TIME
@ MQTTREASONCODE_MAXIMUM_CONNECT_TIME
Definition: MQTTReasonCodes.h:66
+
MQTTREASONCODE_GRANTED_QOS_2
@ MQTTREASONCODE_GRANTED_QOS_2
Definition: MQTTReasonCodes.h:28
+
MQTTREASONCODE_SERVER_MOVED
@ MQTTREASONCODE_SERVER_MOVED
Definition: MQTTReasonCodes.h:63
+
MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED
@ MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:67
+
MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED
@ MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:68
+
MQTTREASONCODE_QOS_NOT_SUPPORTED
@ MQTTREASONCODE_QOS_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:61
+
MQTTREASONCODE_CONNECTION_RATE_EXCEEDED
@ MQTTREASONCODE_CONNECTION_RATE_EXCEEDED
Definition: MQTTReasonCodes.h:65
+
MQTTREASONCODE_TOPIC_ALIAS_INVALID
@ MQTTREASONCODE_TOPIC_ALIAS_INVALID
Definition: MQTTReasonCodes.h:54
+
MQTTREASONCODE_NOT_AUTHORIZED
@ MQTTREASONCODE_NOT_AUTHORIZED
Definition: MQTTReasonCodes.h:41
+
MQTTREASONCODE_QUOTA_EXCEEDED
@ MQTTREASONCODE_QUOTA_EXCEEDED
Definition: MQTTReasonCodes.h:57
+
MQTTREASONCODE_RETAIN_NOT_SUPPORTED
@ MQTTREASONCODE_RETAIN_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:60
+
MQTTREASONCODE_USE_ANOTHER_SERVER
@ MQTTREASONCODE_USE_ANOTHER_SERVER
Definition: MQTTReasonCodes.h:62
+
MQTTREASONCODE_BANNED
@ MQTTREASONCODE_BANNED
Definition: MQTTReasonCodes.h:44
+
MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID
@ MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID
Definition: MQTTReasonCodes.h:39
+
MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD
@ MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD
Definition: MQTTReasonCodes.h:40
+
MQTTREASONCODE_SESSION_TAKEN_OVER
@ MQTTREASONCODE_SESSION_TAKEN_OVER
Definition: MQTTReasonCodes.h:48
+
MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE
@ MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE
Definition: MQTTReasonCodes.h:51
+
MQTTREASONCODE_PROTOCOL_ERROR
@ MQTTREASONCODE_PROTOCOL_ERROR
Definition: MQTTReasonCodes.h:36
+
MQTTREASONCODE_ADMINISTRATIVE_ACTION
@ MQTTREASONCODE_ADMINISTRATIVE_ACTION
Definition: MQTTReasonCodes.h:58
+
MQTTREASONCODE_KEEP_ALIVE_TIMEOUT
@ MQTTREASONCODE_KEEP_ALIVE_TIMEOUT
Definition: MQTTReasonCodes.h:47
+
MQTTREASONCODE_SERVER_BUSY
@ MQTTREASONCODE_SERVER_BUSY
Definition: MQTTReasonCodes.h:43
+
MQTTREASONCODE_BAD_AUTHENTICATION_METHOD
@ MQTTREASONCODE_BAD_AUTHENTICATION_METHOD
Definition: MQTTReasonCodes.h:46
+
MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH
@ MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH
Definition: MQTTReasonCodes.h:56
+ diff --git a/docs/MQTTAsync/html/_m_q_t_t_subscribe_opts_8h.html b/docs/MQTTAsync/html/_m_q_t_t_subscribe_opts_8h.html index 30fffc9f..65082773 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_subscribe_opts_8h.html +++ b/docs/MQTTAsync/html/_m_q_t_t_subscribe_opts_8h.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTSubscribeOpts.h File Reference @@ -30,10 +30,10 @@ - + @@ -122,9 +122,7 @@ Typedefs diff --git a/docs/MQTTAsync/html/_m_q_t_t_subscribe_opts_8h_source.html b/docs/MQTTAsync/html/_m_q_t_t_subscribe_opts_8h_source.html index 70f5397f..d7de3e2e 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_subscribe_opts_8h_source.html +++ b/docs/MQTTAsync/html/_m_q_t_t_subscribe_opts_8h_source.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTSubscribeOpts.h Source File @@ -30,10 +30,10 @@ - + @@ -87,29 +87,27 @@ $(function() {
19 
21 typedef struct MQTTSubscribe_options
22 {
-
24  char struct_id[4];
-
27  int struct_version;
-
31  unsigned char noLocal;
-
36  unsigned char retainAsPublished;
-
41  unsigned char retainHandling;
-
42 } MQTTSubscribe_options;
+
24  char struct_id[4];
+
27  int struct_version;
+
31  unsigned char noLocal;
+
36  unsigned char retainAsPublished;
+
41  unsigned char retainHandling;
+
42 } MQTTSubscribe_options;
43 
44 #define MQTTSubscribe_options_initializer { {'M', 'Q', 'S', 'O'}, 0, 0, 0, 0 }
-
45 
+
45 
46 #endif
- -
MQTTSubscribe_options::struct_version
int struct_version
Definition: MQTTSubscribeOpts.h:41
MQTTSubscribe_options
struct MQTTSubscribe_options MQTTSubscribe_options
-
MQTTSubscribe_options::noLocal
unsigned char noLocal
Definition: MQTTSubscribeOpts.h:45
-
MQTTSubscribe_options::retainHandling
unsigned char retainHandling
Definition: MQTTSubscribeOpts.h:55
-
MQTTSubscribe_options
Definition: MQTTSubscribeOpts.h:21
-
MQTTSubscribe_options::retainAsPublished
unsigned char retainAsPublished
Definition: MQTTSubscribeOpts.h:50
-
MQTTSubscribe_options::struct_id
char struct_id[4]
Definition: MQTTSubscribeOpts.h:38
+
MQTTSubscribe_options
Definition: MQTTSubscribeOpts.h:22
+
MQTTSubscribe_options::struct_version
int struct_version
Definition: MQTTSubscribeOpts.h:27
+
MQTTSubscribe_options::retainHandling
unsigned char retainHandling
Definition: MQTTSubscribeOpts.h:41
+
MQTTSubscribe_options::retainAsPublished
unsigned char retainAsPublished
Definition: MQTTSubscribeOpts.h:36
+
MQTTSubscribe_options::struct_id
char struct_id[4]
Definition: MQTTSubscribeOpts.h:24
+
MQTTSubscribe_options::noLocal
unsigned char noLocal
Definition: MQTTSubscribeOpts.h:31
+ diff --git a/docs/MQTTAsync/html/annotated.html b/docs/MQTTAsync/html/annotated.html index 47b0f525..1842ea81 100644 --- a/docs/MQTTAsync/html/annotated.html +++ b/docs/MQTTAsync/html/annotated.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Data Structures @@ -30,10 +30,10 @@ - + @@ -92,9 +92,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/async.html b/docs/MQTTAsync/html/async.html index 14b45306..dbe818dd 100644 --- a/docs/MQTTAsync/html/async.html +++ b/docs/MQTTAsync/html/async.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Threading @@ -30,10 +30,10 @@ - + @@ -71,9 +71,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/auto_reconnect.html b/docs/MQTTAsync/html/auto_reconnect.html index 6dc40e0d..9e59c916 100644 --- a/docs/MQTTAsync/html/auto_reconnect.html +++ b/docs/MQTTAsync/html/auto_reconnect.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Automatic Reconnect @@ -30,10 +30,10 @@ - + @@ -73,9 +73,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/callbacks.html b/docs/MQTTAsync/html/callbacks.html index 44253109..457a2643 100644 --- a/docs/MQTTAsync/html/callbacks.html +++ b/docs/MQTTAsync/html/callbacks.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Callbacks @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/classes.html b/docs/MQTTAsync/html/classes.html index c3c45725..5a3e4315 100644 --- a/docs/MQTTAsync/html/classes.html +++ b/docs/MQTTAsync/html/classes.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Data Structure Index @@ -30,10 +30,10 @@ - + @@ -66,43 +66,16 @@ $(function() {
Data Structure Index
-
m
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
  m  
-
MQTTAsync_disconnectOptions   MQTTAsync_nameValue   MQTTAsync_willOptions   MQTTSubscribe_options   
MQTTAsync_failureData   MQTTAsync_responseOptions   MQTTClient_persistence   
MQTTAsync_connectData   MQTTAsync_failureData5   MQTTAsync_SSLOptions   MQTTLenString   
MQTTAsync_connectOptions   MQTTAsync_init_options   MQTTAsync_successData   MQTTProperties   
MQTTAsync_createOptions   MQTTAsync_message   MQTTAsync_successData5   MQTTProperty   
-
m
+
M
+
+
+
M
+
MQTTAsync_connectData
MQTTAsync_connectOptions
MQTTAsync_createOptions
MQTTAsync_disconnectOptions
MQTTAsync_failureData
MQTTAsync_failureData5
MQTTAsync_init_options
MQTTAsync_message
MQTTAsync_nameValue
MQTTAsync_responseOptions
MQTTAsync_SSLOptions
MQTTAsync_successData
MQTTAsync_successData5
MQTTAsync_willOptions
MQTTClient_persistence
MQTTLenString
MQTTProperties
MQTTProperty
MQTTSubscribe_options
+
diff --git a/docs/MQTTAsync/html/doxygen.css b/docs/MQTTAsync/html/doxygen.css index 73ecbb2c..ffbff022 100644 --- a/docs/MQTTAsync/html/doxygen.css +++ b/docs/MQTTAsync/html/doxygen.css @@ -1,4 +1,4 @@ -/* The standard CSS for doxygen 1.8.17 */ +/* The standard CSS for doxygen 1.9.1 */ body, table, div, p, dl { font: 400 14px/22px Roboto,sans-serif; @@ -66,7 +66,7 @@ p.startli, p.startdd { margin-top: 2px; } -th p.starttd, p.intertd, p.endtd { +th p.starttd, th p.intertd, th p.endtd { font-size: 100%; font-weight: 700; } @@ -103,30 +103,96 @@ caption { } span.legend { - font-size: 70%; - text-align: center; -} - -h3.version { - font-size: 90%; - text-align: center; -} - -div.qindex, div.navtab{ - background-color: #EBEFF6; - border: 1px solid #A3B4D7; + font-size: 70%; text-align: center; } -div.qindex, div.navpath { - width: 100%; - line-height: 140%; +h3.version { + font-size: 90%; + text-align: center; } div.navtab { - margin-right: 15px; + border-right: 1px solid #A3B4D7; + padding-right: 15px; + text-align: right; + line-height: 110%; } +div.navtab table { + border-spacing: 0; +} + +td.navtab { + padding-right: 6px; + padding-left: 6px; +} +td.navtabHL { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL a, td.navtabHL a:visited { + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +a.navtab { + font-weight: bold; +} + +div.qindex{ + text-align: center; + width: 100%; + line-height: 140%; + font-size: 130%; + color: #A0A0A0; +} + +dt.alphachar{ + font-size: 180%; + font-weight: bold; +} + +.alphachar a{ + color: black; +} + +.alphachar a:hover, .alphachar a:visited{ + text-decoration: none; +} + +.classindex dl { + padding: 25px; + column-count:1 +} + +.classindex dd { + display:inline-block; + margin-left: 50px; + width: 90%; + line-height: 1.15em; +} + +.classindex dl.odd { + background-color: #F8F9FC; +} + +@media(min-width: 1120px) { + .classindex dl { + column-count:2 + } +} + +@media(min-width: 1320px) { + .classindex dl { + column-count:3 + } +} + + /* @group Link Styling */ a { @@ -143,17 +209,6 @@ a:hover { text-decoration: underline; } -a.qindex { - font-weight: bold; -} - -a.qindexHL { - font-weight: bold; - background-color: #9CAFD4; - color: #FFFFFF; - border: 1px double #869DCA; -} - .contents a.qindexHL:visited { color: #FFFFFF; } @@ -1358,10 +1413,12 @@ dl.citelist dt { font-weight:bold; margin-right:10px; padding:5px; + text-align:right; + width:52px; } dl.citelist dd { - margin:2px 0; + margin:2px 0 2px 72px; padding:5px 0; } @@ -1424,6 +1481,12 @@ div.toc li.level4 { margin-left: 45px; } +span.emoji { + /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html + * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort; + */ +} + .PageDocRTL-title div.toc li.level1 { margin-left: 0 !important; margin-right: 0; @@ -1661,47 +1724,6 @@ tr.heading h2 { /* @group Markdown */ -/* -table.markdownTable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.markdownTable td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.markdownTableHead tr { -} - -table.markdownTableBodyLeft td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -th.markdownTableHeadLeft th.markdownTableHeadRight th.markdownTableHeadCenter th.markdownTableHeadNone { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -th.markdownTableHeadLeft { - text-align: left -} - -th.markdownTableHeadRight { - text-align: right -} - -th.markdownTableHeadCenter { - text-align: center -} -*/ - table.markdownTable { border-collapse:collapse; margin-top: 4px; diff --git a/docs/MQTTAsync/html/doxygen.png b/docs/MQTTAsync/html/doxygen.png deleted file mode 100644 index 3ff17d80..00000000 Binary files a/docs/MQTTAsync/html/doxygen.png and /dev/null differ diff --git a/docs/MQTTAsync/html/doxygen.svg b/docs/MQTTAsync/html/doxygen.svg new file mode 100644 index 00000000..d42dad52 --- /dev/null +++ b/docs/MQTTAsync/html/doxygen.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/MQTTAsync/html/dynsections.js b/docs/MQTTAsync/html/dynsections.js index ea0a7b39..3174bd7b 100644 --- a/docs/MQTTAsync/html/dynsections.js +++ b/docs/MQTTAsync/html/dynsections.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function toggleVisibility(linkObj) { diff --git a/docs/MQTTAsync/html/files.html b/docs/MQTTAsync/html/files.html index 9689ac0f..014b3ca4 100644 --- a/docs/MQTTAsync/html/files.html +++ b/docs/MQTTAsync/html/files.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: File List @@ -30,10 +30,10 @@ - + @@ -78,9 +78,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/functions.html b/docs/MQTTAsync/html/functions.html index e6f1414e..263b0955 100644 --- a/docs/MQTTAsync/html/functions.html +++ b/docs/MQTTAsync/html/functions.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Data Fields @@ -30,10 +30,10 @@ - + @@ -415,13 +415,13 @@ $(function() { : MQTTAsync_connectOptions
  • ssl_error_cb -: MQTTAsync_SSLOptions +: MQTTAsync_SSLOptions
  • ssl_error_context : MQTTAsync_SSLOptions
  • ssl_psk_cb -: MQTTAsync_SSLOptions +: MQTTAsync_SSLOptions
  • ssl_psk_context : MQTTAsync_SSLOptions @@ -525,9 +525,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/functions_vars.html b/docs/MQTTAsync/html/functions_vars.html index f4c94ea5..cdfcae64 100644 --- a/docs/MQTTAsync/html/functions_vars.html +++ b/docs/MQTTAsync/html/functions_vars.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -415,13 +415,13 @@ $(function() { : MQTTAsync_connectOptions
  • ssl_error_cb -: MQTTAsync_SSLOptions +: MQTTAsync_SSLOptions
  • ssl_error_context : MQTTAsync_SSLOptions
  • ssl_psk_cb -: MQTTAsync_SSLOptions +: MQTTAsync_SSLOptions
  • ssl_psk_context : MQTTAsync_SSLOptions @@ -525,9 +525,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals.html b/docs/MQTTAsync/html/globals.html index 461b5cf0..2df76347 100644 --- a/docs/MQTTAsync/html/globals.html +++ b/docs/MQTTAsync/html/globals.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -158,12 +158,12 @@ $(function() {
  • MQTTAsync_disconnect() : MQTTAsync.h
  • -
  • MQTTAsync_disconnected -: MQTTAsync.h -
  • MQTTASYNC_DISCONNECTED : MQTTAsync.h
  • +
  • MQTTAsync_disconnected +: MQTTAsync.h +
  • MQTTAsync_disconnectOptions_initializer : MQTTAsync.h
  • @@ -702,9 +702,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_defs.html b/docs/MQTTAsync/html/globals_defs.html index c940203f..59f8f6e4 100644 --- a/docs/MQTTAsync/html/globals_defs.html +++ b/docs/MQTTAsync/html/globals_defs.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -231,9 +231,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_enum.html b/docs/MQTTAsync/html/globals_enum.html index 9891984e..b6490b9e 100644 --- a/docs/MQTTAsync/html/globals_enum.html +++ b/docs/MQTTAsync/html/globals_enum.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -79,9 +79,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_eval.html b/docs/MQTTAsync/html/globals_eval.html index a2f633fb..8db81cb5 100644 --- a/docs/MQTTAsync/html/globals_eval.html +++ b/docs/MQTTAsync/html/globals_eval.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -327,9 +327,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_func.html b/docs/MQTTAsync/html/globals_func.html index 96ca1921..18288eb4 100644 --- a/docs/MQTTAsync/html/globals_func.html +++ b/docs/MQTTAsync/html/globals_func.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -213,9 +213,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_p.html b/docs/MQTTAsync/html/globals_p.html index dceed421..a8e60d76 100644 --- a/docs/MQTTAsync/html/globals_p.html +++ b/docs/MQTTAsync/html/globals_p.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -93,9 +93,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_type.html b/docs/MQTTAsync/html/globals_type.html index 98dbd6dc..63d8aa82 100644 --- a/docs/MQTTAsync/html/globals_type.html +++ b/docs/MQTTAsync/html/globals_type.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -148,9 +148,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/index.html b/docs/MQTTAsync/html/index.html index 6b949b3a..ec437fd2 100644 --- a/docs/MQTTAsync/html/index.html +++ b/docs/MQTTAsync/html/index.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Asynchronous MQTT client library for C (MQTTAsync) @@ -30,10 +30,10 @@ - + @@ -66,7 +66,7 @@ $(function() {
    Asynchronous MQTT client library for C (MQTTAsync)
    -

    An Asynchronous MQTT client library for C.© Copyright 2009, 2022 IBM Corp., Ian Craggs and others

    +

    An Asynchronous MQTT client library for C.© Copyright 2009, 2023 IBM Corp., Ian Craggs and others

    An MQTT client application connects to MQTT-capable servers. A typical client is responsible for collecting information from a telemetry device and publishing the information to the server. It can also subscribe to topics, receive messages, and use this information to control the telemetry device.

    MQTT clients implement the published MQTT v3 protocol. You can write your own API to the MQTT protocol using the programming language and platform of your choice. This can be time-consuming and error-prone.

    To simplify writing MQTT client applications, this library encapsulates the MQTT v3 protocol for you. Using this library enables a fully functional MQTT client application to be written in a few lines of code. The information presented here documents the API provided by the Asynchronous MQTT Client library for C.

    @@ -119,9 +119,7 @@ Free any memory being used by the client
    diff --git a/docs/MQTTAsync/html/menu.js b/docs/MQTTAsync/html/menu.js index 433c15b8..2fe2214f 100644 --- a/docs/MQTTAsync/html/menu.js +++ b/docs/MQTTAsync/html/menu.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { function makeTree(data,relPath) { @@ -40,9 +41,9 @@ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); if (searchEnabled) { if (serverSide) { - $('#main-menu').append('
  • '); + $('#main-menu').append('
  • '); } else { - $('#main-menu').append('
  • '); + $('#main-menu').append('
  • '); } } $('#main-menu').smartmenus(); diff --git a/docs/MQTTAsync/html/menudata.js b/docs/MQTTAsync/html/menudata.js index 8ba4f04c..051e3d17 100644 --- a/docs/MQTTAsync/html/menudata.js +++ b/docs/MQTTAsync/html/menudata.js @@ -1,24 +1,26 @@ /* -@licstart The following is the entire license notice for the -JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. -Copyright (C) 1997-2019 by Dimitri van Heesch + The MIT License (MIT) -This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as published by -the Free Software Foundation + Copyright (C) 1997-2020 by Dimitri van Heesch -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: -You should have received a copy of the GNU General Public License along -with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. -@licend The above is the entire license notice -for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ var menudata={children:[ {text:"Main Page",url:"index.html"}, diff --git a/docs/MQTTAsync/html/offline_publish.html b/docs/MQTTAsync/html/offline_publish.html index 12a592e0..dadb7251 100644 --- a/docs/MQTTAsync/html/offline_publish.html +++ b/docs/MQTTAsync/html/offline_publish.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Publish While Disconnected @@ -30,10 +30,10 @@
    - + @@ -73,9 +73,7 @@ $(function() {
    diff --git a/docs/MQTTAsync/html/pages.html b/docs/MQTTAsync/html/pages.html index f262bb12..f7a21f2f 100644 --- a/docs/MQTTAsync/html/pages.html +++ b/docs/MQTTAsync/html/pages.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Related Pages @@ -30,10 +30,10 @@ - + @@ -82,9 +82,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/publish.html b/docs/MQTTAsync/html/publish.html index 5d116a9a..734fb010 100644 --- a/docs/MQTTAsync/html/publish.html +++ b/docs/MQTTAsync/html/publish.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Publication example @@ -30,10 +30,10 @@ - + @@ -233,51 +233,49 @@ $(function() {
    MQTTAsync_destroy(&client);
    return rc;
    }
    - - -
    MQTTAsync_responseOptions::context
    void * context
    Definition: MQTTAsync.h:732
    -
    MQTTAsync_message_initializer
    #define MQTTAsync_message_initializer
    Definition: MQTTAsync.h:334
    -
    MQTTAsync_responseOptions_initializer
    #define MQTTAsync_responseOptions_initializer
    Definition: MQTTAsync.h:771
    -
    MQTTAsync
    void * MQTTAsync
    Definition: MQTTAsync.h:253
    -
    MQTTAsync_message::retained
    int retained
    Definition: MQTTAsync.h:314
    -
    MQTTAsync_setCallbacks
    int MQTTAsync_setCallbacks(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl, MQTTAsync_messageArrived *ma, MQTTAsync_deliveryComplete *dc)
    -
    MQTTAsync_sendMessage
    int MQTTAsync_sendMessage(MQTTAsync handle, const char *destinationName, const MQTTAsync_message *msg, MQTTAsync_responseOptions *response)
    -
    MQTTAsync_failureData::token
    MQTTAsync_token token
    Definition: MQTTAsync.h:538
    -
    MQTTAsync_disconnect
    int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions *options)
    -
    MQTTCLIENT_PERSISTENCE_NONE
    #define MQTTCLIENT_PERSISTENCE_NONE
    Definition: MQTTClientPersistence.h:74
    -
    MQTTAsync_message::payloadlen
    int payloadlen
    Definition: MQTTAsync.h:279
    -
    MQTTAsync_destroy
    void MQTTAsync_destroy(MQTTAsync *handle)
    -
    MQTTAsync_successData
    Definition: MQTTAsync.h:570
    -
    MQTTAsync_disconnectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1443
    -
    MQTTASYNC_SUCCESS
    #define MQTTASYNC_SUCCESS
    Definition: MQTTAsync.h:113
    -
    MQTTAsync_disconnectOptions::context
    void * context
    Definition: MQTTAsync.h:1455
    -
    MQTTAsync_responseOptions
    Definition: MQTTAsync.h:708
    -
    MQTTAsync_create
    int MQTTAsync_create(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    -
    MQTTAsync_disconnectOptions_initializer
    #define MQTTAsync_disconnectOptions_initializer
    Definition: MQTTAsync.h:1478
    -
    MQTTAsync_connectOptions::keepAliveInterval
    int keepAliveInterval
    Definition: MQTTAsync.h:1223
    -
    MQTTAsync_message::qos
    int qos
    Definition: MQTTAsync.h:295
    -
    MQTTAsync_message::payload
    void * payload
    Definition: MQTTAsync.h:281
    -
    MQTTAsync_connect
    int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
    -
    MQTTAsync_message
    Definition: MQTTAsync.h:271
    -
    MQTTAsync_responseOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:726
    -
    MQTTAsync_connectOptions
    Definition: MQTTAsync.h:1198
    -
    MQTTAsync_failureData
    Definition: MQTTAsync.h:535
    -
    MQTTAsync_responseOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:720
    -
    MQTTAsync_failureData::code
    int code
    Definition: MQTTAsync.h:540
    -
    MQTTAsync_disconnectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1449
    -
    MQTTAsync_disconnectOptions
    Definition: MQTTAsync.h:1427
    -
    MQTTAsync_connectOptions_initializer
    #define MQTTAsync_connectOptions_initializer
    Definition: MQTTAsync.h:1384
    MQTTAsync.h
    -
    MQTTAsync_successData::token
    MQTTAsync_token token
    Definition: MQTTAsync.h:573
    +
    MQTTAsync_connect
    int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
    +
    MQTTAsync
    void * MQTTAsync
    Definition: MQTTAsync.h:253
    +
    MQTTAsync_disconnectOptions_initializer
    #define MQTTAsync_disconnectOptions_initializer
    Definition: MQTTAsync.h:1478
    +
    MQTTAsync_responseOptions_initializer
    #define MQTTAsync_responseOptions_initializer
    Definition: MQTTAsync.h:771
    +
    MQTTAsync_create
    int MQTTAsync_create(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    +
    MQTTAsync_sendMessage
    int MQTTAsync_sendMessage(MQTTAsync handle, const char *destinationName, const MQTTAsync_message *msg, MQTTAsync_responseOptions *response)
    +
    MQTTAsync_message_initializer
    #define MQTTAsync_message_initializer
    Definition: MQTTAsync.h:334
    +
    MQTTAsync_destroy
    void MQTTAsync_destroy(MQTTAsync *handle)
    +
    MQTTAsync_disconnect
    int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions *options)
    +
    MQTTAsync_connectOptions_initializer
    #define MQTTAsync_connectOptions_initializer
    Definition: MQTTAsync.h:1384
    +
    MQTTAsync_setCallbacks
    int MQTTAsync_setCallbacks(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl, MQTTAsync_messageArrived *ma, MQTTAsync_deliveryComplete *dc)
    +
    MQTTASYNC_SUCCESS
    #define MQTTASYNC_SUCCESS
    Definition: MQTTAsync.h:113
    +
    MQTTCLIENT_PERSISTENCE_NONE
    #define MQTTCLIENT_PERSISTENCE_NONE
    Definition: MQTTClientPersistence.h:74
    +
    MQTTAsync_connectOptions
    Definition: MQTTAsync.h:1199
    MQTTAsync_connectOptions::cleansession
    int cleansession
    Definition: MQTTAsync.h:1245
    -
    MQTTAsync_connectOptions::context
    void * context
    Definition: MQTTAsync.h:1302
    MQTTAsync_connectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1296
    MQTTAsync_connectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1290
    +
    MQTTAsync_connectOptions::keepAliveInterval
    int keepAliveInterval
    Definition: MQTTAsync.h:1223
    +
    MQTTAsync_connectOptions::context
    void * context
    Definition: MQTTAsync.h:1302
    +
    MQTTAsync_disconnectOptions
    Definition: MQTTAsync.h:1428
    +
    MQTTAsync_disconnectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1449
    +
    MQTTAsync_disconnectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1443
    +
    MQTTAsync_disconnectOptions::context
    void * context
    Definition: MQTTAsync.h:1455
    +
    MQTTAsync_failureData
    Definition: MQTTAsync.h:536
    +
    MQTTAsync_failureData::code
    int code
    Definition: MQTTAsync.h:540
    +
    MQTTAsync_failureData::token
    MQTTAsync_token token
    Definition: MQTTAsync.h:538
    +
    MQTTAsync_message
    Definition: MQTTAsync.h:272
    +
    MQTTAsync_message::qos
    int qos
    Definition: MQTTAsync.h:295
    +
    MQTTAsync_message::retained
    int retained
    Definition: MQTTAsync.h:314
    +
    MQTTAsync_message::payload
    void * payload
    Definition: MQTTAsync.h:281
    +
    MQTTAsync_message::payloadlen
    int payloadlen
    Definition: MQTTAsync.h:279
    +
    MQTTAsync_responseOptions
    Definition: MQTTAsync.h:709
    +
    MQTTAsync_responseOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:726
    +
    MQTTAsync_responseOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:720
    +
    MQTTAsync_responseOptions::context
    void * context
    Definition: MQTTAsync.h:732
    +
    MQTTAsync_successData
    Definition: MQTTAsync.h:571
    +
    MQTTAsync_successData::token
    MQTTAsync_token token
    Definition: MQTTAsync.h:573
    + + diff --git a/docs/MQTTAsync/html/qos.html b/docs/MQTTAsync/html/qos.html index 6ae01d13..edde61df 100644 --- a/docs/MQTTAsync/html/qos.html +++ b/docs/MQTTAsync/html/qos.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Quality of service @@ -30,10 +30,10 @@ - + @@ -78,9 +78,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/search/all_0.html b/docs/MQTTAsync/html/search/all_0.html index 26dd244f..1ec5b2d5 100644 --- a/docs/MQTTAsync/html/search/all_0.html +++ b/docs/MQTTAsync/html/search/all_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_0.js b/docs/MQTTAsync/html/search/all_0.js index ef5d93ba..61c9699e 100644 --- a/docs/MQTTAsync/html/search/all_0.js +++ b/docs/MQTTAsync/html/search/all_0.js @@ -3,7 +3,7 @@ var searchData= ['allowdisconnectedsendatanytime_0',['allowDisconnectedSendAtAnyTime',['../struct_m_q_t_t_async__create_options.html#abe7fdbe18bfd3577a75d3b386d69406c',1,'MQTTAsync_createOptions']]], ['alt_1',['alt',['../struct_m_q_t_t_async__success_data.html#afbc1fee4467369fefa30cb07047fca14',1,'MQTTAsync_successData::alt()'],['../struct_m_q_t_t_async__success_data5.html#a4bde812772718b8051b0d6e2000a5f5c',1,'MQTTAsync_successData5::alt()']]], ['array_2',['array',['../struct_m_q_t_t_properties.html#a3ac4c38b423393c1553dcf8b71e7dd58',1,'MQTTProperties']]], - ['automatic_20reconnect_3',['Automatic Reconnect',['../auto_reconnect.html',1,'']]], - ['automaticreconnect_4',['automaticReconnect',['../struct_m_q_t_t_async__connect_options.html#a7902ce4d11b96d8b19582bdd1f82b630',1,'MQTTAsync_connectOptions']]], - ['asynchronous_20mqtt_20client_20library_20for_20c_20_28mqttasync_29_5',['Asynchronous MQTT client library for C (MQTTAsync)',['../index.html',1,'']]] + ['asynchronous_20mqtt_20client_20library_20for_20c_20_28mqttasync_29_3',['Asynchronous MQTT client library for C (MQTTAsync)',['../index.html',1,'']]], + ['automatic_20reconnect_4',['Automatic Reconnect',['../auto_reconnect.html',1,'']]], + ['automaticreconnect_5',['automaticReconnect',['../struct_m_q_t_t_async__connect_options.html#a7902ce4d11b96d8b19582bdd1f82b630',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/all_1.html b/docs/MQTTAsync/html/search/all_1.html index 8eb215b9..9f80e904 100644 --- a/docs/MQTTAsync/html/search/all_1.html +++ b/docs/MQTTAsync/html/search/all_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_10.html b/docs/MQTTAsync/html/search/all_10.html index 6fd3a4aa..3bf11961 100644 --- a/docs/MQTTAsync/html/search/all_10.html +++ b/docs/MQTTAsync/html/search/all_10.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_10.js b/docs/MQTTAsync/html/search/all_10.js index a49c1203..7d245953 100644 --- a/docs/MQTTAsync/html/search/all_10.js +++ b/docs/MQTTAsync/html/search/all_10.js @@ -1,9 +1,9 @@ var searchData= [ - ['threading_339',['Threading',['../async.html',1,'']]], - ['timeout_340',['timeout',['../struct_m_q_t_t_async__disconnect_options.html#a493b57f443cc38b3d3df9c1e584d9d82',1,'MQTTAsync_disconnectOptions']]], - ['token_341',['token',['../struct_m_q_t_t_async__failure_data.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_failureData::token()'],['../struct_m_q_t_t_async__failure_data5.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_failureData5::token()'],['../struct_m_q_t_t_async__success_data.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_successData::token()'],['../struct_m_q_t_t_async__success_data5.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_successData5::token()'],['../struct_m_q_t_t_async__response_options.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_responseOptions::token()']]], - ['topicname_342',['topicName',['../struct_m_q_t_t_async__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTAsync_willOptions']]], - ['tracing_343',['Tracing',['../tracing.html',1,'']]], - ['truststore_344',['trustStore',['../struct_m_q_t_t_async___s_s_l_options.html#a032835d4c4a1c1e19b53c330a673a6e0',1,'MQTTAsync_SSLOptions']]] + ['threading_341',['Threading',['../async.html',1,'']]], + ['timeout_342',['timeout',['../struct_m_q_t_t_async__disconnect_options.html#a493b57f443cc38b3d3df9c1e584d9d82',1,'MQTTAsync_disconnectOptions']]], + ['token_343',['token',['../struct_m_q_t_t_async__failure_data.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_failureData::token()'],['../struct_m_q_t_t_async__failure_data5.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_failureData5::token()'],['../struct_m_q_t_t_async__success_data.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_successData::token()'],['../struct_m_q_t_t_async__success_data5.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_successData5::token()'],['../struct_m_q_t_t_async__response_options.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_responseOptions::token()']]], + ['topicname_344',['topicName',['../struct_m_q_t_t_async__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTAsync_willOptions']]], + ['tracing_345',['Tracing',['../tracing.html',1,'']]], + ['truststore_346',['trustStore',['../struct_m_q_t_t_async___s_s_l_options.html#a032835d4c4a1c1e19b53c330a673a6e0',1,'MQTTAsync_SSLOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/all_11.html b/docs/MQTTAsync/html/search/all_11.html index f78343b9..c9f79d28 100644 --- a/docs/MQTTAsync/html/search/all_11.html +++ b/docs/MQTTAsync/html/search/all_11.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_11.js b/docs/MQTTAsync/html/search/all_11.js index 9eedfc92..5a1950f1 100644 --- a/docs/MQTTAsync/html/search/all_11.js +++ b/docs/MQTTAsync/html/search/all_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['unsub_345',['unsub',['../struct_m_q_t_t_async__success_data5.html#a46b20b320d6951e567ebf678ea4ac1a3',1,'MQTTAsync_successData5']]], - ['username_346',['username',['../struct_m_q_t_t_async__connect_data.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTAsync_connectData::username()'],['../struct_m_q_t_t_async__connect_options.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTAsync_connectOptions::username()']]] + ['unsub_347',['unsub',['../struct_m_q_t_t_async__success_data5.html#a46b20b320d6951e567ebf678ea4ac1a3',1,'MQTTAsync_successData5']]], + ['username_348',['username',['../struct_m_q_t_t_async__connect_data.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTAsync_connectData::username()'],['../struct_m_q_t_t_async__connect_options.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTAsync_connectOptions::username()']]] ]; diff --git a/docs/MQTTAsync/html/search/all_12.html b/docs/MQTTAsync/html/search/all_12.html index dd9ff1d5..ab934722 100644 --- a/docs/MQTTAsync/html/search/all_12.html +++ b/docs/MQTTAsync/html/search/all_12.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_12.js b/docs/MQTTAsync/html/search/all_12.js index 4c2b0666..b1b9556d 100644 --- a/docs/MQTTAsync/html/search/all_12.js +++ b/docs/MQTTAsync/html/search/all_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['value_347',['value',['../struct_m_q_t_t_async__name_value.html#a8556878012feffc9e0beb86cd78f424d',1,'MQTTAsync_nameValue::value()'],['../struct_m_q_t_t_property.html#a09e85ff5ad73824d6c2edc1ce4283a17',1,'MQTTProperty::value()'],['../struct_m_q_t_t_property.html#af2307539b97777bec0475619af5648f1',1,'MQTTProperty::value()']]], - ['verify_348',['verify',['../struct_m_q_t_t_async___s_s_l_options.html#a94900629685d5ed08f66fd2931f573ce',1,'MQTTAsync_SSLOptions']]] + ['value_349',['value',['../struct_m_q_t_t_async__name_value.html#a8556878012feffc9e0beb86cd78f424d',1,'MQTTAsync_nameValue::value()'],['../struct_m_q_t_t_property.html#a09e85ff5ad73824d6c2edc1ce4283a17',1,'MQTTProperty::value()'],['../struct_m_q_t_t_property.html#af2307539b97777bec0475619af5648f1',1,'MQTTProperty::value()']]], + ['verify_350',['verify',['../struct_m_q_t_t_async___s_s_l_options.html#a94900629685d5ed08f66fd2931f573ce',1,'MQTTAsync_SSLOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/all_13.html b/docs/MQTTAsync/html/search/all_13.html index 2611a100..51172c2f 100644 --- a/docs/MQTTAsync/html/search/all_13.html +++ b/docs/MQTTAsync/html/search/all_13.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_13.js b/docs/MQTTAsync/html/search/all_13.js index 2aeeac0b..8c02a193 100644 --- a/docs/MQTTAsync/html/search/all_13.js +++ b/docs/MQTTAsync/html/search/all_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['will_349',['will',['../struct_m_q_t_t_async__connect_options.html#a7a9c5105542460d6fd9323facca66648',1,'MQTTAsync_connectOptions']]], - ['willproperties_350',['willProperties',['../struct_m_q_t_t_async__connect_options.html#ac31f13e964ffb7e3696caef47ecc0641',1,'MQTTAsync_connectOptions']]] + ['will_351',['will',['../struct_m_q_t_t_async__connect_options.html#a7a9c5105542460d6fd9323facca66648',1,'MQTTAsync_connectOptions']]], + ['willproperties_352',['willProperties',['../struct_m_q_t_t_async__connect_options.html#ac31f13e964ffb7e3696caef47ecc0641',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/all_2.html b/docs/MQTTAsync/html/search/all_2.html index b26d9165..02cfffc2 100644 --- a/docs/MQTTAsync/html/search/all_2.html +++ b/docs/MQTTAsync/html/search/all_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_3.html b/docs/MQTTAsync/html/search/all_3.html index b61b96f8..39767b85 100644 --- a/docs/MQTTAsync/html/search/all_3.html +++ b/docs/MQTTAsync/html/search/all_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_4.html b/docs/MQTTAsync/html/search/all_4.html index 06de1550..fc40463c 100644 --- a/docs/MQTTAsync/html/search/all_4.html +++ b/docs/MQTTAsync/html/search/all_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_5.html b/docs/MQTTAsync/html/search/all_5.html index 2544c4e5..9dd9344b 100644 --- a/docs/MQTTAsync/html/search/all_5.html +++ b/docs/MQTTAsync/html/search/all_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_6.html b/docs/MQTTAsync/html/search/all_6.html index 43f14eab..f1e516d7 100644 --- a/docs/MQTTAsync/html/search/all_6.html +++ b/docs/MQTTAsync/html/search/all_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_7.html b/docs/MQTTAsync/html/search/all_7.html index af52f82a..8ddbf6c8 100644 --- a/docs/MQTTAsync/html/search/all_7.html +++ b/docs/MQTTAsync/html/search/all_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_8.html b/docs/MQTTAsync/html/search/all_8.html index cf2b5df9..83c55ae2 100644 --- a/docs/MQTTAsync/html/search/all_8.html +++ b/docs/MQTTAsync/html/search/all_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_9.html b/docs/MQTTAsync/html/search/all_9.html index 690785a5..1e263c13 100644 --- a/docs/MQTTAsync/html/search/all_9.html +++ b/docs/MQTTAsync/html/search/all_9.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_9.js b/docs/MQTTAsync/html/search/all_9.js index 723cb943..f192104c 100644 --- a/docs/MQTTAsync/html/search/all_9.js +++ b/docs/MQTTAsync/html/search/all_9.js @@ -4,7 +4,7 @@ var searchData= ['maxbufferedmessages_37',['maxBufferedMessages',['../struct_m_q_t_t_async__create_options.html#a3b74acf6f315bb5fe36266bc9647ee97',1,'MQTTAsync_createOptions']]], ['maxinflight_38',['maxInflight',['../struct_m_q_t_t_async__connect_options.html#a5c9d6c557453232a1b25cbbec5a31e8c',1,'MQTTAsync_connectOptions']]], ['maxretryinterval_39',['maxRetryInterval',['../struct_m_q_t_t_async__connect_options.html#a035ba380dd97a284db04f4eaae5e113b',1,'MQTTAsync_connectOptions']]], - ['message_40',['message',['../struct_m_q_t_t_async__failure_data.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_failureData::message()'],['../struct_m_q_t_t_async__failure_data5.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_failureData5::message()'],['../struct_m_q_t_t_async__success_data.html#a6ed8403758cecd2f762af6ba5e0ae525',1,'MQTTAsync_successData::message()'],['../struct_m_q_t_t_async__success_data5.html#a6ed8403758cecd2f762af6ba5e0ae525',1,'MQTTAsync_successData5::message()'],['../struct_m_q_t_t_async__will_options.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_willOptions::message()']]], + ['message_40',['message',['../struct_m_q_t_t_async__will_options.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_willOptions::message()'],['../struct_m_q_t_t_async__success_data5.html#a6ed8403758cecd2f762af6ba5e0ae525',1,'MQTTAsync_successData5::message()'],['../struct_m_q_t_t_async__success_data.html#a6ed8403758cecd2f762af6ba5e0ae525',1,'MQTTAsync_successData::message()'],['../struct_m_q_t_t_async__failure_data5.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_failureData5::message()'],['../struct_m_q_t_t_async__failure_data.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_failureData::message()']]], ['minretryinterval_41',['minRetryInterval',['../struct_m_q_t_t_async__connect_options.html#a166ac1b967f09326b0187f66be3e69af',1,'MQTTAsync_connectOptions']]], ['mqtt_5fbad_5fsubscribe_42',['MQTT_BAD_SUBSCRIBE',['../_m_q_t_t_async_8h.html#ade337b363b7f4bc7c1a7b2858e0380bd',1,'MQTTAsync.h']]], ['mqtt_5finvalid_5fproperty_5fid_43',['MQTT_INVALID_PROPERTY_ID',['../_m_q_t_t_properties_8h.html#afc56d2e8937a0c8f180d68ad93945945',1,'MQTTProperties.h']]], @@ -41,202 +41,203 @@ var searchData= ['mqttasync_5fdeliverycomplete_74',['MQTTAsync_deliveryComplete',['../_m_q_t_t_async_8h.html#ab10296618e266b3c02fd117d6616b15d',1,'MQTTAsync.h']]], ['mqttasync_5fdestroy_75',['MQTTAsync_destroy',['../_m_q_t_t_async_8h.html#ad5562f9dc71fbd93d25ad20b328cb887',1,'MQTTAsync.h']]], ['mqttasync_5fdisconnect_76',['MQTTAsync_disconnect',['../_m_q_t_t_async_8h.html#adc69afa4725f8321bdaa5a05aec5cfd5',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnected_77',['MQTTAsync_disconnected',['../_m_q_t_t_async_8h.html#a52a1d9ab6e5d5064a3de42d0eec88f57',1,'MQTTAsync_disconnected(): MQTTAsync.h'],['../_m_q_t_t_async_8h.html#a66c0f30b329bc770145c2f04b3929df6',1,'MQTTASYNC_DISCONNECTED(): MQTTAsync.h']]], - ['mqttasync_5fdisconnectoptions_78',['MQTTAsync_disconnectOptions',['../struct_m_q_t_t_async__disconnect_options.html',1,'']]], - ['mqttasync_5fdisconnectoptions_5finitializer_79',['MQTTAsync_disconnectOptions_initializer',['../_m_q_t_t_async_8h.html#a2fd5d6df31928ae468f3f2e522b9c707',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnectoptions_5finitializer5_80',['MQTTAsync_disconnectOptions_initializer5',['../_m_q_t_t_async_8h.html#aaa278001953dc129003eff83c8e7b3db',1,'MQTTAsync.h']]], - ['mqttasync_5ffailure_81',['MQTTASYNC_FAILURE',['../_m_q_t_t_async_8h.html#a7c8230fef85fc04b8a1035501f3be406',1,'MQTTAsync.h']]], - ['mqttasync_5ffailuredata_82',['MQTTAsync_failureData',['../struct_m_q_t_t_async__failure_data.html',1,'']]], - ['mqttasync_5ffailuredata5_83',['MQTTAsync_failureData5',['../struct_m_q_t_t_async__failure_data5.html',1,'']]], - ['mqttasync_5ffailuredata5_5finitializer_84',['MQTTAsync_failureData5_initializer',['../_m_q_t_t_async_8h.html#a53ce2002ae2c2579575bb41c48c51c29',1,'MQTTAsync.h']]], - ['mqttasync_5ffree_85',['MQTTAsync_free',['../_m_q_t_t_async_8h.html#a2b836f58612a2c4627e40ae848da190d',1,'MQTTAsync.h']]], - ['mqttasync_5ffreemessage_86',['MQTTAsync_freeMessage',['../_m_q_t_t_async_8h.html#a9b45db63052fe29ab1fad22d2a00c91c',1,'MQTTAsync.h']]], - ['mqttasync_5fgetpendingtokens_87',['MQTTAsync_getPendingTokens',['../_m_q_t_t_async_8h.html#abc92f60743fc471643b473abbc987be0',1,'MQTTAsync.h']]], - ['mqttasync_5fgetversioninfo_88',['MQTTAsync_getVersionInfo',['../_m_q_t_t_async_8h.html#a7cf29b785a1d4ff1de2e67e2f916b658',1,'MQTTAsync.h']]], - ['mqttasync_5fglobal_5finit_89',['MQTTAsync_global_init',['../_m_q_t_t_async_8h.html#a1705e75a48999cb45bf85c15608478f5',1,'MQTTAsync.h']]], - ['mqttasync_5finit_5foptions_90',['MQTTAsync_init_options',['../struct_m_q_t_t_async__init__options.html',1,'']]], - ['mqttasync_5finit_5foptions_5finitializer_91',['MQTTAsync_init_options_initializer',['../_m_q_t_t_async_8h.html#a866e023f70141969d48597930c0ee313',1,'MQTTAsync.h']]], - ['mqttasync_5fiscomplete_92',['MQTTAsync_isComplete',['../_m_q_t_t_async_8h.html#ab207095cab6f9a48b52cdb593b8456f4',1,'MQTTAsync.h']]], - ['mqttasync_5fisconnected_93',['MQTTAsync_isConnected',['../_m_q_t_t_async_8h.html#a46c332245c379629ae11f457fc179457',1,'MQTTAsync.h']]], - ['mqttasync_5fmalloc_94',['MQTTAsync_malloc',['../_m_q_t_t_async_8h.html#af5500ba58592afafaade2fcabdc61e61',1,'MQTTAsync.h']]], - ['mqttasync_5fmax_5fbuffered_95',['MQTTASYNC_MAX_BUFFERED',['../_m_q_t_t_async_8h.html#a2efee8e190e2c3690c680bde060f78ab',1,'MQTTAsync.h']]], - ['mqttasync_5fmax_5fbuffered_5fmessages_96',['MQTTASYNC_MAX_BUFFERED_MESSAGES',['../_m_q_t_t_async_8h.html#a4e338072cfd5291b579e4f0c99a6e773',1,'MQTTAsync.h']]], - ['mqttasync_5fmax_5fmessages_5finflight_97',['MQTTASYNC_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_async_8h.html#ad577286d43c72fbc49818aac42f4e24a',1,'MQTTAsync.h']]], - ['mqttasync_5fmessage_98',['MQTTAsync_message',['../struct_m_q_t_t_async__message.html',1,'']]], - ['mqttasync_5fmessage_5finitializer_99',['MQTTAsync_message_initializer',['../_m_q_t_t_async_8h.html#a6a85061dadab532f28e96e5ab3c600e9',1,'MQTTAsync.h']]], - ['mqttasync_5fmessagearrived_100',['MQTTAsync_messageArrived',['../_m_q_t_t_async_8h.html#a3918ead59b56816a8d7544def184e48e',1,'MQTTAsync.h']]], - ['mqttasync_5fnamevalue_101',['MQTTAsync_nameValue',['../struct_m_q_t_t_async__name_value.html',1,'']]], - ['mqttasync_5fno_5fmore_5fmsgids_102',['MQTTASYNC_NO_MORE_MSGIDS',['../_m_q_t_t_async_8h.html#ab0f54d0bae2c74849022a8009e5d6ff7',1,'MQTTAsync.h']]], - ['mqttasync_5fnull_5fparameter_103',['MQTTASYNC_NULL_PARAMETER',['../_m_q_t_t_async_8h.html#ab88e1ebcee991099a72429e52a8253fd',1,'MQTTAsync.h']]], - ['mqttasync_5fonfailure_104',['MQTTAsync_onFailure',['../_m_q_t_t_async_8h.html#a6060c25c2641e878803aef76fefb31ee',1,'MQTTAsync.h']]], - ['mqttasync_5fonfailure5_105',['MQTTAsync_onFailure5',['../_m_q_t_t_async_8h.html#a8c5023e04d5c3e9805d5dae76df21f4c',1,'MQTTAsync.h']]], - ['mqttasync_5fonsuccess_106',['MQTTAsync_onSuccess',['../_m_q_t_t_async_8h.html#a7b0c18a0e29e2ce73f3ea109bc32617b',1,'MQTTAsync.h']]], - ['mqttasync_5fonsuccess5_107',['MQTTAsync_onSuccess5',['../_m_q_t_t_async_8h.html#a892cf122e6e8d8f6cd38c4c8efe8fb67',1,'MQTTAsync.h']]], - ['mqttasync_5foperation_5fincomplete_108',['MQTTASYNC_OPERATION_INCOMPLETE',['../_m_q_t_t_async_8h.html#aee1b79d0632bec0fe49eb7ea1abd3b2e',1,'MQTTAsync.h']]], - ['mqttasync_5fpersistence_5ferror_109',['MQTTASYNC_PERSISTENCE_ERROR',['../_m_q_t_t_async_8h.html#a4edf1249c75abd4975fec8ddeae2cdc9',1,'MQTTAsync.h']]], - ['mqttasync_5freconnect_110',['MQTTAsync_reconnect',['../_m_q_t_t_async_8h.html#abd3ea01869b89ff23f9522640479c395',1,'MQTTAsync.h']]], - ['mqttasync_5fresponseoptions_111',['MQTTAsync_responseOptions',['../struct_m_q_t_t_async__response_options.html',1,'MQTTAsync_responseOptions'],['../_m_q_t_t_async_8h.html#ae1568d96d6418004cc79466c06f3d791',1,'MQTTAsync_responseOptions(): MQTTAsync.h']]], - ['mqttasync_5fresponseoptions_5finitializer_112',['MQTTAsync_responseOptions_initializer',['../_m_q_t_t_async_8h.html#a3f8b408243b5c2369bc9758f2edf0878',1,'MQTTAsync.h']]], - ['mqttasync_5fsend_113',['MQTTAsync_send',['../_m_q_t_t_async_8h.html#a63c66a311ab16239a4175ff671871bf2',1,'MQTTAsync.h']]], - ['mqttasync_5fsendmessage_114',['MQTTAsync_sendMessage',['../_m_q_t_t_async_8h.html#a5687171e67e98f9ea590c9e3b64cde18',1,'MQTTAsync.h']]], - ['mqttasync_5fsetafterpersistenceread_115',['MQTTAsync_setAfterPersistenceRead',['../_m_q_t_t_async_8h.html#ab4d16e3c57502be6a7d1b1d3bcc382f3',1,'MQTTAsync.h']]], - ['mqttasync_5fsetbeforepersistencewrite_116',['MQTTAsync_setBeforePersistenceWrite',['../_m_q_t_t_async_8h.html#a1002b09c62a096578c9b3e0135eb98c1',1,'MQTTAsync.h']]], - ['mqttasync_5fsetcallbacks_117',['MQTTAsync_setCallbacks',['../_m_q_t_t_async_8h.html#ae9ae8d61023e7029ef5a19f5219c3599',1,'MQTTAsync.h']]], - ['mqttasync_5fsetconnected_118',['MQTTAsync_setConnected',['../_m_q_t_t_async_8h.html#a18cc19740d9b00c629dc53a4420ecf1f',1,'MQTTAsync.h']]], - ['mqttasync_5fsetconnectionlostcallback_119',['MQTTAsync_setConnectionLostCallback',['../_m_q_t_t_async_8h.html#aee15bbd9224efd9dcce9b4ae491b2e2e',1,'MQTTAsync.h']]], - ['mqttasync_5fsetdeliverycompletecallback_120',['MQTTAsync_setDeliveryCompleteCallback',['../_m_q_t_t_async_8h.html#a94ec624ee22cc01d2ca58a9e646a2665',1,'MQTTAsync.h']]], - ['mqttasync_5fsetdisconnected_121',['MQTTAsync_setDisconnected',['../_m_q_t_t_async_8h.html#ada4dd26d23c8849c51e4ab8200339040',1,'MQTTAsync.h']]], - ['mqttasync_5fsetmessagearrivedcallback_122',['MQTTAsync_setMessageArrivedCallback',['../_m_q_t_t_async_8h.html#a44abc360051b918a39b0596a137775ae',1,'MQTTAsync.h']]], - ['mqttasync_5fsettracecallback_123',['MQTTAsync_setTraceCallback',['../_m_q_t_t_async_8h.html#a0b350581324a4ff0eaee71e7a6721388',1,'MQTTAsync.h']]], - ['mqttasync_5fsettracelevel_124',['MQTTAsync_setTraceLevel',['../_m_q_t_t_async_8h.html#ac7fbab13a0b2e5dd4ee11efbbb9f6a3a',1,'MQTTAsync.h']]], - ['mqttasync_5fsetupdateconnectoptions_125',['MQTTAsync_setUpdateConnectOptions',['../_m_q_t_t_async_8h.html#aa078aec3eba83481f63db3c3939a5da9',1,'MQTTAsync.h']]], - ['mqttasync_5fssl_5fnot_5fsupported_126',['MQTTASYNC_SSL_NOT_SUPPORTED',['../_m_q_t_t_async_8h.html#a6992c00553db1608aef9e162c161d73c',1,'MQTTAsync.h']]], - ['mqttasync_5fssloptions_127',['MQTTAsync_SSLOptions',['../struct_m_q_t_t_async___s_s_l_options.html',1,'']]], - ['mqttasync_5fssloptions_5finitializer_128',['MQTTAsync_SSLOptions_initializer',['../_m_q_t_t_async_8h.html#aac935e2e9d770a53ee8189f128530511',1,'MQTTAsync.h']]], - ['mqttasync_5fstrerror_129',['MQTTAsync_strerror',['../_m_q_t_t_async_8h.html#a875cd089a8b23eb3fd50c0406fc75d9f',1,'MQTTAsync.h']]], - ['mqttasync_5fsubscribe_130',['MQTTAsync_subscribe',['../_m_q_t_t_async_8h.html#ae10bd009934b3bb4a9f4abae7424a611',1,'MQTTAsync.h']]], - ['mqttasync_5fsubscribemany_131',['MQTTAsync_subscribeMany',['../_m_q_t_t_async_8h.html#ac78620b33434a187255bd1a3faec1578',1,'MQTTAsync.h']]], - ['mqttasync_5fsuccess_132',['MQTTASYNC_SUCCESS',['../_m_q_t_t_async_8h.html#afe0cffcce8efe25186f79c51ac44e16f',1,'MQTTAsync.h']]], - ['mqttasync_5fsuccessdata_133',['MQTTAsync_successData',['../struct_m_q_t_t_async__success_data.html',1,'']]], - ['mqttasync_5fsuccessdata5_134',['MQTTAsync_successData5',['../struct_m_q_t_t_async__success_data5.html',1,'']]], - ['mqttasync_5fsuccessdata5_5finitializer_135',['MQTTAsync_successData5_initializer',['../_m_q_t_t_async_8h.html#a6182ec90ec4a134465f627b324ac5a41',1,'MQTTAsync.h']]], - ['mqttasync_5ftoken_136',['MQTTAsync_token',['../_m_q_t_t_async_8h.html#a7ca6d2a1813f2bbd0bc3af2771e46ba4',1,'MQTTAsync.h']]], - ['mqttasync_5ftopicname_5ftruncated_137',['MQTTASYNC_TOPICNAME_TRUNCATED',['../_m_q_t_t_async_8h.html#a77a7106d97ff60be3fe70f90b1867800',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5ferror_138',['MQTTASYNC_TRACE_ERROR',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5ac428f74ca453dacb7b8271ca741266e8',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5ffatal_139',['MQTTASYNC_TRACE_FATAL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a0b91d2213ebb6655e41a7f6ce1a42295',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5flevels_140',['MQTTASYNC_TRACE_LEVELS',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fmaximum_141',['MQTTASYNC_TRACE_MAXIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5af684f42971cced68693ce993703548c1',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fmedium_142',['MQTTASYNC_TRACE_MEDIUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a133c380b84d75477ff31a2ad732133ce',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fminimum_143',['MQTTASYNC_TRACE_MINIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a7a45c26816b1cac1fde02d79a9f4337b',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fprotocol_144',['MQTTASYNC_TRACE_PROTOCOL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a6a719b2b7fc4dfc41494370ff96fec3e',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fsevere_145',['MQTTASYNC_TRACE_SEVERE',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a3084770185f384398cefe4aaba533d40',1,'MQTTAsync.h']]], - ['mqttasync_5ftracecallback_146',['MQTTAsync_traceCallback',['../_m_q_t_t_async_8h.html#a65aba1caeae9b5af5d5b6c5598a75b02',1,'MQTTAsync.h']]], - ['mqttasync_5ftrue_147',['MQTTASYNC_TRUE',['../_m_q_t_t_async_8h.html#a61e6ee632e63312d382e2fcbe427f01a',1,'MQTTAsync.h']]], - ['mqttasync_5funsubscribe_148',['MQTTAsync_unsubscribe',['../_m_q_t_t_async_8h.html#a08d18ece91c1b011011354570d8ac1ab',1,'MQTTAsync.h']]], - ['mqttasync_5funsubscribemany_149',['MQTTAsync_unsubscribeMany',['../_m_q_t_t_async_8h.html#a69fd433ce1b9b6a1b3b453c4793a9311',1,'MQTTAsync.h']]], - ['mqttasync_5fupdateconnectoptions_150',['MQTTAsync_updateConnectOptions',['../_m_q_t_t_async_8h.html#a5e44304a2c011a7d61b72c779ad83979',1,'MQTTAsync.h']]], - ['mqttasync_5fwaitforcompletion_151',['MQTTAsync_waitForCompletion',['../_m_q_t_t_async_8h.html#a4fe09cc9c976b1cf424e13765d6cd8c9',1,'MQTTAsync.h']]], - ['mqttasync_5fwilloptions_152',['MQTTAsync_willOptions',['../struct_m_q_t_t_async__will_options.html',1,'']]], - ['mqttasync_5fwilloptions_5finitializer_153',['MQTTAsync_willOptions_initializer',['../_m_q_t_t_async_8h.html#a6c45768e1b28844f2ac0f6ac68709730',1,'MQTTAsync.h']]], - ['mqttasync_5fwrong_5fmqtt_5fversion_154',['MQTTASYNC_WRONG_MQTT_VERSION',['../_m_q_t_t_async_8h.html#af5df806e9767e1e3182fe089a8ee551b',1,'MQTTAsync.h']]], - ['mqttclient_5fpersistence_155',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], - ['mqttclient_5fpersistence_5fdefault_156',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5ferror_157',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fnone_158',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fuser_159',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], - ['mqttclientpersistence_2eh_160',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], - ['mqttlenstring_161',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], - ['mqttpersistence_5fafterread_162',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], - ['mqttpersistence_5fbeforewrite_163',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], - ['mqttproperties_164',['MQTTProperties',['../struct_m_q_t_t_properties.html',1,'MQTTProperties'],['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties(): MQTTProperties.h']]], - ['mqttproperties_2eh_165',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], - ['mqttproperties_5fadd_166',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], - ['mqttproperties_5fcopy_167',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], - ['mqttproperties_5ffree_168',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalue_169',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalueat_170',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetproperty_171',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetpropertyat_172',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], - ['mqttproperties_5fhasproperty_173',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], - ['mqttproperties_5finitializer_174',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], - ['mqttproperties_5flen_175',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], - ['mqttproperties_5fpropertycount_176',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], - ['mqttproperties_5fread_177',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], - ['mqttproperties_5fwrite_178',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], - ['mqttproperty_179',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], - ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_180',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fdata_181',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fmethod_182',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcontent_5ftype_183',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcorrelation_5fdata_184',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_185',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fqos_186',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_187',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_188',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freason_5fstring_189',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freceive_5fmaximum_190',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_191',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_192',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5finformation_193',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5ftopic_194',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fretain_5favailable_195',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5fkeep_5falive_196',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5freference_197',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_198',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_199',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifier_200',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_201',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_202',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_203',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fuser_5fproperty_204',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_205',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_206',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], - ['mqttproperty_5fgettype_207',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbinary_5fdata_208',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbyte_209',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_210',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_211',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_212',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_213',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_214',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], - ['mqttpropertycodes_215',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], - ['mqttpropertyname_216',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], - ['mqttpropertytypes_217',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], - ['mqttreasoncode_5fadministrative_5faction_218',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fauthentication_5fmethod_219',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_220',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbanned_221',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_222',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fconnection_5frate_5fexceeded_223',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fcontinue_5fauthentication_224',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_225',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f0_226',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f1_227',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f2_228',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fimplementation_5fspecific_5ferror_229',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fkeep_5falive_5ftimeout_230',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmalformed_5fpacket_231',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmaximum_5fconnect_5ftime_232',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_233',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fmatching_5fsubscribers_234',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fsubscription_5ffound_235',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnormal_5fdisconnection_236',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnot_5fauthorized_237',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_238',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_239',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5ftoo_5flarge_240',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpayload_5fformat_5finvalid_241',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fprotocol_5ferror_242',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fqos_5fnot_5fsupported_243',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fquota_5fexceeded_244',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fre_5fauthenticate_245',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_246',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fretain_5fnot_5fsupported_247',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fbusy_248',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fmoved_249',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fshutting_5fdown_250',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5funavailable_251',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsession_5ftaken_5fover_252',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_253',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_254',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsuccess_255',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5falias_5finvalid_256',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5ffilter_5finvalid_257',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5fname_5finvalid_258',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftostring_259',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funspecified_5ferror_260',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funsupported_5fprotocol_5fversion_261',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fuse_5fanother_5fserver_262',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_263',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncodes_264',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]], - ['mqttreasoncodes_2eh_265',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], - ['mqttsubscribe_5foptions_266',['MQTTSubscribe_options',['../struct_m_q_t_t_subscribe__options.html',1,'MQTTSubscribe_options'],['../_m_q_t_t_subscribe_opts_8h.html#aa68db3eaed272ae1aaea294401079d8a',1,'MQTTSubscribe_options(): MQTTSubscribeOpts.h']]], - ['mqttsubscribe_5foptions_5finitializer_267',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], - ['mqttsubscribeopts_2eh_268',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]], - ['mqttversion_269',['MQTTVersion',['../struct_m_q_t_t_async__success_data.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_successData::MQTTVersion()'],['../struct_m_q_t_t_async__success_data5.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_successData5::MQTTVersion()'],['../struct_m_q_t_t_async__create_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_createOptions::MQTTVersion()'],['../struct_m_q_t_t_async__connect_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_connectOptions::MQTTVersion()']]], - ['mqttversion_5f3_5f1_270',['MQTTVERSION_3_1',['../_m_q_t_t_async_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTAsync.h']]], - ['mqttversion_5f3_5f1_5f1_271',['MQTTVERSION_3_1_1',['../_m_q_t_t_async_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTAsync.h']]], - ['mqttversion_5f5_272',['MQTTVERSION_5',['../_m_q_t_t_async_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTAsync.h']]], - ['mqttversion_5fdefault_273',['MQTTVERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTAsync.h']]], - ['msgid_274',['msgid',['../struct_m_q_t_t_async__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTAsync_message']]] + ['mqttasync_5fdisconnected_77',['MQTTASYNC_DISCONNECTED',['../_m_q_t_t_async_8h.html#a66c0f30b329bc770145c2f04b3929df6',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnected_78',['MQTTAsync_disconnected',['../_m_q_t_t_async_8h.html#a52a1d9ab6e5d5064a3de42d0eec88f57',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnectoptions_79',['MQTTAsync_disconnectOptions',['../struct_m_q_t_t_async__disconnect_options.html',1,'']]], + ['mqttasync_5fdisconnectoptions_5finitializer_80',['MQTTAsync_disconnectOptions_initializer',['../_m_q_t_t_async_8h.html#a2fd5d6df31928ae468f3f2e522b9c707',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnectoptions_5finitializer5_81',['MQTTAsync_disconnectOptions_initializer5',['../_m_q_t_t_async_8h.html#aaa278001953dc129003eff83c8e7b3db',1,'MQTTAsync.h']]], + ['mqttasync_5ffailure_82',['MQTTASYNC_FAILURE',['../_m_q_t_t_async_8h.html#a7c8230fef85fc04b8a1035501f3be406',1,'MQTTAsync.h']]], + ['mqttasync_5ffailuredata_83',['MQTTAsync_failureData',['../struct_m_q_t_t_async__failure_data.html',1,'']]], + ['mqttasync_5ffailuredata5_84',['MQTTAsync_failureData5',['../struct_m_q_t_t_async__failure_data5.html',1,'']]], + ['mqttasync_5ffailuredata5_5finitializer_85',['MQTTAsync_failureData5_initializer',['../_m_q_t_t_async_8h.html#a53ce2002ae2c2579575bb41c48c51c29',1,'MQTTAsync.h']]], + ['mqttasync_5ffree_86',['MQTTAsync_free',['../_m_q_t_t_async_8h.html#a2b836f58612a2c4627e40ae848da190d',1,'MQTTAsync.h']]], + ['mqttasync_5ffreemessage_87',['MQTTAsync_freeMessage',['../_m_q_t_t_async_8h.html#a9b45db63052fe29ab1fad22d2a00c91c',1,'MQTTAsync.h']]], + ['mqttasync_5fgetpendingtokens_88',['MQTTAsync_getPendingTokens',['../_m_q_t_t_async_8h.html#abc92f60743fc471643b473abbc987be0',1,'MQTTAsync.h']]], + ['mqttasync_5fgetversioninfo_89',['MQTTAsync_getVersionInfo',['../_m_q_t_t_async_8h.html#a7cf29b785a1d4ff1de2e67e2f916b658',1,'MQTTAsync.h']]], + ['mqttasync_5fglobal_5finit_90',['MQTTAsync_global_init',['../_m_q_t_t_async_8h.html#a1705e75a48999cb45bf85c15608478f5',1,'MQTTAsync.h']]], + ['mqttasync_5finit_5foptions_91',['MQTTAsync_init_options',['../struct_m_q_t_t_async__init__options.html',1,'']]], + ['mqttasync_5finit_5foptions_5finitializer_92',['MQTTAsync_init_options_initializer',['../_m_q_t_t_async_8h.html#a866e023f70141969d48597930c0ee313',1,'MQTTAsync.h']]], + ['mqttasync_5fiscomplete_93',['MQTTAsync_isComplete',['../_m_q_t_t_async_8h.html#ab207095cab6f9a48b52cdb593b8456f4',1,'MQTTAsync.h']]], + ['mqttasync_5fisconnected_94',['MQTTAsync_isConnected',['../_m_q_t_t_async_8h.html#a46c332245c379629ae11f457fc179457',1,'MQTTAsync.h']]], + ['mqttasync_5fmalloc_95',['MQTTAsync_malloc',['../_m_q_t_t_async_8h.html#af5500ba58592afafaade2fcabdc61e61',1,'MQTTAsync.h']]], + ['mqttasync_5fmax_5fbuffered_96',['MQTTASYNC_MAX_BUFFERED',['../_m_q_t_t_async_8h.html#a2efee8e190e2c3690c680bde060f78ab',1,'MQTTAsync.h']]], + ['mqttasync_5fmax_5fbuffered_5fmessages_97',['MQTTASYNC_MAX_BUFFERED_MESSAGES',['../_m_q_t_t_async_8h.html#a4e338072cfd5291b579e4f0c99a6e773',1,'MQTTAsync.h']]], + ['mqttasync_5fmax_5fmessages_5finflight_98',['MQTTASYNC_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_async_8h.html#ad577286d43c72fbc49818aac42f4e24a',1,'MQTTAsync.h']]], + ['mqttasync_5fmessage_99',['MQTTAsync_message',['../struct_m_q_t_t_async__message.html',1,'']]], + ['mqttasync_5fmessage_5finitializer_100',['MQTTAsync_message_initializer',['../_m_q_t_t_async_8h.html#a6a85061dadab532f28e96e5ab3c600e9',1,'MQTTAsync.h']]], + ['mqttasync_5fmessagearrived_101',['MQTTAsync_messageArrived',['../_m_q_t_t_async_8h.html#a3918ead59b56816a8d7544def184e48e',1,'MQTTAsync.h']]], + ['mqttasync_5fnamevalue_102',['MQTTAsync_nameValue',['../struct_m_q_t_t_async__name_value.html',1,'']]], + ['mqttasync_5fno_5fmore_5fmsgids_103',['MQTTASYNC_NO_MORE_MSGIDS',['../_m_q_t_t_async_8h.html#ab0f54d0bae2c74849022a8009e5d6ff7',1,'MQTTAsync.h']]], + ['mqttasync_5fnull_5fparameter_104',['MQTTASYNC_NULL_PARAMETER',['../_m_q_t_t_async_8h.html#ab88e1ebcee991099a72429e52a8253fd',1,'MQTTAsync.h']]], + ['mqttasync_5fonfailure_105',['MQTTAsync_onFailure',['../_m_q_t_t_async_8h.html#a6060c25c2641e878803aef76fefb31ee',1,'MQTTAsync.h']]], + ['mqttasync_5fonfailure5_106',['MQTTAsync_onFailure5',['../_m_q_t_t_async_8h.html#a8c5023e04d5c3e9805d5dae76df21f4c',1,'MQTTAsync.h']]], + ['mqttasync_5fonsuccess_107',['MQTTAsync_onSuccess',['../_m_q_t_t_async_8h.html#a7b0c18a0e29e2ce73f3ea109bc32617b',1,'MQTTAsync.h']]], + ['mqttasync_5fonsuccess5_108',['MQTTAsync_onSuccess5',['../_m_q_t_t_async_8h.html#a892cf122e6e8d8f6cd38c4c8efe8fb67',1,'MQTTAsync.h']]], + ['mqttasync_5foperation_5fincomplete_109',['MQTTASYNC_OPERATION_INCOMPLETE',['../_m_q_t_t_async_8h.html#aee1b79d0632bec0fe49eb7ea1abd3b2e',1,'MQTTAsync.h']]], + ['mqttasync_5fpersistence_5ferror_110',['MQTTASYNC_PERSISTENCE_ERROR',['../_m_q_t_t_async_8h.html#a4edf1249c75abd4975fec8ddeae2cdc9',1,'MQTTAsync.h']]], + ['mqttasync_5freconnect_111',['MQTTAsync_reconnect',['../_m_q_t_t_async_8h.html#abd3ea01869b89ff23f9522640479c395',1,'MQTTAsync.h']]], + ['mqttasync_5fresponseoptions_112',['MQTTAsync_responseOptions',['../struct_m_q_t_t_async__response_options.html',1,'MQTTAsync_responseOptions'],['../_m_q_t_t_async_8h.html#ae1568d96d6418004cc79466c06f3d791',1,'MQTTAsync_responseOptions(): MQTTAsync.h']]], + ['mqttasync_5fresponseoptions_5finitializer_113',['MQTTAsync_responseOptions_initializer',['../_m_q_t_t_async_8h.html#a3f8b408243b5c2369bc9758f2edf0878',1,'MQTTAsync.h']]], + ['mqttasync_5fsend_114',['MQTTAsync_send',['../_m_q_t_t_async_8h.html#a63c66a311ab16239a4175ff671871bf2',1,'MQTTAsync.h']]], + ['mqttasync_5fsendmessage_115',['MQTTAsync_sendMessage',['../_m_q_t_t_async_8h.html#a5687171e67e98f9ea590c9e3b64cde18',1,'MQTTAsync.h']]], + ['mqttasync_5fsetafterpersistenceread_116',['MQTTAsync_setAfterPersistenceRead',['../_m_q_t_t_async_8h.html#ab4d16e3c57502be6a7d1b1d3bcc382f3',1,'MQTTAsync.h']]], + ['mqttasync_5fsetbeforepersistencewrite_117',['MQTTAsync_setBeforePersistenceWrite',['../_m_q_t_t_async_8h.html#a1002b09c62a096578c9b3e0135eb98c1',1,'MQTTAsync.h']]], + ['mqttasync_5fsetcallbacks_118',['MQTTAsync_setCallbacks',['../_m_q_t_t_async_8h.html#ae9ae8d61023e7029ef5a19f5219c3599',1,'MQTTAsync.h']]], + ['mqttasync_5fsetconnected_119',['MQTTAsync_setConnected',['../_m_q_t_t_async_8h.html#a18cc19740d9b00c629dc53a4420ecf1f',1,'MQTTAsync.h']]], + ['mqttasync_5fsetconnectionlostcallback_120',['MQTTAsync_setConnectionLostCallback',['../_m_q_t_t_async_8h.html#aee15bbd9224efd9dcce9b4ae491b2e2e',1,'MQTTAsync.h']]], + ['mqttasync_5fsetdeliverycompletecallback_121',['MQTTAsync_setDeliveryCompleteCallback',['../_m_q_t_t_async_8h.html#a94ec624ee22cc01d2ca58a9e646a2665',1,'MQTTAsync.h']]], + ['mqttasync_5fsetdisconnected_122',['MQTTAsync_setDisconnected',['../_m_q_t_t_async_8h.html#ada4dd26d23c8849c51e4ab8200339040',1,'MQTTAsync.h']]], + ['mqttasync_5fsetmessagearrivedcallback_123',['MQTTAsync_setMessageArrivedCallback',['../_m_q_t_t_async_8h.html#a44abc360051b918a39b0596a137775ae',1,'MQTTAsync.h']]], + ['mqttasync_5fsettracecallback_124',['MQTTAsync_setTraceCallback',['../_m_q_t_t_async_8h.html#a0b350581324a4ff0eaee71e7a6721388',1,'MQTTAsync.h']]], + ['mqttasync_5fsettracelevel_125',['MQTTAsync_setTraceLevel',['../_m_q_t_t_async_8h.html#ac7fbab13a0b2e5dd4ee11efbbb9f6a3a',1,'MQTTAsync.h']]], + ['mqttasync_5fsetupdateconnectoptions_126',['MQTTAsync_setUpdateConnectOptions',['../_m_q_t_t_async_8h.html#aa078aec3eba83481f63db3c3939a5da9',1,'MQTTAsync.h']]], + ['mqttasync_5fssl_5fnot_5fsupported_127',['MQTTASYNC_SSL_NOT_SUPPORTED',['../_m_q_t_t_async_8h.html#a6992c00553db1608aef9e162c161d73c',1,'MQTTAsync.h']]], + ['mqttasync_5fssloptions_128',['MQTTAsync_SSLOptions',['../struct_m_q_t_t_async___s_s_l_options.html',1,'']]], + ['mqttasync_5fssloptions_5finitializer_129',['MQTTAsync_SSLOptions_initializer',['../_m_q_t_t_async_8h.html#aac935e2e9d770a53ee8189f128530511',1,'MQTTAsync.h']]], + ['mqttasync_5fstrerror_130',['MQTTAsync_strerror',['../_m_q_t_t_async_8h.html#a875cd089a8b23eb3fd50c0406fc75d9f',1,'MQTTAsync.h']]], + ['mqttasync_5fsubscribe_131',['MQTTAsync_subscribe',['../_m_q_t_t_async_8h.html#ae10bd009934b3bb4a9f4abae7424a611',1,'MQTTAsync.h']]], + ['mqttasync_5fsubscribemany_132',['MQTTAsync_subscribeMany',['../_m_q_t_t_async_8h.html#ac78620b33434a187255bd1a3faec1578',1,'MQTTAsync.h']]], + ['mqttasync_5fsuccess_133',['MQTTASYNC_SUCCESS',['../_m_q_t_t_async_8h.html#afe0cffcce8efe25186f79c51ac44e16f',1,'MQTTAsync.h']]], + ['mqttasync_5fsuccessdata_134',['MQTTAsync_successData',['../struct_m_q_t_t_async__success_data.html',1,'']]], + ['mqttasync_5fsuccessdata5_135',['MQTTAsync_successData5',['../struct_m_q_t_t_async__success_data5.html',1,'']]], + ['mqttasync_5fsuccessdata5_5finitializer_136',['MQTTAsync_successData5_initializer',['../_m_q_t_t_async_8h.html#a6182ec90ec4a134465f627b324ac5a41',1,'MQTTAsync.h']]], + ['mqttasync_5ftoken_137',['MQTTAsync_token',['../_m_q_t_t_async_8h.html#a7ca6d2a1813f2bbd0bc3af2771e46ba4',1,'MQTTAsync.h']]], + ['mqttasync_5ftopicname_5ftruncated_138',['MQTTASYNC_TOPICNAME_TRUNCATED',['../_m_q_t_t_async_8h.html#a77a7106d97ff60be3fe70f90b1867800',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5ferror_139',['MQTTASYNC_TRACE_ERROR',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5ac428f74ca453dacb7b8271ca741266e8',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5ffatal_140',['MQTTASYNC_TRACE_FATAL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a0b91d2213ebb6655e41a7f6ce1a42295',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5flevels_141',['MQTTASYNC_TRACE_LEVELS',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fmaximum_142',['MQTTASYNC_TRACE_MAXIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5af684f42971cced68693ce993703548c1',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fmedium_143',['MQTTASYNC_TRACE_MEDIUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a133c380b84d75477ff31a2ad732133ce',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fminimum_144',['MQTTASYNC_TRACE_MINIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a7a45c26816b1cac1fde02d79a9f4337b',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fprotocol_145',['MQTTASYNC_TRACE_PROTOCOL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a6a719b2b7fc4dfc41494370ff96fec3e',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fsevere_146',['MQTTASYNC_TRACE_SEVERE',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a3084770185f384398cefe4aaba533d40',1,'MQTTAsync.h']]], + ['mqttasync_5ftracecallback_147',['MQTTAsync_traceCallback',['../_m_q_t_t_async_8h.html#a65aba1caeae9b5af5d5b6c5598a75b02',1,'MQTTAsync.h']]], + ['mqttasync_5ftrue_148',['MQTTASYNC_TRUE',['../_m_q_t_t_async_8h.html#a61e6ee632e63312d382e2fcbe427f01a',1,'MQTTAsync.h']]], + ['mqttasync_5funsubscribe_149',['MQTTAsync_unsubscribe',['../_m_q_t_t_async_8h.html#a08d18ece91c1b011011354570d8ac1ab',1,'MQTTAsync.h']]], + ['mqttasync_5funsubscribemany_150',['MQTTAsync_unsubscribeMany',['../_m_q_t_t_async_8h.html#a69fd433ce1b9b6a1b3b453c4793a9311',1,'MQTTAsync.h']]], + ['mqttasync_5fupdateconnectoptions_151',['MQTTAsync_updateConnectOptions',['../_m_q_t_t_async_8h.html#a5e44304a2c011a7d61b72c779ad83979',1,'MQTTAsync.h']]], + ['mqttasync_5fwaitforcompletion_152',['MQTTAsync_waitForCompletion',['../_m_q_t_t_async_8h.html#a4fe09cc9c976b1cf424e13765d6cd8c9',1,'MQTTAsync.h']]], + ['mqttasync_5fwilloptions_153',['MQTTAsync_willOptions',['../struct_m_q_t_t_async__will_options.html',1,'']]], + ['mqttasync_5fwilloptions_5finitializer_154',['MQTTAsync_willOptions_initializer',['../_m_q_t_t_async_8h.html#a6c45768e1b28844f2ac0f6ac68709730',1,'MQTTAsync.h']]], + ['mqttasync_5fwrong_5fmqtt_5fversion_155',['MQTTASYNC_WRONG_MQTT_VERSION',['../_m_q_t_t_async_8h.html#af5df806e9767e1e3182fe089a8ee551b',1,'MQTTAsync.h']]], + ['mqttclient_5fpersistence_156',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], + ['mqttclient_5fpersistence_5fdefault_157',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5ferror_158',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fnone_159',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fuser_160',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], + ['mqttclientpersistence_2eh_161',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], + ['mqttlenstring_162',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], + ['mqttpersistence_5fafterread_163',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], + ['mqttpersistence_5fbeforewrite_164',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], + ['mqttproperties_165',['MQTTProperties',['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties(): MQTTProperties.h'],['../struct_m_q_t_t_properties.html',1,'MQTTProperties']]], + ['mqttproperties_2eh_166',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], + ['mqttproperties_5fadd_167',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], + ['mqttproperties_5fcopy_168',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], + ['mqttproperties_5ffree_169',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalue_170',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalueat_171',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetproperty_172',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetpropertyat_173',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], + ['mqttproperties_5fhasproperty_174',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], + ['mqttproperties_5finitializer_175',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], + ['mqttproperties_5flen_176',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], + ['mqttproperties_5fpropertycount_177',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], + ['mqttproperties_5fread_178',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], + ['mqttproperties_5fwrite_179',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], + ['mqttproperty_180',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], + ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_181',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fdata_182',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fmethod_183',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcontent_5ftype_184',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcorrelation_5fdata_185',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_186',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fqos_187',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_188',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_189',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freason_5fstring_190',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freceive_5fmaximum_191',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_192',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_193',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5finformation_194',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5ftopic_195',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fretain_5favailable_196',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5fkeep_5falive_197',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5freference_198',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_199',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_200',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifier_201',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_202',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_203',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_204',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fuser_5fproperty_205',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_206',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_207',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], + ['mqttproperty_5fgettype_208',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbinary_5fdata_209',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbyte_210',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_211',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_212',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_213',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_214',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_215',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], + ['mqttpropertycodes_216',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], + ['mqttpropertyname_217',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], + ['mqttpropertytypes_218',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], + ['mqttreasoncode_5fadministrative_5faction_219',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fauthentication_5fmethod_220',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_221',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbanned_222',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_223',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fconnection_5frate_5fexceeded_224',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fcontinue_5fauthentication_225',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_226',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f0_227',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f1_228',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f2_229',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fimplementation_5fspecific_5ferror_230',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fkeep_5falive_5ftimeout_231',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmalformed_5fpacket_232',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmaximum_5fconnect_5ftime_233',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_234',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fmatching_5fsubscribers_235',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fsubscription_5ffound_236',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnormal_5fdisconnection_237',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnot_5fauthorized_238',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_239',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_240',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5ftoo_5flarge_241',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpayload_5fformat_5finvalid_242',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fprotocol_5ferror_243',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fqos_5fnot_5fsupported_244',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fquota_5fexceeded_245',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fre_5fauthenticate_246',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_247',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fretain_5fnot_5fsupported_248',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fbusy_249',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fmoved_250',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fshutting_5fdown_251',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5funavailable_252',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsession_5ftaken_5fover_253',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_254',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_255',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsuccess_256',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5falias_5finvalid_257',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5ffilter_5finvalid_258',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5fname_5finvalid_259',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftostring_260',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funspecified_5ferror_261',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funsupported_5fprotocol_5fversion_262',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fuse_5fanother_5fserver_263',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_264',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncodes_265',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]], + ['mqttreasoncodes_2eh_266',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], + ['mqttsubscribe_5foptions_267',['MQTTSubscribe_options',['../struct_m_q_t_t_subscribe__options.html',1,'MQTTSubscribe_options'],['../_m_q_t_t_subscribe_opts_8h.html#aa68db3eaed272ae1aaea294401079d8a',1,'MQTTSubscribe_options(): MQTTSubscribeOpts.h']]], + ['mqttsubscribe_5foptions_5finitializer_268',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], + ['mqttsubscribeopts_2eh_269',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]], + ['mqttversion_270',['MQTTVersion',['../struct_m_q_t_t_async__connect_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_connectOptions::MQTTVersion()'],['../struct_m_q_t_t_async__success_data.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_successData::MQTTVersion()'],['../struct_m_q_t_t_async__success_data5.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_successData5::MQTTVersion()'],['../struct_m_q_t_t_async__create_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_createOptions::MQTTVersion()']]], + ['mqttversion_5f3_5f1_271',['MQTTVERSION_3_1',['../_m_q_t_t_async_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTAsync.h']]], + ['mqttversion_5f3_5f1_5f1_272',['MQTTVERSION_3_1_1',['../_m_q_t_t_async_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTAsync.h']]], + ['mqttversion_5f5_273',['MQTTVERSION_5',['../_m_q_t_t_async_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTAsync.h']]], + ['mqttversion_5fdefault_274',['MQTTVERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTAsync.h']]], + ['msgid_275',['msgid',['../struct_m_q_t_t_async__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTAsync_message']]] ]; diff --git a/docs/MQTTAsync/html/search/all_a.html b/docs/MQTTAsync/html/search/all_a.html index f2f3d3a3..3a6cac10 100644 --- a/docs/MQTTAsync/html/search/all_a.html +++ b/docs/MQTTAsync/html/search/all_a.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_a.js b/docs/MQTTAsync/html/search/all_a.js index a280bdad..be91f27d 100644 --- a/docs/MQTTAsync/html/search/all_a.js +++ b/docs/MQTTAsync/html/search/all_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['name_275',['name',['../struct_m_q_t_t_async__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTAsync_nameValue']]], - ['nolocal_276',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] + ['name_276',['name',['../struct_m_q_t_t_async__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTAsync_nameValue']]], + ['nolocal_277',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] ]; diff --git a/docs/MQTTAsync/html/search/all_b.html b/docs/MQTTAsync/html/search/all_b.html index 14f34036..130deb4e 100644 --- a/docs/MQTTAsync/html/search/all_b.html +++ b/docs/MQTTAsync/html/search/all_b.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_b.js b/docs/MQTTAsync/html/search/all_b.js index b9daa8c4..93a24e76 100644 --- a/docs/MQTTAsync/html/search/all_b.js +++ b/docs/MQTTAsync/html/search/all_b.js @@ -1,7 +1,7 @@ var searchData= [ - ['onfailure_277',['onFailure',['../struct_m_q_t_t_async__response_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_responseOptions::onFailure()'],['../struct_m_q_t_t_async__connect_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_connectOptions::onFailure()'],['../struct_m_q_t_t_async__disconnect_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_disconnectOptions::onFailure()']]], - ['onfailure5_278',['onFailure5',['../struct_m_q_t_t_async__response_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_responseOptions::onFailure5()'],['../struct_m_q_t_t_async__connect_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_connectOptions::onFailure5()'],['../struct_m_q_t_t_async__disconnect_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_disconnectOptions::onFailure5()']]], - ['onsuccess_279',['onSuccess',['../struct_m_q_t_t_async__response_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_responseOptions::onSuccess()'],['../struct_m_q_t_t_async__connect_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_connectOptions::onSuccess()'],['../struct_m_q_t_t_async__disconnect_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_disconnectOptions::onSuccess()']]], - ['onsuccess5_280',['onSuccess5',['../struct_m_q_t_t_async__response_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_responseOptions::onSuccess5()'],['../struct_m_q_t_t_async__connect_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_connectOptions::onSuccess5()'],['../struct_m_q_t_t_async__disconnect_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_disconnectOptions::onSuccess5()']]] + ['onfailure_278',['onFailure',['../struct_m_q_t_t_async__response_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_responseOptions::onFailure()'],['../struct_m_q_t_t_async__connect_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_connectOptions::onFailure()'],['../struct_m_q_t_t_async__disconnect_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_disconnectOptions::onFailure()']]], + ['onfailure5_279',['onFailure5',['../struct_m_q_t_t_async__response_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_responseOptions::onFailure5()'],['../struct_m_q_t_t_async__connect_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_connectOptions::onFailure5()'],['../struct_m_q_t_t_async__disconnect_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_disconnectOptions::onFailure5()']]], + ['onsuccess_280',['onSuccess',['../struct_m_q_t_t_async__response_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_responseOptions::onSuccess()'],['../struct_m_q_t_t_async__connect_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_connectOptions::onSuccess()'],['../struct_m_q_t_t_async__disconnect_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_disconnectOptions::onSuccess()']]], + ['onsuccess5_281',['onSuccess5',['../struct_m_q_t_t_async__response_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_responseOptions::onSuccess5()'],['../struct_m_q_t_t_async__connect_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_connectOptions::onSuccess5()'],['../struct_m_q_t_t_async__disconnect_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_disconnectOptions::onSuccess5()']]] ]; diff --git a/docs/MQTTAsync/html/search/all_c.html b/docs/MQTTAsync/html/search/all_c.html index da60ab8d..3dd5af06 100644 --- a/docs/MQTTAsync/html/search/all_c.html +++ b/docs/MQTTAsync/html/search/all_c.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_c.js b/docs/MQTTAsync/html/search/all_c.js index 6c55fc42..55e07fde 100644 --- a/docs/MQTTAsync/html/search/all_c.js +++ b/docs/MQTTAsync/html/search/all_c.js @@ -1,6 +1,5 @@ var searchData= [ - ['publish_20while_20disconnected_281',['Publish While Disconnected',['../offline_publish.html',1,'']]], ['packet_5ftype_282',['packet_type',['../struct_m_q_t_t_async__failure_data5.html#a38dfee9f038f473c95af46fcef5dd3e9',1,'MQTTAsync_failureData5']]], ['password_283',['password',['../struct_m_q_t_t_async__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTAsync_connectOptions']]], ['payload_284',['payload',['../struct_m_q_t_t_async__message.html#a9eff55064941fb604452abb0050ea99d',1,'MQTTAsync_message::payload()'],['../struct_m_q_t_t_async__will_options.html#a93e9de18277b05bc7a033bdee98c908a',1,'MQTTAsync_willOptions::payload()']]], @@ -24,9 +23,10 @@ var searchData= ['premove_302',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], ['privatekey_303',['privateKey',['../struct_m_q_t_t_async___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTAsync_SSLOptions']]], ['privatekeypassword_304',['privateKeyPassword',['../struct_m_q_t_t_async___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTAsync_SSLOptions']]], - ['properties_305',['properties',['../struct_m_q_t_t_async__message.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_message::properties()'],['../struct_m_q_t_t_async__failure_data5.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_failureData5::properties()'],['../struct_m_q_t_t_async__success_data5.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_successData5::properties()'],['../struct_m_q_t_t_async__response_options.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_responseOptions::properties()'],['../struct_m_q_t_t_async__disconnect_options.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_disconnectOptions::properties()']]], + ['properties_305',['properties',['../struct_m_q_t_t_async__failure_data5.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_failureData5::properties()'],['../struct_m_q_t_t_async__disconnect_options.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_disconnectOptions::properties()'],['../struct_m_q_t_t_async__response_options.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_responseOptions::properties()'],['../struct_m_q_t_t_async__success_data5.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_successData5::properties()'],['../struct_m_q_t_t_async__message.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_message::properties()']]], ['protos_306',['protos',['../struct_m_q_t_t_async___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTAsync_SSLOptions']]], ['protos_5flen_307',['protos_len',['../struct_m_q_t_t_async___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTAsync_SSLOptions']]], - ['pub_308',['pub',['../struct_m_q_t_t_async__success_data.html#a7f044c3b839c17a8840cd6f00d7a0e90',1,'MQTTAsync_successData::pub()'],['../struct_m_q_t_t_async__success_data5.html#a5c41c63d6c37acbe3c493279c5d4c44a',1,'MQTTAsync_successData5::pub()']]], - ['publication_20example_309',['Publication example',['../publish.html',1,'']]] + ['pub_308',['pub',['../struct_m_q_t_t_async__success_data5.html#a5c41c63d6c37acbe3c493279c5d4c44a',1,'MQTTAsync_successData5::pub()'],['../struct_m_q_t_t_async__success_data.html#a7f044c3b839c17a8840cd6f00d7a0e90',1,'MQTTAsync_successData::pub()']]], + ['publication_20example_309',['Publication example',['../publish.html',1,'']]], + ['publish_20while_20disconnected_310',['Publish While Disconnected',['../offline_publish.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/all_d.html b/docs/MQTTAsync/html/search/all_d.html index bc376fec..af7f2f0f 100644 --- a/docs/MQTTAsync/html/search/all_d.html +++ b/docs/MQTTAsync/html/search/all_d.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_d.js b/docs/MQTTAsync/html/search/all_d.js index 966157bd..0ff5a6f0 100644 --- a/docs/MQTTAsync/html/search/all_d.js +++ b/docs/MQTTAsync/html/search/all_d.js @@ -1,5 +1,6 @@ var searchData= [ - ['qos_310',['qos',['../struct_m_q_t_t_async__message.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_message::qos()'],['../struct_m_q_t_t_async__success_data.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_successData::qos()'],['../struct_m_q_t_t_async__will_options.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_willOptions::qos()'],['../qos.html',1,'(Global Namespace)']]], - ['qoslist_311',['qosList',['../struct_m_q_t_t_async__success_data.html#a82786d9ba5cae39873f378a48b36c23b',1,'MQTTAsync_successData']]] + ['qos_311',['qos',['../struct_m_q_t_t_async__message.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_message::qos()'],['../struct_m_q_t_t_async__success_data.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_successData::qos()'],['../struct_m_q_t_t_async__will_options.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_willOptions::qos()']]], + ['qoslist_312',['qosList',['../struct_m_q_t_t_async__success_data.html#a82786d9ba5cae39873f378a48b36c23b',1,'MQTTAsync_successData']]], + ['quality_20of_20service_313',['Quality of service',['../qos.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/all_e.html b/docs/MQTTAsync/html/search/all_e.html index 2e3c74dc..e25df423 100644 --- a/docs/MQTTAsync/html/search/all_e.html +++ b/docs/MQTTAsync/html/search/all_e.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_e.js b/docs/MQTTAsync/html/search/all_e.js index dd90fb08..4099c252 100644 --- a/docs/MQTTAsync/html/search/all_e.js +++ b/docs/MQTTAsync/html/search/all_e.js @@ -1,11 +1,11 @@ var searchData= [ - ['reasoncode_312',['reasonCode',['../struct_m_q_t_t_async__failure_data5.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_failureData5::reasonCode()'],['../struct_m_q_t_t_async__success_data5.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_successData5::reasonCode()'],['../struct_m_q_t_t_async__disconnect_options.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_disconnectOptions::reasonCode()']]], - ['reasoncodecount_313',['reasonCodeCount',['../struct_m_q_t_t_async__success_data5.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTAsync_successData5']]], - ['reasoncodes_314',['reasonCodes',['../struct_m_q_t_t_async__success_data5.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTAsync_successData5']]], - ['restoremessages_315',['restoreMessages',['../struct_m_q_t_t_async__create_options.html#a231b8890c3bc2ea07f7c599896f30691',1,'MQTTAsync_createOptions']]], - ['retainaspublished_316',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], - ['retained_317',['retained',['../struct_m_q_t_t_async__message.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTAsync_message::retained()'],['../struct_m_q_t_t_async__will_options.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTAsync_willOptions::retained()']]], - ['retainhandling_318',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], - ['retryinterval_319',['retryInterval',['../struct_m_q_t_t_async__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTAsync_connectOptions']]] + ['reasoncode_314',['reasonCode',['../struct_m_q_t_t_async__failure_data5.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_failureData5::reasonCode()'],['../struct_m_q_t_t_async__success_data5.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_successData5::reasonCode()'],['../struct_m_q_t_t_async__disconnect_options.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_disconnectOptions::reasonCode()']]], + ['reasoncodecount_315',['reasonCodeCount',['../struct_m_q_t_t_async__success_data5.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTAsync_successData5']]], + ['reasoncodes_316',['reasonCodes',['../struct_m_q_t_t_async__success_data5.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTAsync_successData5']]], + ['restoremessages_317',['restoreMessages',['../struct_m_q_t_t_async__create_options.html#a231b8890c3bc2ea07f7c599896f30691',1,'MQTTAsync_createOptions']]], + ['retainaspublished_318',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], + ['retained_319',['retained',['../struct_m_q_t_t_async__message.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTAsync_message::retained()'],['../struct_m_q_t_t_async__will_options.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTAsync_willOptions::retained()']]], + ['retainhandling_320',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], + ['retryinterval_321',['retryInterval',['../struct_m_q_t_t_async__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/all_f.html b/docs/MQTTAsync/html/search/all_f.html index 246f8ab1..b23da6ce 100644 --- a/docs/MQTTAsync/html/search/all_f.html +++ b/docs/MQTTAsync/html/search/all_f.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/all_f.js b/docs/MQTTAsync/html/search/all_f.js index f86e80c1..01671362 100644 --- a/docs/MQTTAsync/html/search/all_f.js +++ b/docs/MQTTAsync/html/search/all_f.js @@ -1,22 +1,22 @@ var searchData= [ - ['sendwhiledisconnected_320',['sendWhileDisconnected',['../struct_m_q_t_t_async__create_options.html#a078cd68d8f896ce7eac0cc83d4486a2c',1,'MQTTAsync_createOptions']]], - ['serveruri_321',['serverURI',['../struct_m_q_t_t_async__success_data.html#a95309fdf27015b12bc4adf56306e557b',1,'MQTTAsync_successData::serverURI()'],['../struct_m_q_t_t_async__success_data5.html#a95309fdf27015b12bc4adf56306e557b',1,'MQTTAsync_successData5::serverURI()']]], - ['serveruricount_322',['serverURIcount',['../struct_m_q_t_t_async__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTAsync_connectOptions']]], - ['serveruris_323',['serverURIs',['../struct_m_q_t_t_async__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTAsync_connectOptions']]], - ['sessionpresent_324',['sessionPresent',['../struct_m_q_t_t_async__success_data.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTAsync_successData::sessionPresent()'],['../struct_m_q_t_t_async__success_data5.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTAsync_successData5::sessionPresent()']]], - ['ssl_325',['ssl',['../struct_m_q_t_t_async__connect_options.html#a86fd59846f3ba2082fd99906c6b496a6',1,'MQTTAsync_connectOptions']]], - ['ssl_5ferror_5fcb_326',['ssl_error_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a76c7b40e2e258d2f898b53165ada2b70',1,'MQTTAsync_SSLOptions']]], - ['ssl_5ferror_5fcontext_327',['ssl_error_context',['../struct_m_q_t_t_async___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTAsync_SSLOptions']]], - ['ssl_5fpsk_5fcb_328',['ssl_psk_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a83c1245259a491ea9daf872ce04b5e46',1,'MQTTAsync_SSLOptions']]], - ['ssl_5fpsk_5fcontext_329',['ssl_psk_context',['../struct_m_q_t_t_async___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTAsync_SSLOptions']]], - ['sslversion_330',['sslVersion',['../struct_m_q_t_t_async___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTAsync_SSLOptions']]], - ['struct_5fid_331',['struct_id',['../struct_m_q_t_t_async__init__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_init_options::struct_id()'],['../struct_m_q_t_t_async__message.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_message::struct_id()'],['../struct_m_q_t_t_async__connect_data.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_connectData::struct_id()'],['../struct_m_q_t_t_async__failure_data5.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_failureData5::struct_id()'],['../struct_m_q_t_t_async__success_data5.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_successData5::struct_id()'],['../struct_m_q_t_t_async__response_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_responseOptions::struct_id()'],['../struct_m_q_t_t_async__create_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_createOptions::struct_id()'],['../struct_m_q_t_t_async__will_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_willOptions::struct_id()'],['../struct_m_q_t_t_async___s_s_l_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_SSLOptions::struct_id()'],['../struct_m_q_t_t_async__connect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_connectOptions::struct_id()'],['../struct_m_q_t_t_async__disconnect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_disconnectOptions::struct_id()'],['../struct_m_q_t_t_subscribe__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTSubscribe_options::struct_id()']]], - ['struct_5fversion_332',['struct_version',['../struct_m_q_t_t_async__init__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_init_options::struct_version()'],['../struct_m_q_t_t_async__message.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_message::struct_version()'],['../struct_m_q_t_t_async__connect_data.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_connectData::struct_version()'],['../struct_m_q_t_t_async__failure_data5.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_failureData5::struct_version()'],['../struct_m_q_t_t_async__success_data5.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_successData5::struct_version()'],['../struct_m_q_t_t_async__response_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_responseOptions::struct_version()'],['../struct_m_q_t_t_async__create_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_createOptions::struct_version()'],['../struct_m_q_t_t_async__will_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_willOptions::struct_version()'],['../struct_m_q_t_t_async___s_s_l_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_SSLOptions::struct_version()'],['../struct_m_q_t_t_async__connect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_connectOptions::struct_version()'],['../struct_m_q_t_t_async__disconnect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_disconnectOptions::struct_version()'],['../struct_m_q_t_t_subscribe__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTSubscribe_options::struct_version()']]], - ['sub_333',['sub',['../struct_m_q_t_t_async__success_data5.html#a26c7d90bad0e00a056dff117b9111346',1,'MQTTAsync_successData5']]], - ['subscription_20example_334',['Subscription example',['../subscribe.html',1,'']]], - ['subscribeoptions_335',['subscribeOptions',['../struct_m_q_t_t_async__response_options.html#a16a3cd2a8c69669e9ed6e420ccd9c517',1,'MQTTAsync_responseOptions']]], - ['subscribeoptionscount_336',['subscribeOptionsCount',['../struct_m_q_t_t_async__response_options.html#a1a4b9bb2780472ec7bb65d0df1bf5d26',1,'MQTTAsync_responseOptions']]], - ['subscribeoptionslist_337',['subscribeOptionsList',['../struct_m_q_t_t_async__response_options.html#a98f71c5d03dc5ee86fd9dc0119ccb961',1,'MQTTAsync_responseOptions']]], - ['subscription_20wildcards_338',['Subscription wildcards',['../wildcard.html',1,'']]] + ['sendwhiledisconnected_322',['sendWhileDisconnected',['../struct_m_q_t_t_async__create_options.html#a078cd68d8f896ce7eac0cc83d4486a2c',1,'MQTTAsync_createOptions']]], + ['serveruri_323',['serverURI',['../struct_m_q_t_t_async__success_data.html#a95309fdf27015b12bc4adf56306e557b',1,'MQTTAsync_successData::serverURI()'],['../struct_m_q_t_t_async__success_data5.html#a95309fdf27015b12bc4adf56306e557b',1,'MQTTAsync_successData5::serverURI()']]], + ['serveruricount_324',['serverURIcount',['../struct_m_q_t_t_async__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTAsync_connectOptions']]], + ['serveruris_325',['serverURIs',['../struct_m_q_t_t_async__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTAsync_connectOptions']]], + ['sessionpresent_326',['sessionPresent',['../struct_m_q_t_t_async__success_data.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTAsync_successData::sessionPresent()'],['../struct_m_q_t_t_async__success_data5.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTAsync_successData5::sessionPresent()']]], + ['ssl_327',['ssl',['../struct_m_q_t_t_async__connect_options.html#a86fd59846f3ba2082fd99906c6b496a6',1,'MQTTAsync_connectOptions']]], + ['ssl_5ferror_5fcb_328',['ssl_error_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a21b6ca8a73ba197e65f6a93365d39c04',1,'MQTTAsync_SSLOptions']]], + ['ssl_5ferror_5fcontext_329',['ssl_error_context',['../struct_m_q_t_t_async___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTAsync_SSLOptions']]], + ['ssl_5fpsk_5fcb_330',['ssl_psk_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a94317cdaf352f9ae496976f8a30f8fee',1,'MQTTAsync_SSLOptions']]], + ['ssl_5fpsk_5fcontext_331',['ssl_psk_context',['../struct_m_q_t_t_async___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTAsync_SSLOptions']]], + ['sslversion_332',['sslVersion',['../struct_m_q_t_t_async___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTAsync_SSLOptions']]], + ['struct_5fid_333',['struct_id',['../struct_m_q_t_t_subscribe__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTSubscribe_options::struct_id()'],['../struct_m_q_t_t_async__disconnect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_disconnectOptions::struct_id()'],['../struct_m_q_t_t_async__connect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_connectOptions::struct_id()'],['../struct_m_q_t_t_async___s_s_l_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_SSLOptions::struct_id()'],['../struct_m_q_t_t_async__will_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_willOptions::struct_id()'],['../struct_m_q_t_t_async__create_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_createOptions::struct_id()'],['../struct_m_q_t_t_async__success_data5.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_successData5::struct_id()'],['../struct_m_q_t_t_async__failure_data5.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_failureData5::struct_id()'],['../struct_m_q_t_t_async__connect_data.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_connectData::struct_id()'],['../struct_m_q_t_t_async__message.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_message::struct_id()'],['../struct_m_q_t_t_async__init__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_init_options::struct_id()'],['../struct_m_q_t_t_async__response_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_responseOptions::struct_id()']]], + ['struct_5fversion_334',['struct_version',['../struct_m_q_t_t_async__create_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_createOptions::struct_version()'],['../struct_m_q_t_t_subscribe__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTSubscribe_options::struct_version()'],['../struct_m_q_t_t_async__disconnect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_disconnectOptions::struct_version()'],['../struct_m_q_t_t_async__connect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_connectOptions::struct_version()'],['../struct_m_q_t_t_async___s_s_l_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_SSLOptions::struct_version()'],['../struct_m_q_t_t_async__will_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_willOptions::struct_version()'],['../struct_m_q_t_t_async__response_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_responseOptions::struct_version()'],['../struct_m_q_t_t_async__success_data5.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_successData5::struct_version()'],['../struct_m_q_t_t_async__failure_data5.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_failureData5::struct_version()'],['../struct_m_q_t_t_async__connect_data.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_connectData::struct_version()'],['../struct_m_q_t_t_async__message.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_message::struct_version()'],['../struct_m_q_t_t_async__init__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_init_options::struct_version()']]], + ['sub_335',['sub',['../struct_m_q_t_t_async__success_data5.html#a26c7d90bad0e00a056dff117b9111346',1,'MQTTAsync_successData5']]], + ['subscribeoptions_336',['subscribeOptions',['../struct_m_q_t_t_async__response_options.html#a16a3cd2a8c69669e9ed6e420ccd9c517',1,'MQTTAsync_responseOptions']]], + ['subscribeoptionscount_337',['subscribeOptionsCount',['../struct_m_q_t_t_async__response_options.html#a1a4b9bb2780472ec7bb65d0df1bf5d26',1,'MQTTAsync_responseOptions']]], + ['subscribeoptionslist_338',['subscribeOptionsList',['../struct_m_q_t_t_async__response_options.html#a98f71c5d03dc5ee86fd9dc0119ccb961',1,'MQTTAsync_responseOptions']]], + ['subscription_20example_339',['Subscription example',['../subscribe.html',1,'']]], + ['subscription_20wildcards_340',['Subscription wildcards',['../wildcard.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/classes_0.html b/docs/MQTTAsync/html/search/classes_0.html index f7e4c14e..af8159ee 100644 --- a/docs/MQTTAsync/html/search/classes_0.html +++ b/docs/MQTTAsync/html/search/classes_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/classes_0.js b/docs/MQTTAsync/html/search/classes_0.js index 2fc5334b..304829c9 100644 --- a/docs/MQTTAsync/html/search/classes_0.js +++ b/docs/MQTTAsync/html/search/classes_0.js @@ -1,22 +1,22 @@ var searchData= [ - ['mqttasync_5fconnectdata_351',['MQTTAsync_connectData',['../struct_m_q_t_t_async__connect_data.html',1,'']]], - ['mqttasync_5fconnectoptions_352',['MQTTAsync_connectOptions',['../struct_m_q_t_t_async__connect_options.html',1,'']]], - ['mqttasync_5fcreateoptions_353',['MQTTAsync_createOptions',['../struct_m_q_t_t_async__create_options.html',1,'']]], - ['mqttasync_5fdisconnectoptions_354',['MQTTAsync_disconnectOptions',['../struct_m_q_t_t_async__disconnect_options.html',1,'']]], - ['mqttasync_5ffailuredata_355',['MQTTAsync_failureData',['../struct_m_q_t_t_async__failure_data.html',1,'']]], - ['mqttasync_5ffailuredata5_356',['MQTTAsync_failureData5',['../struct_m_q_t_t_async__failure_data5.html',1,'']]], - ['mqttasync_5finit_5foptions_357',['MQTTAsync_init_options',['../struct_m_q_t_t_async__init__options.html',1,'']]], - ['mqttasync_5fmessage_358',['MQTTAsync_message',['../struct_m_q_t_t_async__message.html',1,'']]], - ['mqttasync_5fnamevalue_359',['MQTTAsync_nameValue',['../struct_m_q_t_t_async__name_value.html',1,'']]], - ['mqttasync_5fresponseoptions_360',['MQTTAsync_responseOptions',['../struct_m_q_t_t_async__response_options.html',1,'']]], - ['mqttasync_5fssloptions_361',['MQTTAsync_SSLOptions',['../struct_m_q_t_t_async___s_s_l_options.html',1,'']]], - ['mqttasync_5fsuccessdata_362',['MQTTAsync_successData',['../struct_m_q_t_t_async__success_data.html',1,'']]], - ['mqttasync_5fsuccessdata5_363',['MQTTAsync_successData5',['../struct_m_q_t_t_async__success_data5.html',1,'']]], - ['mqttasync_5fwilloptions_364',['MQTTAsync_willOptions',['../struct_m_q_t_t_async__will_options.html',1,'']]], - ['mqttclient_5fpersistence_365',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], - ['mqttlenstring_366',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], - ['mqttproperties_367',['MQTTProperties',['../struct_m_q_t_t_properties.html',1,'']]], - ['mqttproperty_368',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], - ['mqttsubscribe_5foptions_369',['MQTTSubscribe_options',['../struct_m_q_t_t_subscribe__options.html',1,'']]] + ['mqttasync_5fconnectdata_353',['MQTTAsync_connectData',['../struct_m_q_t_t_async__connect_data.html',1,'']]], + ['mqttasync_5fconnectoptions_354',['MQTTAsync_connectOptions',['../struct_m_q_t_t_async__connect_options.html',1,'']]], + ['mqttasync_5fcreateoptions_355',['MQTTAsync_createOptions',['../struct_m_q_t_t_async__create_options.html',1,'']]], + ['mqttasync_5fdisconnectoptions_356',['MQTTAsync_disconnectOptions',['../struct_m_q_t_t_async__disconnect_options.html',1,'']]], + ['mqttasync_5ffailuredata_357',['MQTTAsync_failureData',['../struct_m_q_t_t_async__failure_data.html',1,'']]], + ['mqttasync_5ffailuredata5_358',['MQTTAsync_failureData5',['../struct_m_q_t_t_async__failure_data5.html',1,'']]], + ['mqttasync_5finit_5foptions_359',['MQTTAsync_init_options',['../struct_m_q_t_t_async__init__options.html',1,'']]], + ['mqttasync_5fmessage_360',['MQTTAsync_message',['../struct_m_q_t_t_async__message.html',1,'']]], + ['mqttasync_5fnamevalue_361',['MQTTAsync_nameValue',['../struct_m_q_t_t_async__name_value.html',1,'']]], + ['mqttasync_5fresponseoptions_362',['MQTTAsync_responseOptions',['../struct_m_q_t_t_async__response_options.html',1,'']]], + ['mqttasync_5fssloptions_363',['MQTTAsync_SSLOptions',['../struct_m_q_t_t_async___s_s_l_options.html',1,'']]], + ['mqttasync_5fsuccessdata_364',['MQTTAsync_successData',['../struct_m_q_t_t_async__success_data.html',1,'']]], + ['mqttasync_5fsuccessdata5_365',['MQTTAsync_successData5',['../struct_m_q_t_t_async__success_data5.html',1,'']]], + ['mqttasync_5fwilloptions_366',['MQTTAsync_willOptions',['../struct_m_q_t_t_async__will_options.html',1,'']]], + ['mqttclient_5fpersistence_367',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], + ['mqttlenstring_368',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], + ['mqttproperties_369',['MQTTProperties',['../struct_m_q_t_t_properties.html',1,'']]], + ['mqttproperty_370',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], + ['mqttsubscribe_5foptions_371',['MQTTSubscribe_options',['../struct_m_q_t_t_subscribe__options.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/close.png b/docs/MQTTAsync/html/search/close.png deleted file mode 100644 index 9342d3df..00000000 Binary files a/docs/MQTTAsync/html/search/close.png and /dev/null differ diff --git a/docs/MQTTAsync/html/search/close.svg b/docs/MQTTAsync/html/search/close.svg new file mode 100644 index 00000000..a933eea1 --- /dev/null +++ b/docs/MQTTAsync/html/search/close.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/docs/MQTTAsync/html/search/defines_0.html b/docs/MQTTAsync/html/search/defines_0.html index 2deb369f..15cc3de3 100644 --- a/docs/MQTTAsync/html/search/defines_0.html +++ b/docs/MQTTAsync/html/search/defines_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/defines_0.js b/docs/MQTTAsync/html/search/defines_0.js index d4579a8b..8662f33e 100644 --- a/docs/MQTTAsync/html/search/defines_0.js +++ b/docs/MQTTAsync/html/search/defines_0.js @@ -1,57 +1,57 @@ var searchData= [ - ['mqtt_5fbad_5fsubscribe_643',['MQTT_BAD_SUBSCRIBE',['../_m_q_t_t_async_8h.html#ade337b363b7f4bc7c1a7b2858e0380bd',1,'MQTTAsync.h']]], - ['mqtt_5finvalid_5fproperty_5fid_644',['MQTT_INVALID_PROPERTY_ID',['../_m_q_t_t_properties_8h.html#afc56d2e8937a0c8f180d68ad93945945',1,'MQTTProperties.h']]], - ['mqtt_5fssl_5fversion_5fdefault_645',['MQTT_SSL_VERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a2549ea897af26c76198284731db9e721',1,'MQTTAsync.h']]], - ['mqtt_5fssl_5fversion_5ftls_5f1_5f0_646',['MQTT_SSL_VERSION_TLS_1_0',['../_m_q_t_t_async_8h.html#a7e5da3d6f0d2b53409bbfcf6e56f3d2d',1,'MQTTAsync.h']]], - ['mqtt_5fssl_5fversion_5ftls_5f1_5f1_647',['MQTT_SSL_VERSION_TLS_1_1',['../_m_q_t_t_async_8h.html#abdff87efa3f2ee473a1591e10638b537',1,'MQTTAsync.h']]], - ['mqtt_5fssl_5fversion_5ftls_5f1_5f2_648',['MQTT_SSL_VERSION_TLS_1_2',['../_m_q_t_t_async_8h.html#a3a94dbdeafbb73c73a068e7c2085fbab',1,'MQTTAsync.h']]], - ['mqttasync_5f0_5flen_5fwill_5ftopic_649',['MQTTASYNC_0_LEN_WILL_TOPIC',['../_m_q_t_t_async_8h.html#a47b3aed75983f48a503e1cad6c862004',1,'MQTTAsync.h']]], - ['mqttasync_5fbad_5fmqtt_5foption_650',['MQTTASYNC_BAD_MQTT_OPTION',['../_m_q_t_t_async_8h.html#af6f97562573876867ba77460a51ca1d1',1,'MQTTAsync.h']]], - ['mqttasync_5fbad_5fprotocol_651',['MQTTASYNC_BAD_PROTOCOL',['../_m_q_t_t_async_8h.html#a785250cd4a1938ffeeff67b3538abfba',1,'MQTTAsync.h']]], - ['mqttasync_5fbad_5fqos_652',['MQTTASYNC_BAD_QOS',['../_m_q_t_t_async_8h.html#a64d111778ce4e0d3a62808f6db11f224',1,'MQTTAsync.h']]], - ['mqttasync_5fbad_5fstructure_653',['MQTTASYNC_BAD_STRUCTURE',['../_m_q_t_t_async_8h.html#a241fc8db46dca132d591bc2be92247ba',1,'MQTTAsync.h']]], - ['mqttasync_5fbad_5futf8_5fstring_654',['MQTTASYNC_BAD_UTF8_STRING',['../_m_q_t_t_async_8h.html#a80cbe091930c11b67ca719b3e385aa26',1,'MQTTAsync.h']]], - ['mqttasync_5fcalloptions_5finitializer_655',['MQTTAsync_callOptions_initializer',['../_m_q_t_t_async_8h.html#a570185766fc8a9da410a6f84915b6df5',1,'MQTTAsync.h']]], - ['mqttasync_5fcommand_5fignored_656',['MQTTASYNC_COMMAND_IGNORED',['../_m_q_t_t_async_8h.html#a8278cf4b50dd818c31fa12e45f074b5c',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectdata_5finitializer_657',['MQTTAsync_connectData_initializer',['../_m_q_t_t_async_8h.html#a2e415e68016ae56f6bbbbdc9840a9c6e',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer_658',['MQTTAsync_connectOptions_initializer',['../_m_q_t_t_async_8h.html#ae18b51f22784a43803eb809d6a0c2492',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer5_659',['MQTTAsync_connectOptions_initializer5',['../_m_q_t_t_async_8h.html#abd403ce21f7aa0348ae1d3eefd031a5d',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer5_5fws_660',['MQTTAsync_connectOptions_initializer5_ws',['../_m_q_t_t_async_8h.html#a513bfbec7b7d39c827240db75aa4044b',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer_5fws_661',['MQTTAsync_connectOptions_initializer_ws',['../_m_q_t_t_async_8h.html#a080951d916d7a58c4ceff8c6bacfe313',1,'MQTTAsync.h']]], - ['mqttasync_5fcreateoptions_5finitializer_662',['MQTTAsync_createOptions_initializer',['../_m_q_t_t_async_8h.html#a5fedeafef4753f09b1bcb92773564786',1,'MQTTAsync.h']]], - ['mqttasync_5fcreateoptions_5finitializer5_663',['MQTTAsync_createOptions_initializer5',['../_m_q_t_t_async_8h.html#a0008776a46e7268ccbef4774ce3d4579',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnected_664',['MQTTASYNC_DISCONNECTED',['../_m_q_t_t_async_8h.html#a66c0f30b329bc770145c2f04b3929df6',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnectoptions_5finitializer_665',['MQTTAsync_disconnectOptions_initializer',['../_m_q_t_t_async_8h.html#a2fd5d6df31928ae468f3f2e522b9c707',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnectoptions_5finitializer5_666',['MQTTAsync_disconnectOptions_initializer5',['../_m_q_t_t_async_8h.html#aaa278001953dc129003eff83c8e7b3db',1,'MQTTAsync.h']]], - ['mqttasync_5ffailure_667',['MQTTASYNC_FAILURE',['../_m_q_t_t_async_8h.html#a7c8230fef85fc04b8a1035501f3be406',1,'MQTTAsync.h']]], - ['mqttasync_5ffailuredata5_5finitializer_668',['MQTTAsync_failureData5_initializer',['../_m_q_t_t_async_8h.html#a53ce2002ae2c2579575bb41c48c51c29',1,'MQTTAsync.h']]], - ['mqttasync_5finit_5foptions_5finitializer_669',['MQTTAsync_init_options_initializer',['../_m_q_t_t_async_8h.html#a866e023f70141969d48597930c0ee313',1,'MQTTAsync.h']]], - ['mqttasync_5fmax_5fbuffered_670',['MQTTASYNC_MAX_BUFFERED',['../_m_q_t_t_async_8h.html#a2efee8e190e2c3690c680bde060f78ab',1,'MQTTAsync.h']]], - ['mqttasync_5fmax_5fbuffered_5fmessages_671',['MQTTASYNC_MAX_BUFFERED_MESSAGES',['../_m_q_t_t_async_8h.html#a4e338072cfd5291b579e4f0c99a6e773',1,'MQTTAsync.h']]], - ['mqttasync_5fmax_5fmessages_5finflight_672',['MQTTASYNC_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_async_8h.html#ad577286d43c72fbc49818aac42f4e24a',1,'MQTTAsync.h']]], - ['mqttasync_5fmessage_5finitializer_673',['MQTTAsync_message_initializer',['../_m_q_t_t_async_8h.html#a6a85061dadab532f28e96e5ab3c600e9',1,'MQTTAsync.h']]], - ['mqttasync_5fno_5fmore_5fmsgids_674',['MQTTASYNC_NO_MORE_MSGIDS',['../_m_q_t_t_async_8h.html#ab0f54d0bae2c74849022a8009e5d6ff7',1,'MQTTAsync.h']]], - ['mqttasync_5fnull_5fparameter_675',['MQTTASYNC_NULL_PARAMETER',['../_m_q_t_t_async_8h.html#ab88e1ebcee991099a72429e52a8253fd',1,'MQTTAsync.h']]], - ['mqttasync_5foperation_5fincomplete_676',['MQTTASYNC_OPERATION_INCOMPLETE',['../_m_q_t_t_async_8h.html#aee1b79d0632bec0fe49eb7ea1abd3b2e',1,'MQTTAsync.h']]], - ['mqttasync_5fpersistence_5ferror_677',['MQTTASYNC_PERSISTENCE_ERROR',['../_m_q_t_t_async_8h.html#a4edf1249c75abd4975fec8ddeae2cdc9',1,'MQTTAsync.h']]], - ['mqttasync_5fresponseoptions_5finitializer_678',['MQTTAsync_responseOptions_initializer',['../_m_q_t_t_async_8h.html#a3f8b408243b5c2369bc9758f2edf0878',1,'MQTTAsync.h']]], - ['mqttasync_5fssl_5fnot_5fsupported_679',['MQTTASYNC_SSL_NOT_SUPPORTED',['../_m_q_t_t_async_8h.html#a6992c00553db1608aef9e162c161d73c',1,'MQTTAsync.h']]], - ['mqttasync_5fssloptions_5finitializer_680',['MQTTAsync_SSLOptions_initializer',['../_m_q_t_t_async_8h.html#aac935e2e9d770a53ee8189f128530511',1,'MQTTAsync.h']]], - ['mqttasync_5fsuccess_681',['MQTTASYNC_SUCCESS',['../_m_q_t_t_async_8h.html#afe0cffcce8efe25186f79c51ac44e16f',1,'MQTTAsync.h']]], - ['mqttasync_5fsuccessdata5_5finitializer_682',['MQTTAsync_successData5_initializer',['../_m_q_t_t_async_8h.html#a6182ec90ec4a134465f627b324ac5a41',1,'MQTTAsync.h']]], - ['mqttasync_5ftopicname_5ftruncated_683',['MQTTASYNC_TOPICNAME_TRUNCATED',['../_m_q_t_t_async_8h.html#a77a7106d97ff60be3fe70f90b1867800',1,'MQTTAsync.h']]], - ['mqttasync_5ftrue_684',['MQTTASYNC_TRUE',['../_m_q_t_t_async_8h.html#a61e6ee632e63312d382e2fcbe427f01a',1,'MQTTAsync.h']]], - ['mqttasync_5fwilloptions_5finitializer_685',['MQTTAsync_willOptions_initializer',['../_m_q_t_t_async_8h.html#a6c45768e1b28844f2ac0f6ac68709730',1,'MQTTAsync.h']]], - ['mqttasync_5fwrong_5fmqtt_5fversion_686',['MQTTASYNC_WRONG_MQTT_VERSION',['../_m_q_t_t_async_8h.html#af5df806e9767e1e3182fe089a8ee551b',1,'MQTTAsync.h']]], - ['mqttclient_5fpersistence_5fdefault_687',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5ferror_688',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fnone_689',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fuser_690',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], - ['mqttproperties_5finitializer_691',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], - ['mqttsubscribe_5foptions_5finitializer_692',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], - ['mqttversion_5f3_5f1_693',['MQTTVERSION_3_1',['../_m_q_t_t_async_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTAsync.h']]], - ['mqttversion_5f3_5f1_5f1_694',['MQTTVERSION_3_1_1',['../_m_q_t_t_async_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTAsync.h']]], - ['mqttversion_5f5_695',['MQTTVERSION_5',['../_m_q_t_t_async_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTAsync.h']]], - ['mqttversion_5fdefault_696',['MQTTVERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTAsync.h']]] + ['mqtt_5fbad_5fsubscribe_645',['MQTT_BAD_SUBSCRIBE',['../_m_q_t_t_async_8h.html#ade337b363b7f4bc7c1a7b2858e0380bd',1,'MQTTAsync.h']]], + ['mqtt_5finvalid_5fproperty_5fid_646',['MQTT_INVALID_PROPERTY_ID',['../_m_q_t_t_properties_8h.html#afc56d2e8937a0c8f180d68ad93945945',1,'MQTTProperties.h']]], + ['mqtt_5fssl_5fversion_5fdefault_647',['MQTT_SSL_VERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a2549ea897af26c76198284731db9e721',1,'MQTTAsync.h']]], + ['mqtt_5fssl_5fversion_5ftls_5f1_5f0_648',['MQTT_SSL_VERSION_TLS_1_0',['../_m_q_t_t_async_8h.html#a7e5da3d6f0d2b53409bbfcf6e56f3d2d',1,'MQTTAsync.h']]], + ['mqtt_5fssl_5fversion_5ftls_5f1_5f1_649',['MQTT_SSL_VERSION_TLS_1_1',['../_m_q_t_t_async_8h.html#abdff87efa3f2ee473a1591e10638b537',1,'MQTTAsync.h']]], + ['mqtt_5fssl_5fversion_5ftls_5f1_5f2_650',['MQTT_SSL_VERSION_TLS_1_2',['../_m_q_t_t_async_8h.html#a3a94dbdeafbb73c73a068e7c2085fbab',1,'MQTTAsync.h']]], + ['mqttasync_5f0_5flen_5fwill_5ftopic_651',['MQTTASYNC_0_LEN_WILL_TOPIC',['../_m_q_t_t_async_8h.html#a47b3aed75983f48a503e1cad6c862004',1,'MQTTAsync.h']]], + ['mqttasync_5fbad_5fmqtt_5foption_652',['MQTTASYNC_BAD_MQTT_OPTION',['../_m_q_t_t_async_8h.html#af6f97562573876867ba77460a51ca1d1',1,'MQTTAsync.h']]], + ['mqttasync_5fbad_5fprotocol_653',['MQTTASYNC_BAD_PROTOCOL',['../_m_q_t_t_async_8h.html#a785250cd4a1938ffeeff67b3538abfba',1,'MQTTAsync.h']]], + ['mqttasync_5fbad_5fqos_654',['MQTTASYNC_BAD_QOS',['../_m_q_t_t_async_8h.html#a64d111778ce4e0d3a62808f6db11f224',1,'MQTTAsync.h']]], + ['mqttasync_5fbad_5fstructure_655',['MQTTASYNC_BAD_STRUCTURE',['../_m_q_t_t_async_8h.html#a241fc8db46dca132d591bc2be92247ba',1,'MQTTAsync.h']]], + ['mqttasync_5fbad_5futf8_5fstring_656',['MQTTASYNC_BAD_UTF8_STRING',['../_m_q_t_t_async_8h.html#a80cbe091930c11b67ca719b3e385aa26',1,'MQTTAsync.h']]], + ['mqttasync_5fcalloptions_5finitializer_657',['MQTTAsync_callOptions_initializer',['../_m_q_t_t_async_8h.html#a570185766fc8a9da410a6f84915b6df5',1,'MQTTAsync.h']]], + ['mqttasync_5fcommand_5fignored_658',['MQTTASYNC_COMMAND_IGNORED',['../_m_q_t_t_async_8h.html#a8278cf4b50dd818c31fa12e45f074b5c',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectdata_5finitializer_659',['MQTTAsync_connectData_initializer',['../_m_q_t_t_async_8h.html#a2e415e68016ae56f6bbbbdc9840a9c6e',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer_660',['MQTTAsync_connectOptions_initializer',['../_m_q_t_t_async_8h.html#ae18b51f22784a43803eb809d6a0c2492',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer5_661',['MQTTAsync_connectOptions_initializer5',['../_m_q_t_t_async_8h.html#abd403ce21f7aa0348ae1d3eefd031a5d',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer5_5fws_662',['MQTTAsync_connectOptions_initializer5_ws',['../_m_q_t_t_async_8h.html#a513bfbec7b7d39c827240db75aa4044b',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer_5fws_663',['MQTTAsync_connectOptions_initializer_ws',['../_m_q_t_t_async_8h.html#a080951d916d7a58c4ceff8c6bacfe313',1,'MQTTAsync.h']]], + ['mqttasync_5fcreateoptions_5finitializer_664',['MQTTAsync_createOptions_initializer',['../_m_q_t_t_async_8h.html#a5fedeafef4753f09b1bcb92773564786',1,'MQTTAsync.h']]], + ['mqttasync_5fcreateoptions_5finitializer5_665',['MQTTAsync_createOptions_initializer5',['../_m_q_t_t_async_8h.html#a0008776a46e7268ccbef4774ce3d4579',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnected_666',['MQTTASYNC_DISCONNECTED',['../_m_q_t_t_async_8h.html#a66c0f30b329bc770145c2f04b3929df6',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnectoptions_5finitializer_667',['MQTTAsync_disconnectOptions_initializer',['../_m_q_t_t_async_8h.html#a2fd5d6df31928ae468f3f2e522b9c707',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnectoptions_5finitializer5_668',['MQTTAsync_disconnectOptions_initializer5',['../_m_q_t_t_async_8h.html#aaa278001953dc129003eff83c8e7b3db',1,'MQTTAsync.h']]], + ['mqttasync_5ffailure_669',['MQTTASYNC_FAILURE',['../_m_q_t_t_async_8h.html#a7c8230fef85fc04b8a1035501f3be406',1,'MQTTAsync.h']]], + ['mqttasync_5ffailuredata5_5finitializer_670',['MQTTAsync_failureData5_initializer',['../_m_q_t_t_async_8h.html#a53ce2002ae2c2579575bb41c48c51c29',1,'MQTTAsync.h']]], + ['mqttasync_5finit_5foptions_5finitializer_671',['MQTTAsync_init_options_initializer',['../_m_q_t_t_async_8h.html#a866e023f70141969d48597930c0ee313',1,'MQTTAsync.h']]], + ['mqttasync_5fmax_5fbuffered_672',['MQTTASYNC_MAX_BUFFERED',['../_m_q_t_t_async_8h.html#a2efee8e190e2c3690c680bde060f78ab',1,'MQTTAsync.h']]], + ['mqttasync_5fmax_5fbuffered_5fmessages_673',['MQTTASYNC_MAX_BUFFERED_MESSAGES',['../_m_q_t_t_async_8h.html#a4e338072cfd5291b579e4f0c99a6e773',1,'MQTTAsync.h']]], + ['mqttasync_5fmax_5fmessages_5finflight_674',['MQTTASYNC_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_async_8h.html#ad577286d43c72fbc49818aac42f4e24a',1,'MQTTAsync.h']]], + ['mqttasync_5fmessage_5finitializer_675',['MQTTAsync_message_initializer',['../_m_q_t_t_async_8h.html#a6a85061dadab532f28e96e5ab3c600e9',1,'MQTTAsync.h']]], + ['mqttasync_5fno_5fmore_5fmsgids_676',['MQTTASYNC_NO_MORE_MSGIDS',['../_m_q_t_t_async_8h.html#ab0f54d0bae2c74849022a8009e5d6ff7',1,'MQTTAsync.h']]], + ['mqttasync_5fnull_5fparameter_677',['MQTTASYNC_NULL_PARAMETER',['../_m_q_t_t_async_8h.html#ab88e1ebcee991099a72429e52a8253fd',1,'MQTTAsync.h']]], + ['mqttasync_5foperation_5fincomplete_678',['MQTTASYNC_OPERATION_INCOMPLETE',['../_m_q_t_t_async_8h.html#aee1b79d0632bec0fe49eb7ea1abd3b2e',1,'MQTTAsync.h']]], + ['mqttasync_5fpersistence_5ferror_679',['MQTTASYNC_PERSISTENCE_ERROR',['../_m_q_t_t_async_8h.html#a4edf1249c75abd4975fec8ddeae2cdc9',1,'MQTTAsync.h']]], + ['mqttasync_5fresponseoptions_5finitializer_680',['MQTTAsync_responseOptions_initializer',['../_m_q_t_t_async_8h.html#a3f8b408243b5c2369bc9758f2edf0878',1,'MQTTAsync.h']]], + ['mqttasync_5fssl_5fnot_5fsupported_681',['MQTTASYNC_SSL_NOT_SUPPORTED',['../_m_q_t_t_async_8h.html#a6992c00553db1608aef9e162c161d73c',1,'MQTTAsync.h']]], + ['mqttasync_5fssloptions_5finitializer_682',['MQTTAsync_SSLOptions_initializer',['../_m_q_t_t_async_8h.html#aac935e2e9d770a53ee8189f128530511',1,'MQTTAsync.h']]], + ['mqttasync_5fsuccess_683',['MQTTASYNC_SUCCESS',['../_m_q_t_t_async_8h.html#afe0cffcce8efe25186f79c51ac44e16f',1,'MQTTAsync.h']]], + ['mqttasync_5fsuccessdata5_5finitializer_684',['MQTTAsync_successData5_initializer',['../_m_q_t_t_async_8h.html#a6182ec90ec4a134465f627b324ac5a41',1,'MQTTAsync.h']]], + ['mqttasync_5ftopicname_5ftruncated_685',['MQTTASYNC_TOPICNAME_TRUNCATED',['../_m_q_t_t_async_8h.html#a77a7106d97ff60be3fe70f90b1867800',1,'MQTTAsync.h']]], + ['mqttasync_5ftrue_686',['MQTTASYNC_TRUE',['../_m_q_t_t_async_8h.html#a61e6ee632e63312d382e2fcbe427f01a',1,'MQTTAsync.h']]], + ['mqttasync_5fwilloptions_5finitializer_687',['MQTTAsync_willOptions_initializer',['../_m_q_t_t_async_8h.html#a6c45768e1b28844f2ac0f6ac68709730',1,'MQTTAsync.h']]], + ['mqttasync_5fwrong_5fmqtt_5fversion_688',['MQTTASYNC_WRONG_MQTT_VERSION',['../_m_q_t_t_async_8h.html#af5df806e9767e1e3182fe089a8ee551b',1,'MQTTAsync.h']]], + ['mqttclient_5fpersistence_5fdefault_689',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5ferror_690',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fnone_691',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fuser_692',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], + ['mqttproperties_5finitializer_693',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], + ['mqttsubscribe_5foptions_5finitializer_694',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], + ['mqttversion_5f3_5f1_695',['MQTTVERSION_3_1',['../_m_q_t_t_async_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTAsync.h']]], + ['mqttversion_5f3_5f1_5f1_696',['MQTTVERSION_3_1_1',['../_m_q_t_t_async_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTAsync.h']]], + ['mqttversion_5f5_697',['MQTTVERSION_5',['../_m_q_t_t_async_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTAsync.h']]], + ['mqttversion_5fdefault_698',['MQTTVERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTAsync.h']]] ]; diff --git a/docs/MQTTAsync/html/search/enums_0.html b/docs/MQTTAsync/html/search/enums_0.html index 9669700a..141fff57 100644 --- a/docs/MQTTAsync/html/search/enums_0.html +++ b/docs/MQTTAsync/html/search/enums_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/enums_0.js b/docs/MQTTAsync/html/search/enums_0.js index ce0a8a51..ff62bd10 100644 --- a/docs/MQTTAsync/html/search/enums_0.js +++ b/docs/MQTTAsync/html/search/enums_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['mqttasync_5ftrace_5flevels_553',['MQTTASYNC_TRACE_LEVELS',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5',1,'MQTTAsync.h']]], - ['mqttpropertycodes_554',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], - ['mqttpropertytypes_555',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], - ['mqttreasoncodes_556',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]] + ['mqttasync_5ftrace_5flevels_555',['MQTTASYNC_TRACE_LEVELS',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5',1,'MQTTAsync.h']]], + ['mqttpropertycodes_556',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], + ['mqttpropertytypes_557',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], + ['mqttreasoncodes_558',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]] ]; diff --git a/docs/MQTTAsync/html/search/enumvalues_0.html b/docs/MQTTAsync/html/search/enumvalues_0.html index 92862489..0d131d95 100644 --- a/docs/MQTTAsync/html/search/enumvalues_0.html +++ b/docs/MQTTAsync/html/search/enumvalues_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/enumvalues_0.js b/docs/MQTTAsync/html/search/enumvalues_0.js index a58348ca..c8f9ca0d 100644 --- a/docs/MQTTAsync/html/search/enumvalues_0.js +++ b/docs/MQTTAsync/html/search/enumvalues_0.js @@ -1,89 +1,89 @@ var searchData= [ - ['mqttasync_5ftrace_5ferror_557',['MQTTASYNC_TRACE_ERROR',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5ac428f74ca453dacb7b8271ca741266e8',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5ffatal_558',['MQTTASYNC_TRACE_FATAL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a0b91d2213ebb6655e41a7f6ce1a42295',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fmaximum_559',['MQTTASYNC_TRACE_MAXIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5af684f42971cced68693ce993703548c1',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fmedium_560',['MQTTASYNC_TRACE_MEDIUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a133c380b84d75477ff31a2ad732133ce',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fminimum_561',['MQTTASYNC_TRACE_MINIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a7a45c26816b1cac1fde02d79a9f4337b',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fprotocol_562',['MQTTASYNC_TRACE_PROTOCOL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a6a719b2b7fc4dfc41494370ff96fec3e',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fsevere_563',['MQTTASYNC_TRACE_SEVERE',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a3084770185f384398cefe4aaba533d40',1,'MQTTAsync.h']]], - ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_564',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fdata_565',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fmethod_566',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcontent_5ftype_567',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcorrelation_5fdata_568',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_569',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fqos_570',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_571',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_572',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freason_5fstring_573',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freceive_5fmaximum_574',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_575',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_576',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5finformation_577',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5ftopic_578',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fretain_5favailable_579',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5fkeep_5falive_580',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5freference_581',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_582',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_583',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifier_584',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_585',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_586',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_587',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fuser_5fproperty_588',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_589',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_590',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbinary_5fdata_591',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbyte_592',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_593',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_594',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_595',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_596',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_597',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], - ['mqttreasoncode_5fadministrative_5faction_598',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fauthentication_5fmethod_599',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_600',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbanned_601',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_602',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fconnection_5frate_5fexceeded_603',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fcontinue_5fauthentication_604',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_605',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f0_606',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f1_607',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f2_608',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fimplementation_5fspecific_5ferror_609',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fkeep_5falive_5ftimeout_610',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmalformed_5fpacket_611',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmaximum_5fconnect_5ftime_612',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_613',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fmatching_5fsubscribers_614',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fsubscription_5ffound_615',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnormal_5fdisconnection_616',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnot_5fauthorized_617',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_618',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_619',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5ftoo_5flarge_620',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpayload_5fformat_5finvalid_621',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fprotocol_5ferror_622',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fqos_5fnot_5fsupported_623',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fquota_5fexceeded_624',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fre_5fauthenticate_625',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_626',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fretain_5fnot_5fsupported_627',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fbusy_628',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fmoved_629',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fshutting_5fdown_630',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5funavailable_631',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsession_5ftaken_5fover_632',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_633',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_634',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsuccess_635',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5falias_5finvalid_636',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5ffilter_5finvalid_637',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5fname_5finvalid_638',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funspecified_5ferror_639',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funsupported_5fprotocol_5fversion_640',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fuse_5fanother_5fserver_641',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_642',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]] + ['mqttasync_5ftrace_5ferror_559',['MQTTASYNC_TRACE_ERROR',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5ac428f74ca453dacb7b8271ca741266e8',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5ffatal_560',['MQTTASYNC_TRACE_FATAL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a0b91d2213ebb6655e41a7f6ce1a42295',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fmaximum_561',['MQTTASYNC_TRACE_MAXIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5af684f42971cced68693ce993703548c1',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fmedium_562',['MQTTASYNC_TRACE_MEDIUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a133c380b84d75477ff31a2ad732133ce',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fminimum_563',['MQTTASYNC_TRACE_MINIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a7a45c26816b1cac1fde02d79a9f4337b',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fprotocol_564',['MQTTASYNC_TRACE_PROTOCOL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a6a719b2b7fc4dfc41494370ff96fec3e',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fsevere_565',['MQTTASYNC_TRACE_SEVERE',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a3084770185f384398cefe4aaba533d40',1,'MQTTAsync.h']]], + ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_566',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fdata_567',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fmethod_568',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcontent_5ftype_569',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcorrelation_5fdata_570',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_571',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fqos_572',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_573',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_574',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freason_5fstring_575',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freceive_5fmaximum_576',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_577',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_578',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5finformation_579',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5ftopic_580',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fretain_5favailable_581',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5fkeep_5falive_582',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5freference_583',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_584',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_585',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifier_586',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_587',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_588',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_589',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fuser_5fproperty_590',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_591',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_592',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbinary_5fdata_593',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbyte_594',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_595',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_596',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_597',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_598',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_599',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], + ['mqttreasoncode_5fadministrative_5faction_600',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fauthentication_5fmethod_601',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_602',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbanned_603',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_604',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fconnection_5frate_5fexceeded_605',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fcontinue_5fauthentication_606',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_607',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f0_608',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f1_609',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f2_610',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fimplementation_5fspecific_5ferror_611',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fkeep_5falive_5ftimeout_612',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmalformed_5fpacket_613',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmaximum_5fconnect_5ftime_614',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_615',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fmatching_5fsubscribers_616',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fsubscription_5ffound_617',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnormal_5fdisconnection_618',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnot_5fauthorized_619',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_620',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_621',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5ftoo_5flarge_622',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpayload_5fformat_5finvalid_623',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fprotocol_5ferror_624',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fqos_5fnot_5fsupported_625',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fquota_5fexceeded_626',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fre_5fauthenticate_627',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_628',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fretain_5fnot_5fsupported_629',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fbusy_630',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fmoved_631',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fshutting_5fdown_632',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5funavailable_633',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsession_5ftaken_5fover_634',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_635',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_636',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsuccess_637',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5falias_5finvalid_638',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5ffilter_5finvalid_639',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5fname_5finvalid_640',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funspecified_5ferror_641',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funsupported_5fprotocol_5fversion_642',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fuse_5fanother_5fserver_643',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_644',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]] ]; diff --git a/docs/MQTTAsync/html/search/files_0.html b/docs/MQTTAsync/html/search/files_0.html index 737608e1..9498842a 100644 --- a/docs/MQTTAsync/html/search/files_0.html +++ b/docs/MQTTAsync/html/search/files_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/files_0.js b/docs/MQTTAsync/html/search/files_0.js index bc101081..1286e96d 100644 --- a/docs/MQTTAsync/html/search/files_0.js +++ b/docs/MQTTAsync/html/search/files_0.js @@ -1,8 +1,8 @@ var searchData= [ - ['mqttasync_2eh_370',['MQTTAsync.h',['../_m_q_t_t_async_8h.html',1,'']]], - ['mqttclientpersistence_2eh_371',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], - ['mqttproperties_2eh_372',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], - ['mqttreasoncodes_2eh_373',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], - ['mqttsubscribeopts_2eh_374',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]] + ['mqttasync_2eh_372',['MQTTAsync.h',['../_m_q_t_t_async_8h.html',1,'']]], + ['mqttclientpersistence_2eh_373',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], + ['mqttproperties_2eh_374',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], + ['mqttreasoncodes_2eh_375',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], + ['mqttsubscribeopts_2eh_376',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/functions_0.html b/docs/MQTTAsync/html/search/functions_0.html index e17c7111..eb4c5014 100644 --- a/docs/MQTTAsync/html/search/functions_0.html +++ b/docs/MQTTAsync/html/search/functions_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/functions_0.js b/docs/MQTTAsync/html/search/functions_0.js index b9c6ad35..8cffe2a2 100644 --- a/docs/MQTTAsync/html/search/functions_0.js +++ b/docs/MQTTAsync/html/search/functions_0.js @@ -1,51 +1,51 @@ var searchData= [ - ['mqttasync_5fconnect_375',['MQTTAsync_connect',['../_m_q_t_t_async_8h.html#a0388b226a414b09fa733f6d65004ec32',1,'MQTTAsync.h']]], - ['mqttasync_5fcreate_376',['MQTTAsync_create',['../_m_q_t_t_async_8h.html#a5462c4618d0a229116db5fbadacf95d2',1,'MQTTAsync.h']]], - ['mqttasync_5fcreatewithoptions_377',['MQTTAsync_createWithOptions',['../_m_q_t_t_async_8h.html#a78cbe1b851fea48001112f7ba9e4ea62',1,'MQTTAsync.h']]], - ['mqttasync_5fdestroy_378',['MQTTAsync_destroy',['../_m_q_t_t_async_8h.html#ad5562f9dc71fbd93d25ad20b328cb887',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnect_379',['MQTTAsync_disconnect',['../_m_q_t_t_async_8h.html#adc69afa4725f8321bdaa5a05aec5cfd5',1,'MQTTAsync.h']]], - ['mqttasync_5ffree_380',['MQTTAsync_free',['../_m_q_t_t_async_8h.html#a2b836f58612a2c4627e40ae848da190d',1,'MQTTAsync.h']]], - ['mqttasync_5ffreemessage_381',['MQTTAsync_freeMessage',['../_m_q_t_t_async_8h.html#a9b45db63052fe29ab1fad22d2a00c91c',1,'MQTTAsync.h']]], - ['mqttasync_5fgetpendingtokens_382',['MQTTAsync_getPendingTokens',['../_m_q_t_t_async_8h.html#abc92f60743fc471643b473abbc987be0',1,'MQTTAsync.h']]], - ['mqttasync_5fgetversioninfo_383',['MQTTAsync_getVersionInfo',['../_m_q_t_t_async_8h.html#a7cf29b785a1d4ff1de2e67e2f916b658',1,'MQTTAsync.h']]], - ['mqttasync_5fglobal_5finit_384',['MQTTAsync_global_init',['../_m_q_t_t_async_8h.html#a1705e75a48999cb45bf85c15608478f5',1,'MQTTAsync.h']]], - ['mqttasync_5fiscomplete_385',['MQTTAsync_isComplete',['../_m_q_t_t_async_8h.html#ab207095cab6f9a48b52cdb593b8456f4',1,'MQTTAsync.h']]], - ['mqttasync_5fisconnected_386',['MQTTAsync_isConnected',['../_m_q_t_t_async_8h.html#a46c332245c379629ae11f457fc179457',1,'MQTTAsync.h']]], - ['mqttasync_5fmalloc_387',['MQTTAsync_malloc',['../_m_q_t_t_async_8h.html#af5500ba58592afafaade2fcabdc61e61',1,'MQTTAsync.h']]], - ['mqttasync_5freconnect_388',['MQTTAsync_reconnect',['../_m_q_t_t_async_8h.html#abd3ea01869b89ff23f9522640479c395',1,'MQTTAsync.h']]], - ['mqttasync_5fsend_389',['MQTTAsync_send',['../_m_q_t_t_async_8h.html#a63c66a311ab16239a4175ff671871bf2',1,'MQTTAsync.h']]], - ['mqttasync_5fsendmessage_390',['MQTTAsync_sendMessage',['../_m_q_t_t_async_8h.html#a5687171e67e98f9ea590c9e3b64cde18',1,'MQTTAsync.h']]], - ['mqttasync_5fsetafterpersistenceread_391',['MQTTAsync_setAfterPersistenceRead',['../_m_q_t_t_async_8h.html#ab4d16e3c57502be6a7d1b1d3bcc382f3',1,'MQTTAsync.h']]], - ['mqttasync_5fsetbeforepersistencewrite_392',['MQTTAsync_setBeforePersistenceWrite',['../_m_q_t_t_async_8h.html#a1002b09c62a096578c9b3e0135eb98c1',1,'MQTTAsync.h']]], - ['mqttasync_5fsetcallbacks_393',['MQTTAsync_setCallbacks',['../_m_q_t_t_async_8h.html#ae9ae8d61023e7029ef5a19f5219c3599',1,'MQTTAsync.h']]], - ['mqttasync_5fsetconnected_394',['MQTTAsync_setConnected',['../_m_q_t_t_async_8h.html#a18cc19740d9b00c629dc53a4420ecf1f',1,'MQTTAsync.h']]], - ['mqttasync_5fsetconnectionlostcallback_395',['MQTTAsync_setConnectionLostCallback',['../_m_q_t_t_async_8h.html#aee15bbd9224efd9dcce9b4ae491b2e2e',1,'MQTTAsync.h']]], - ['mqttasync_5fsetdeliverycompletecallback_396',['MQTTAsync_setDeliveryCompleteCallback',['../_m_q_t_t_async_8h.html#a94ec624ee22cc01d2ca58a9e646a2665',1,'MQTTAsync.h']]], - ['mqttasync_5fsetdisconnected_397',['MQTTAsync_setDisconnected',['../_m_q_t_t_async_8h.html#ada4dd26d23c8849c51e4ab8200339040',1,'MQTTAsync.h']]], - ['mqttasync_5fsetmessagearrivedcallback_398',['MQTTAsync_setMessageArrivedCallback',['../_m_q_t_t_async_8h.html#a44abc360051b918a39b0596a137775ae',1,'MQTTAsync.h']]], - ['mqttasync_5fsettracecallback_399',['MQTTAsync_setTraceCallback',['../_m_q_t_t_async_8h.html#a0b350581324a4ff0eaee71e7a6721388',1,'MQTTAsync.h']]], - ['mqttasync_5fsettracelevel_400',['MQTTAsync_setTraceLevel',['../_m_q_t_t_async_8h.html#ac7fbab13a0b2e5dd4ee11efbbb9f6a3a',1,'MQTTAsync.h']]], - ['mqttasync_5fsetupdateconnectoptions_401',['MQTTAsync_setUpdateConnectOptions',['../_m_q_t_t_async_8h.html#aa078aec3eba83481f63db3c3939a5da9',1,'MQTTAsync.h']]], - ['mqttasync_5fstrerror_402',['MQTTAsync_strerror',['../_m_q_t_t_async_8h.html#a875cd089a8b23eb3fd50c0406fc75d9f',1,'MQTTAsync.h']]], - ['mqttasync_5fsubscribe_403',['MQTTAsync_subscribe',['../_m_q_t_t_async_8h.html#ae10bd009934b3bb4a9f4abae7424a611',1,'MQTTAsync.h']]], - ['mqttasync_5fsubscribemany_404',['MQTTAsync_subscribeMany',['../_m_q_t_t_async_8h.html#ac78620b33434a187255bd1a3faec1578',1,'MQTTAsync.h']]], - ['mqttasync_5funsubscribe_405',['MQTTAsync_unsubscribe',['../_m_q_t_t_async_8h.html#a08d18ece91c1b011011354570d8ac1ab',1,'MQTTAsync.h']]], - ['mqttasync_5funsubscribemany_406',['MQTTAsync_unsubscribeMany',['../_m_q_t_t_async_8h.html#a69fd433ce1b9b6a1b3b453c4793a9311',1,'MQTTAsync.h']]], - ['mqttasync_5fwaitforcompletion_407',['MQTTAsync_waitForCompletion',['../_m_q_t_t_async_8h.html#a4fe09cc9c976b1cf424e13765d6cd8c9',1,'MQTTAsync.h']]], - ['mqttproperties_5fadd_408',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], - ['mqttproperties_5fcopy_409',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], - ['mqttproperties_5ffree_410',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalue_411',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalueat_412',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetproperty_413',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetpropertyat_414',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], - ['mqttproperties_5fhasproperty_415',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], - ['mqttproperties_5flen_416',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], - ['mqttproperties_5fpropertycount_417',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], - ['mqttproperties_5fread_418',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], - ['mqttproperties_5fwrite_419',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], - ['mqttproperty_5fgettype_420',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], - ['mqttpropertyname_421',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], - ['mqttreasoncode_5ftostring_422',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]] + ['mqttasync_5fconnect_377',['MQTTAsync_connect',['../_m_q_t_t_async_8h.html#a0388b226a414b09fa733f6d65004ec32',1,'MQTTAsync.h']]], + ['mqttasync_5fcreate_378',['MQTTAsync_create',['../_m_q_t_t_async_8h.html#a5462c4618d0a229116db5fbadacf95d2',1,'MQTTAsync.h']]], + ['mqttasync_5fcreatewithoptions_379',['MQTTAsync_createWithOptions',['../_m_q_t_t_async_8h.html#a78cbe1b851fea48001112f7ba9e4ea62',1,'MQTTAsync.h']]], + ['mqttasync_5fdestroy_380',['MQTTAsync_destroy',['../_m_q_t_t_async_8h.html#ad5562f9dc71fbd93d25ad20b328cb887',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnect_381',['MQTTAsync_disconnect',['../_m_q_t_t_async_8h.html#adc69afa4725f8321bdaa5a05aec5cfd5',1,'MQTTAsync.h']]], + ['mqttasync_5ffree_382',['MQTTAsync_free',['../_m_q_t_t_async_8h.html#a2b836f58612a2c4627e40ae848da190d',1,'MQTTAsync.h']]], + ['mqttasync_5ffreemessage_383',['MQTTAsync_freeMessage',['../_m_q_t_t_async_8h.html#a9b45db63052fe29ab1fad22d2a00c91c',1,'MQTTAsync.h']]], + ['mqttasync_5fgetpendingtokens_384',['MQTTAsync_getPendingTokens',['../_m_q_t_t_async_8h.html#abc92f60743fc471643b473abbc987be0',1,'MQTTAsync.h']]], + ['mqttasync_5fgetversioninfo_385',['MQTTAsync_getVersionInfo',['../_m_q_t_t_async_8h.html#a7cf29b785a1d4ff1de2e67e2f916b658',1,'MQTTAsync.h']]], + ['mqttasync_5fglobal_5finit_386',['MQTTAsync_global_init',['../_m_q_t_t_async_8h.html#a1705e75a48999cb45bf85c15608478f5',1,'MQTTAsync.h']]], + ['mqttasync_5fiscomplete_387',['MQTTAsync_isComplete',['../_m_q_t_t_async_8h.html#ab207095cab6f9a48b52cdb593b8456f4',1,'MQTTAsync.h']]], + ['mqttasync_5fisconnected_388',['MQTTAsync_isConnected',['../_m_q_t_t_async_8h.html#a46c332245c379629ae11f457fc179457',1,'MQTTAsync.h']]], + ['mqttasync_5fmalloc_389',['MQTTAsync_malloc',['../_m_q_t_t_async_8h.html#af5500ba58592afafaade2fcabdc61e61',1,'MQTTAsync.h']]], + ['mqttasync_5freconnect_390',['MQTTAsync_reconnect',['../_m_q_t_t_async_8h.html#abd3ea01869b89ff23f9522640479c395',1,'MQTTAsync.h']]], + ['mqttasync_5fsend_391',['MQTTAsync_send',['../_m_q_t_t_async_8h.html#a63c66a311ab16239a4175ff671871bf2',1,'MQTTAsync.h']]], + ['mqttasync_5fsendmessage_392',['MQTTAsync_sendMessage',['../_m_q_t_t_async_8h.html#a5687171e67e98f9ea590c9e3b64cde18',1,'MQTTAsync.h']]], + ['mqttasync_5fsetafterpersistenceread_393',['MQTTAsync_setAfterPersistenceRead',['../_m_q_t_t_async_8h.html#ab4d16e3c57502be6a7d1b1d3bcc382f3',1,'MQTTAsync.h']]], + ['mqttasync_5fsetbeforepersistencewrite_394',['MQTTAsync_setBeforePersistenceWrite',['../_m_q_t_t_async_8h.html#a1002b09c62a096578c9b3e0135eb98c1',1,'MQTTAsync.h']]], + ['mqttasync_5fsetcallbacks_395',['MQTTAsync_setCallbacks',['../_m_q_t_t_async_8h.html#ae9ae8d61023e7029ef5a19f5219c3599',1,'MQTTAsync.h']]], + ['mqttasync_5fsetconnected_396',['MQTTAsync_setConnected',['../_m_q_t_t_async_8h.html#a18cc19740d9b00c629dc53a4420ecf1f',1,'MQTTAsync.h']]], + ['mqttasync_5fsetconnectionlostcallback_397',['MQTTAsync_setConnectionLostCallback',['../_m_q_t_t_async_8h.html#aee15bbd9224efd9dcce9b4ae491b2e2e',1,'MQTTAsync.h']]], + ['mqttasync_5fsetdeliverycompletecallback_398',['MQTTAsync_setDeliveryCompleteCallback',['../_m_q_t_t_async_8h.html#a94ec624ee22cc01d2ca58a9e646a2665',1,'MQTTAsync.h']]], + ['mqttasync_5fsetdisconnected_399',['MQTTAsync_setDisconnected',['../_m_q_t_t_async_8h.html#ada4dd26d23c8849c51e4ab8200339040',1,'MQTTAsync.h']]], + ['mqttasync_5fsetmessagearrivedcallback_400',['MQTTAsync_setMessageArrivedCallback',['../_m_q_t_t_async_8h.html#a44abc360051b918a39b0596a137775ae',1,'MQTTAsync.h']]], + ['mqttasync_5fsettracecallback_401',['MQTTAsync_setTraceCallback',['../_m_q_t_t_async_8h.html#a0b350581324a4ff0eaee71e7a6721388',1,'MQTTAsync.h']]], + ['mqttasync_5fsettracelevel_402',['MQTTAsync_setTraceLevel',['../_m_q_t_t_async_8h.html#ac7fbab13a0b2e5dd4ee11efbbb9f6a3a',1,'MQTTAsync.h']]], + ['mqttasync_5fsetupdateconnectoptions_403',['MQTTAsync_setUpdateConnectOptions',['../_m_q_t_t_async_8h.html#aa078aec3eba83481f63db3c3939a5da9',1,'MQTTAsync.h']]], + ['mqttasync_5fstrerror_404',['MQTTAsync_strerror',['../_m_q_t_t_async_8h.html#a875cd089a8b23eb3fd50c0406fc75d9f',1,'MQTTAsync.h']]], + ['mqttasync_5fsubscribe_405',['MQTTAsync_subscribe',['../_m_q_t_t_async_8h.html#ae10bd009934b3bb4a9f4abae7424a611',1,'MQTTAsync.h']]], + ['mqttasync_5fsubscribemany_406',['MQTTAsync_subscribeMany',['../_m_q_t_t_async_8h.html#ac78620b33434a187255bd1a3faec1578',1,'MQTTAsync.h']]], + ['mqttasync_5funsubscribe_407',['MQTTAsync_unsubscribe',['../_m_q_t_t_async_8h.html#a08d18ece91c1b011011354570d8ac1ab',1,'MQTTAsync.h']]], + ['mqttasync_5funsubscribemany_408',['MQTTAsync_unsubscribeMany',['../_m_q_t_t_async_8h.html#a69fd433ce1b9b6a1b3b453c4793a9311',1,'MQTTAsync.h']]], + ['mqttasync_5fwaitforcompletion_409',['MQTTAsync_waitForCompletion',['../_m_q_t_t_async_8h.html#a4fe09cc9c976b1cf424e13765d6cd8c9',1,'MQTTAsync.h']]], + ['mqttproperties_5fadd_410',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], + ['mqttproperties_5fcopy_411',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], + ['mqttproperties_5ffree_412',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalue_413',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalueat_414',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetproperty_415',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetpropertyat_416',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], + ['mqttproperties_5fhasproperty_417',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], + ['mqttproperties_5flen_418',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], + ['mqttproperties_5fpropertycount_419',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], + ['mqttproperties_5fread_420',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], + ['mqttproperties_5fwrite_421',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], + ['mqttproperty_5fgettype_422',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], + ['mqttpropertyname_423',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], + ['mqttreasoncode_5ftostring_424',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]] ]; diff --git a/docs/MQTTAsync/html/search/mag_sel.png b/docs/MQTTAsync/html/search/mag_sel.png deleted file mode 100644 index 39c0ed52..00000000 Binary files a/docs/MQTTAsync/html/search/mag_sel.png and /dev/null differ diff --git a/docs/MQTTAsync/html/search/mag_sel.svg b/docs/MQTTAsync/html/search/mag_sel.svg new file mode 100644 index 00000000..03626f64 --- /dev/null +++ b/docs/MQTTAsync/html/search/mag_sel.svg @@ -0,0 +1,74 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/docs/MQTTAsync/html/search/nomatches.html b/docs/MQTTAsync/html/search/nomatches.html index 43773208..2b9360b6 100644 --- a/docs/MQTTAsync/html/search/nomatches.html +++ b/docs/MQTTAsync/html/search/nomatches.html @@ -1,5 +1,6 @@ - + + diff --git a/docs/MQTTAsync/html/search/pages_0.html b/docs/MQTTAsync/html/search/pages_0.html index 9a6a29ad..8517b48f 100644 --- a/docs/MQTTAsync/html/search/pages_0.html +++ b/docs/MQTTAsync/html/search/pages_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/pages_0.js b/docs/MQTTAsync/html/search/pages_0.js index b637d5a8..14abee40 100644 --- a/docs/MQTTAsync/html/search/pages_0.js +++ b/docs/MQTTAsync/html/search/pages_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['automatic_20reconnect_697',['Automatic Reconnect',['../auto_reconnect.html',1,'']]], - ['asynchronous_20mqtt_20client_20library_20for_20c_20_28mqttasync_29_698',['Asynchronous MQTT client library for C (MQTTAsync)',['../index.html',1,'']]] + ['asynchronous_20mqtt_20client_20library_20for_20c_20_28mqttasync_29_699',['Asynchronous MQTT client library for C (MQTTAsync)',['../index.html',1,'']]], + ['automatic_20reconnect_700',['Automatic Reconnect',['../auto_reconnect.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_1.html b/docs/MQTTAsync/html/search/pages_1.html index 132ee038..a0fb6796 100644 --- a/docs/MQTTAsync/html/search/pages_1.html +++ b/docs/MQTTAsync/html/search/pages_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/pages_1.js b/docs/MQTTAsync/html/search/pages_1.js index 5826580d..b1d9e038 100644 --- a/docs/MQTTAsync/html/search/pages_1.js +++ b/docs/MQTTAsync/html/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['callbacks_699',['Callbacks',['../callbacks.html',1,'']]] + ['callbacks_701',['Callbacks',['../callbacks.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_2.html b/docs/MQTTAsync/html/search/pages_2.html index 6109d470..084edfd0 100644 --- a/docs/MQTTAsync/html/search/pages_2.html +++ b/docs/MQTTAsync/html/search/pages_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/pages_2.js b/docs/MQTTAsync/html/search/pages_2.js index a18af945..173b0115 100644 --- a/docs/MQTTAsync/html/search/pages_2.js +++ b/docs/MQTTAsync/html/search/pages_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['publish_20while_20disconnected_700',['Publish While Disconnected',['../offline_publish.html',1,'']]], - ['publication_20example_701',['Publication example',['../publish.html',1,'']]] + ['publication_20example_702',['Publication example',['../publish.html',1,'']]], + ['publish_20while_20disconnected_703',['Publish While Disconnected',['../offline_publish.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_3.html b/docs/MQTTAsync/html/search/pages_3.html index 54e8ba9e..c0b45b0f 100644 --- a/docs/MQTTAsync/html/search/pages_3.html +++ b/docs/MQTTAsync/html/search/pages_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/pages_3.js b/docs/MQTTAsync/html/search/pages_3.js index 204d7145..ecd8bedc 100644 --- a/docs/MQTTAsync/html/search/pages_3.js +++ b/docs/MQTTAsync/html/search/pages_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['quality_20of_20service_702',['Quality of service',['../qos.html',1,'']]] + ['quality_20of_20service_704',['Quality of service',['../qos.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_4.html b/docs/MQTTAsync/html/search/pages_4.html index 1ab6c5a9..0f05c2e7 100644 --- a/docs/MQTTAsync/html/search/pages_4.html +++ b/docs/MQTTAsync/html/search/pages_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/pages_4.js b/docs/MQTTAsync/html/search/pages_4.js index 4a133b2c..597274a5 100644 --- a/docs/MQTTAsync/html/search/pages_4.js +++ b/docs/MQTTAsync/html/search/pages_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['subscription_20example_703',['Subscription example',['../subscribe.html',1,'']]], - ['subscription_20wildcards_704',['Subscription wildcards',['../wildcard.html',1,'']]] + ['subscription_20example_705',['Subscription example',['../subscribe.html',1,'']]], + ['subscription_20wildcards_706',['Subscription wildcards',['../wildcard.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_5.html b/docs/MQTTAsync/html/search/pages_5.html index b0317638..27e2b6c7 100644 --- a/docs/MQTTAsync/html/search/pages_5.html +++ b/docs/MQTTAsync/html/search/pages_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/pages_5.js b/docs/MQTTAsync/html/search/pages_5.js index d56ff960..84ac1954 100644 --- a/docs/MQTTAsync/html/search/pages_5.js +++ b/docs/MQTTAsync/html/search/pages_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['threading_705',['Threading',['../async.html',1,'']]], - ['tracing_706',['Tracing',['../tracing.html',1,'']]] + ['threading_707',['Threading',['../async.html',1,'']]], + ['tracing_708',['Tracing',['../tracing.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/search.css b/docs/MQTTAsync/html/search/search.css index 3cf9df94..9074198f 100644 --- a/docs/MQTTAsync/html/search/search.css +++ b/docs/MQTTAsync/html/search/search.css @@ -1,98 +1,82 @@ /*---------------- Search Box */ -#FSearchBox { - float: left; -} - #MSearchBox { white-space : nowrap; - float: none; - margin-top: 8px; - right: 0px; - width: 170px; - height: 24px; + background: white; + border-radius: 0.65em; + box-shadow: inset 0.5px 0.5px 3px 0px #555; z-index: 102; } -#MSearchBox .left -{ - display:block; - position:absolute; - left:10px; - width:20px; - height:19px; - background:url('search_l.png') no-repeat; - background-position:right; +#MSearchBox .left { + display: inline-block; + vertical-align: middle; + height: 1.4em; } #MSearchSelect { - display:block; - position:absolute; - width:20px; - height:19px; -} - -.left #MSearchSelect { - left:4px; -} - -.right #MSearchSelect { - right:5px; + display: inline-block; + vertical-align: middle; + height: 1.4em; + padding: 0 0 0 0.3em; + margin: 0; } #MSearchField { - display:block; - position:absolute; - height:19px; - background:url('search_m.png') repeat-x; + display: inline-block; + vertical-align: middle; + width: 7.5em; + height: 1.1em; + margin: 0 0.15em; + padding: 0; + line-height: 1em; border:none; - width:115px; - margin-left:20px; - padding-left:4px; color: #909090; outline: none; - font: 9pt Arial, Verdana, sans-serif; + font-family: Arial, Verdana, sans-serif; -webkit-border-radius: 0px; + border-radius: 0px; + background: none; } -#FSearchBox #MSearchField { - margin-left:15px; -} #MSearchBox .right { - display:block; - position:absolute; - right:10px; - top:8px; - width:20px; - height:19px; - background:url('search_r.png') no-repeat; - background-position:left; + display: inline-block; + vertical-align: middle; + width: 1.4em; + height: 1.4em; } #MSearchClose { display: none; - position: absolute; - top: 4px; + font-size: inherit; background : none; border: none; - margin: 0px 4px 0px 0px; - padding: 0px 0px; + margin: 0; + padding: 0; outline: none; + } -.left #MSearchClose { - left: 6px; -} - -.right #MSearchClose { - right: 2px; +#MSearchCloseImg { + height: 1.4em; + padding: 0.3em; + margin: 0; } .MSearchBoxActive #MSearchField { color: #000000; } +#main-menu > li:last-child { + /* This
  • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + /*---------------- Search filter selection */ #MSearchSelectWindow { @@ -220,19 +204,21 @@ a.SRScope:focus, a.SRScope:active { span.SRScope { padding-left: 4px; + font-family: Arial, Verdana, sans-serif; } .SRPage .SRStatus { padding: 2px 5px; font-size: 8pt; font-style: italic; + font-family: Arial, Verdana, sans-serif; } .SRResult { display: none; } -DIV.searchresults { +div.searchresults { margin-left: 10px; margin-right: 10px; } diff --git a/docs/MQTTAsync/html/search/search.js b/docs/MQTTAsync/html/search/search.js index a554ab9c..fb226f73 100644 --- a/docs/MQTTAsync/html/search/search.js +++ b/docs/MQTTAsync/html/search/search.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function convertToId(search) { @@ -79,9 +80,10 @@ function getYPos(item) storing this instance. Is needed to be able to set timeouts. resultPath - path to use for external files */ -function SearchBox(name, resultsPath, inFrame, label) +function SearchBox(name, resultsPath, inFrame, label, extension) { if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); } + if (!extension || extension == "") { extension = ".html"; } // ---------- Instance variables this.name = name; @@ -96,6 +98,7 @@ function SearchBox(name, resultsPath, inFrame, label) this.searchActive = false; this.insideFrame = inFrame; this.searchLabel = label; + this.extension = extension; // ----------- DOM Elements @@ -200,10 +203,9 @@ function SearchBox(name, resultsPath, inFrame, label) } return; } - else if (window.frames.MSearchResults.searchResults) + else { - var elem = window.frames.MSearchResults.searchResults.NavNext(0); - if (elem) elem.focus(); + window.frames.MSearchResults.postMessage("take_focus", "*"); } } else if (e.keyCode==27) // Escape out of the search field @@ -347,13 +349,13 @@ function SearchBox(name, resultsPath, inFrame, label) if (idx!=-1) { var hexCode=idx.toString(16); - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + this.extension; resultsPageWithSearch = resultsPage+'?'+escape(searchValue); hasResultsPage = true; } else // nothing available for this search term { - resultsPage = this.resultsPath + '/nomatches.html'; + resultsPage = this.resultsPath + '/nomatches' + this.extension; resultsPageWithSearch = resultsPage; hasResultsPage = false; } @@ -364,7 +366,7 @@ function SearchBox(name, resultsPath, inFrame, label) if (domPopupSearchResultsWindow.style.display!='block') { var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline'; + this.DOMSearchClose().style.display = 'inline-block'; if (this.insideFrame) { var domPopupSearchResults = this.DOMPopupSearchResults(); @@ -439,12 +441,12 @@ function SearchResults(name) while (element && element!=parentElement) { - if (element.nodeName == 'DIV' && element.className == 'SRChildren') + if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') { return element; } - if (element.nodeName == 'DIV' && element.hasChildNodes()) + if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) { element = element.firstChild; } diff --git a/docs/MQTTAsync/html/search/typedefs_0.html b/docs/MQTTAsync/html/search/typedefs_0.html index 376db479..a4684c4a 100644 --- a/docs/MQTTAsync/html/search/typedefs_0.html +++ b/docs/MQTTAsync/html/search/typedefs_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/typedefs_0.js b/docs/MQTTAsync/html/search/typedefs_0.js index 664304a0..1f878b33 100644 --- a/docs/MQTTAsync/html/search/typedefs_0.js +++ b/docs/MQTTAsync/html/search/typedefs_0.js @@ -1,22 +1,22 @@ var searchData= [ - ['mqttasync_526',['MQTTAsync',['../_m_q_t_t_async_8h.html#a0db1d736cdc0c864fe41abb3afd605bd',1,'MQTTAsync.h']]], - ['mqttasync_5fcalloptions_527',['MQTTAsync_callOptions',['../_m_q_t_t_async_8h.html#ab6bfa6beae93c259220e1a131ba1cf9c',1,'MQTTAsync.h']]], - ['mqttasync_5fconnected_528',['MQTTAsync_connected',['../_m_q_t_t_async_8h.html#a34bb8d321e9d368780b5c832c058f223',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectionlost_529',['MQTTAsync_connectionLost',['../_m_q_t_t_async_8h.html#a3900a98d7b1d58ad6e686bfce298bb6c',1,'MQTTAsync.h']]], - ['mqttasync_5fdeliverycomplete_530',['MQTTAsync_deliveryComplete',['../_m_q_t_t_async_8h.html#ab10296618e266b3c02fd117d6616b15d',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnected_531',['MQTTAsync_disconnected',['../_m_q_t_t_async_8h.html#a52a1d9ab6e5d5064a3de42d0eec88f57',1,'MQTTAsync.h']]], - ['mqttasync_5fmessagearrived_532',['MQTTAsync_messageArrived',['../_m_q_t_t_async_8h.html#a3918ead59b56816a8d7544def184e48e',1,'MQTTAsync.h']]], - ['mqttasync_5fonfailure_533',['MQTTAsync_onFailure',['../_m_q_t_t_async_8h.html#a6060c25c2641e878803aef76fefb31ee',1,'MQTTAsync.h']]], - ['mqttasync_5fonfailure5_534',['MQTTAsync_onFailure5',['../_m_q_t_t_async_8h.html#a8c5023e04d5c3e9805d5dae76df21f4c',1,'MQTTAsync.h']]], - ['mqttasync_5fonsuccess_535',['MQTTAsync_onSuccess',['../_m_q_t_t_async_8h.html#a7b0c18a0e29e2ce73f3ea109bc32617b',1,'MQTTAsync.h']]], - ['mqttasync_5fonsuccess5_536',['MQTTAsync_onSuccess5',['../_m_q_t_t_async_8h.html#a892cf122e6e8d8f6cd38c4c8efe8fb67',1,'MQTTAsync.h']]], - ['mqttasync_5fresponseoptions_537',['MQTTAsync_responseOptions',['../_m_q_t_t_async_8h.html#ae1568d96d6418004cc79466c06f3d791',1,'MQTTAsync.h']]], - ['mqttasync_5ftoken_538',['MQTTAsync_token',['../_m_q_t_t_async_8h.html#a7ca6d2a1813f2bbd0bc3af2771e46ba4',1,'MQTTAsync.h']]], - ['mqttasync_5ftracecallback_539',['MQTTAsync_traceCallback',['../_m_q_t_t_async_8h.html#a65aba1caeae9b5af5d5b6c5598a75b02',1,'MQTTAsync.h']]], - ['mqttasync_5fupdateconnectoptions_540',['MQTTAsync_updateConnectOptions',['../_m_q_t_t_async_8h.html#a5e44304a2c011a7d61b72c779ad83979',1,'MQTTAsync.h']]], - ['mqttpersistence_5fafterread_541',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], - ['mqttpersistence_5fbeforewrite_542',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], - ['mqttproperties_543',['MQTTProperties',['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties.h']]], - ['mqttsubscribe_5foptions_544',['MQTTSubscribe_options',['../_m_q_t_t_subscribe_opts_8h.html#aa68db3eaed272ae1aaea294401079d8a',1,'MQTTSubscribeOpts.h']]] + ['mqttasync_528',['MQTTAsync',['../_m_q_t_t_async_8h.html#a0db1d736cdc0c864fe41abb3afd605bd',1,'MQTTAsync.h']]], + ['mqttasync_5fcalloptions_529',['MQTTAsync_callOptions',['../_m_q_t_t_async_8h.html#ab6bfa6beae93c259220e1a131ba1cf9c',1,'MQTTAsync.h']]], + ['mqttasync_5fconnected_530',['MQTTAsync_connected',['../_m_q_t_t_async_8h.html#a34bb8d321e9d368780b5c832c058f223',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectionlost_531',['MQTTAsync_connectionLost',['../_m_q_t_t_async_8h.html#a3900a98d7b1d58ad6e686bfce298bb6c',1,'MQTTAsync.h']]], + ['mqttasync_5fdeliverycomplete_532',['MQTTAsync_deliveryComplete',['../_m_q_t_t_async_8h.html#ab10296618e266b3c02fd117d6616b15d',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnected_533',['MQTTAsync_disconnected',['../_m_q_t_t_async_8h.html#a52a1d9ab6e5d5064a3de42d0eec88f57',1,'MQTTAsync.h']]], + ['mqttasync_5fmessagearrived_534',['MQTTAsync_messageArrived',['../_m_q_t_t_async_8h.html#a3918ead59b56816a8d7544def184e48e',1,'MQTTAsync.h']]], + ['mqttasync_5fonfailure_535',['MQTTAsync_onFailure',['../_m_q_t_t_async_8h.html#a6060c25c2641e878803aef76fefb31ee',1,'MQTTAsync.h']]], + ['mqttasync_5fonfailure5_536',['MQTTAsync_onFailure5',['../_m_q_t_t_async_8h.html#a8c5023e04d5c3e9805d5dae76df21f4c',1,'MQTTAsync.h']]], + ['mqttasync_5fonsuccess_537',['MQTTAsync_onSuccess',['../_m_q_t_t_async_8h.html#a7b0c18a0e29e2ce73f3ea109bc32617b',1,'MQTTAsync.h']]], + ['mqttasync_5fonsuccess5_538',['MQTTAsync_onSuccess5',['../_m_q_t_t_async_8h.html#a892cf122e6e8d8f6cd38c4c8efe8fb67',1,'MQTTAsync.h']]], + ['mqttasync_5fresponseoptions_539',['MQTTAsync_responseOptions',['../_m_q_t_t_async_8h.html#ae1568d96d6418004cc79466c06f3d791',1,'MQTTAsync.h']]], + ['mqttasync_5ftoken_540',['MQTTAsync_token',['../_m_q_t_t_async_8h.html#a7ca6d2a1813f2bbd0bc3af2771e46ba4',1,'MQTTAsync.h']]], + ['mqttasync_5ftracecallback_541',['MQTTAsync_traceCallback',['../_m_q_t_t_async_8h.html#a65aba1caeae9b5af5d5b6c5598a75b02',1,'MQTTAsync.h']]], + ['mqttasync_5fupdateconnectoptions_542',['MQTTAsync_updateConnectOptions',['../_m_q_t_t_async_8h.html#a5e44304a2c011a7d61b72c779ad83979',1,'MQTTAsync.h']]], + ['mqttpersistence_5fafterread_543',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], + ['mqttpersistence_5fbeforewrite_544',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], + ['mqttproperties_545',['MQTTProperties',['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties.h']]], + ['mqttsubscribe_5foptions_546',['MQTTSubscribe_options',['../_m_q_t_t_subscribe_opts_8h.html#aa68db3eaed272ae1aaea294401079d8a',1,'MQTTSubscribeOpts.h']]] ]; diff --git a/docs/MQTTAsync/html/search/typedefs_1.html b/docs/MQTTAsync/html/search/typedefs_1.html index 9b8bf72f..46cf01e6 100644 --- a/docs/MQTTAsync/html/search/typedefs_1.html +++ b/docs/MQTTAsync/html/search/typedefs_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/typedefs_1.js b/docs/MQTTAsync/html/search/typedefs_1.js index c4e46a58..c031173f 100644 --- a/docs/MQTTAsync/html/search/typedefs_1.js +++ b/docs/MQTTAsync/html/search/typedefs_1.js @@ -1,11 +1,11 @@ var searchData= [ - ['persistence_5fclear_545',['Persistence_clear',['../_m_q_t_t_client_persistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], - ['persistence_5fclose_546',['Persistence_close',['../_m_q_t_t_client_persistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], - ['persistence_5fcontainskey_547',['Persistence_containskey',['../_m_q_t_t_client_persistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], - ['persistence_5fget_548',['Persistence_get',['../_m_q_t_t_client_persistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], - ['persistence_5fkeys_549',['Persistence_keys',['../_m_q_t_t_client_persistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], - ['persistence_5fopen_550',['Persistence_open',['../_m_q_t_t_client_persistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], - ['persistence_5fput_551',['Persistence_put',['../_m_q_t_t_client_persistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], - ['persistence_5fremove_552',['Persistence_remove',['../_m_q_t_t_client_persistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]] + ['persistence_5fclear_547',['Persistence_clear',['../_m_q_t_t_client_persistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], + ['persistence_5fclose_548',['Persistence_close',['../_m_q_t_t_client_persistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], + ['persistence_5fcontainskey_549',['Persistence_containskey',['../_m_q_t_t_client_persistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], + ['persistence_5fget_550',['Persistence_get',['../_m_q_t_t_client_persistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], + ['persistence_5fkeys_551',['Persistence_keys',['../_m_q_t_t_client_persistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], + ['persistence_5fopen_552',['Persistence_open',['../_m_q_t_t_client_persistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], + ['persistence_5fput_553',['Persistence_put',['../_m_q_t_t_client_persistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], + ['persistence_5fremove_554',['Persistence_remove',['../_m_q_t_t_client_persistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_0.html b/docs/MQTTAsync/html/search/variables_0.html index bf3eba5c..1e477c08 100644 --- a/docs/MQTTAsync/html/search/variables_0.html +++ b/docs/MQTTAsync/html/search/variables_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_0.js b/docs/MQTTAsync/html/search/variables_0.js index 3bf3058b..6e7b995f 100644 --- a/docs/MQTTAsync/html/search/variables_0.js +++ b/docs/MQTTAsync/html/search/variables_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['allowdisconnectedsendatanytime_423',['allowDisconnectedSendAtAnyTime',['../struct_m_q_t_t_async__create_options.html#abe7fdbe18bfd3577a75d3b386d69406c',1,'MQTTAsync_createOptions']]], - ['alt_424',['alt',['../struct_m_q_t_t_async__success_data.html#afbc1fee4467369fefa30cb07047fca14',1,'MQTTAsync_successData::alt()'],['../struct_m_q_t_t_async__success_data5.html#a4bde812772718b8051b0d6e2000a5f5c',1,'MQTTAsync_successData5::alt()']]], - ['array_425',['array',['../struct_m_q_t_t_properties.html#a3ac4c38b423393c1553dcf8b71e7dd58',1,'MQTTProperties']]], - ['automaticreconnect_426',['automaticReconnect',['../struct_m_q_t_t_async__connect_options.html#a7902ce4d11b96d8b19582bdd1f82b630',1,'MQTTAsync_connectOptions']]] + ['allowdisconnectedsendatanytime_425',['allowDisconnectedSendAtAnyTime',['../struct_m_q_t_t_async__create_options.html#abe7fdbe18bfd3577a75d3b386d69406c',1,'MQTTAsync_createOptions']]], + ['alt_426',['alt',['../struct_m_q_t_t_async__success_data.html#afbc1fee4467369fefa30cb07047fca14',1,'MQTTAsync_successData::alt()'],['../struct_m_q_t_t_async__success_data5.html#a4bde812772718b8051b0d6e2000a5f5c',1,'MQTTAsync_successData5::alt()']]], + ['array_427',['array',['../struct_m_q_t_t_properties.html#a3ac4c38b423393c1553dcf8b71e7dd58',1,'MQTTProperties']]], + ['automaticreconnect_428',['automaticReconnect',['../struct_m_q_t_t_async__connect_options.html#a7902ce4d11b96d8b19582bdd1f82b630',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_1.html b/docs/MQTTAsync/html/search/variables_1.html index 49fe59a1..ea73d9a4 100644 --- a/docs/MQTTAsync/html/search/variables_1.html +++ b/docs/MQTTAsync/html/search/variables_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_1.js b/docs/MQTTAsync/html/search/variables_1.js index 2460afa7..33fc7564 100644 --- a/docs/MQTTAsync/html/search/variables_1.js +++ b/docs/MQTTAsync/html/search/variables_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['binarypwd_427',['binarypwd',['../struct_m_q_t_t_async__connect_data.html#ad5c523e5e6dc0105cc7b4a296451915b',1,'MQTTAsync_connectData::binarypwd()'],['../struct_m_q_t_t_async__connect_options.html#a3bccd0957cca80fa2200962051093931',1,'MQTTAsync_connectOptions::binarypwd()']]], - ['byte_428',['byte',['../struct_m_q_t_t_property.html#a1581cde4f73c9a797ae1e7afcc1bb3de',1,'MQTTProperty']]] + ['binarypwd_429',['binarypwd',['../struct_m_q_t_t_async__connect_data.html#ad5c523e5e6dc0105cc7b4a296451915b',1,'MQTTAsync_connectData::binarypwd()'],['../struct_m_q_t_t_async__connect_options.html#a3bccd0957cca80fa2200962051093931',1,'MQTTAsync_connectOptions::binarypwd()']]], + ['byte_430',['byte',['../struct_m_q_t_t_property.html#a1581cde4f73c9a797ae1e7afcc1bb3de',1,'MQTTProperty']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_10.html b/docs/MQTTAsync/html/search/variables_10.html index 92982ac5..dc9920b6 100644 --- a/docs/MQTTAsync/html/search/variables_10.html +++ b/docs/MQTTAsync/html/search/variables_10.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_10.js b/docs/MQTTAsync/html/search/variables_10.js index 728a9669..25e2db90 100644 --- a/docs/MQTTAsync/html/search/variables_10.js +++ b/docs/MQTTAsync/html/search/variables_10.js @@ -1,7 +1,7 @@ var searchData= [ - ['timeout_516',['timeout',['../struct_m_q_t_t_async__disconnect_options.html#a493b57f443cc38b3d3df9c1e584d9d82',1,'MQTTAsync_disconnectOptions']]], - ['token_517',['token',['../struct_m_q_t_t_async__failure_data.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_failureData::token()'],['../struct_m_q_t_t_async__failure_data5.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_failureData5::token()'],['../struct_m_q_t_t_async__success_data.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_successData::token()'],['../struct_m_q_t_t_async__success_data5.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_successData5::token()'],['../struct_m_q_t_t_async__response_options.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_responseOptions::token()']]], - ['topicname_518',['topicName',['../struct_m_q_t_t_async__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTAsync_willOptions']]], - ['truststore_519',['trustStore',['../struct_m_q_t_t_async___s_s_l_options.html#a032835d4c4a1c1e19b53c330a673a6e0',1,'MQTTAsync_SSLOptions']]] + ['timeout_518',['timeout',['../struct_m_q_t_t_async__disconnect_options.html#a493b57f443cc38b3d3df9c1e584d9d82',1,'MQTTAsync_disconnectOptions']]], + ['token_519',['token',['../struct_m_q_t_t_async__failure_data.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_failureData::token()'],['../struct_m_q_t_t_async__failure_data5.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_failureData5::token()'],['../struct_m_q_t_t_async__success_data.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_successData::token()'],['../struct_m_q_t_t_async__success_data5.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_successData5::token()'],['../struct_m_q_t_t_async__response_options.html#af8f771e67d284379111151b003c0d810',1,'MQTTAsync_responseOptions::token()']]], + ['topicname_520',['topicName',['../struct_m_q_t_t_async__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTAsync_willOptions']]], + ['truststore_521',['trustStore',['../struct_m_q_t_t_async___s_s_l_options.html#a032835d4c4a1c1e19b53c330a673a6e0',1,'MQTTAsync_SSLOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_11.html b/docs/MQTTAsync/html/search/variables_11.html index 94f1a8cf..704bcb18 100644 --- a/docs/MQTTAsync/html/search/variables_11.html +++ b/docs/MQTTAsync/html/search/variables_11.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_11.js b/docs/MQTTAsync/html/search/variables_11.js index 469141da..211382ff 100644 --- a/docs/MQTTAsync/html/search/variables_11.js +++ b/docs/MQTTAsync/html/search/variables_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['unsub_520',['unsub',['../struct_m_q_t_t_async__success_data5.html#a46b20b320d6951e567ebf678ea4ac1a3',1,'MQTTAsync_successData5']]], - ['username_521',['username',['../struct_m_q_t_t_async__connect_data.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTAsync_connectData::username()'],['../struct_m_q_t_t_async__connect_options.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTAsync_connectOptions::username()']]] + ['unsub_522',['unsub',['../struct_m_q_t_t_async__success_data5.html#a46b20b320d6951e567ebf678ea4ac1a3',1,'MQTTAsync_successData5']]], + ['username_523',['username',['../struct_m_q_t_t_async__connect_data.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTAsync_connectData::username()'],['../struct_m_q_t_t_async__connect_options.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTAsync_connectOptions::username()']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_12.html b/docs/MQTTAsync/html/search/variables_12.html index 61c013a4..a3a32eb8 100644 --- a/docs/MQTTAsync/html/search/variables_12.html +++ b/docs/MQTTAsync/html/search/variables_12.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_12.js b/docs/MQTTAsync/html/search/variables_12.js index 2853c8ab..2b9cd1a9 100644 --- a/docs/MQTTAsync/html/search/variables_12.js +++ b/docs/MQTTAsync/html/search/variables_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['value_522',['value',['../struct_m_q_t_t_async__name_value.html#a8556878012feffc9e0beb86cd78f424d',1,'MQTTAsync_nameValue::value()'],['../struct_m_q_t_t_property.html#a09e85ff5ad73824d6c2edc1ce4283a17',1,'MQTTProperty::value()'],['../struct_m_q_t_t_property.html#af2307539b97777bec0475619af5648f1',1,'MQTTProperty::value()']]], - ['verify_523',['verify',['../struct_m_q_t_t_async___s_s_l_options.html#a94900629685d5ed08f66fd2931f573ce',1,'MQTTAsync_SSLOptions']]] + ['value_524',['value',['../struct_m_q_t_t_async__name_value.html#a8556878012feffc9e0beb86cd78f424d',1,'MQTTAsync_nameValue::value()'],['../struct_m_q_t_t_property.html#a09e85ff5ad73824d6c2edc1ce4283a17',1,'MQTTProperty::value()'],['../struct_m_q_t_t_property.html#af2307539b97777bec0475619af5648f1',1,'MQTTProperty::value()']]], + ['verify_525',['verify',['../struct_m_q_t_t_async___s_s_l_options.html#a94900629685d5ed08f66fd2931f573ce',1,'MQTTAsync_SSLOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_13.html b/docs/MQTTAsync/html/search/variables_13.html index 87b7ca67..7d05bd86 100644 --- a/docs/MQTTAsync/html/search/variables_13.html +++ b/docs/MQTTAsync/html/search/variables_13.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_13.js b/docs/MQTTAsync/html/search/variables_13.js index 07671b47..ec2ee9c1 100644 --- a/docs/MQTTAsync/html/search/variables_13.js +++ b/docs/MQTTAsync/html/search/variables_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['will_524',['will',['../struct_m_q_t_t_async__connect_options.html#a7a9c5105542460d6fd9323facca66648',1,'MQTTAsync_connectOptions']]], - ['willproperties_525',['willProperties',['../struct_m_q_t_t_async__connect_options.html#ac31f13e964ffb7e3696caef47ecc0641',1,'MQTTAsync_connectOptions']]] + ['will_526',['will',['../struct_m_q_t_t_async__connect_options.html#a7a9c5105542460d6fd9323facca66648',1,'MQTTAsync_connectOptions']]], + ['willproperties_527',['willProperties',['../struct_m_q_t_t_async__connect_options.html#ac31f13e964ffb7e3696caef47ecc0641',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_2.html b/docs/MQTTAsync/html/search/variables_2.html index 0c8a18cf..0580462e 100644 --- a/docs/MQTTAsync/html/search/variables_2.html +++ b/docs/MQTTAsync/html/search/variables_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_2.js b/docs/MQTTAsync/html/search/variables_2.js index e47ffd56..78228753 100644 --- a/docs/MQTTAsync/html/search/variables_2.js +++ b/docs/MQTTAsync/html/search/variables_2.js @@ -1,12 +1,12 @@ var searchData= [ - ['capath_429',['CApath',['../struct_m_q_t_t_async___s_s_l_options.html#a3078b3c824cc9753a57898072445c34d',1,'MQTTAsync_SSLOptions']]], - ['cleansession_430',['cleansession',['../struct_m_q_t_t_async__connect_options.html#a036c36a2a4d3a3ffae9ab4dd8b3e7f7b',1,'MQTTAsync_connectOptions']]], - ['cleanstart_431',['cleanstart',['../struct_m_q_t_t_async__connect_options.html#acdcb75a5d5981da027bce83849140f7b',1,'MQTTAsync_connectOptions']]], - ['code_432',['code',['../struct_m_q_t_t_async__failure_data.html#a45a5b7c00a796a23f01673cef1dbe0a9',1,'MQTTAsync_failureData::code()'],['../struct_m_q_t_t_async__failure_data5.html#a45a5b7c00a796a23f01673cef1dbe0a9',1,'MQTTAsync_failureData5::code()']]], - ['connect_433',['connect',['../struct_m_q_t_t_async__success_data.html#a028701cd79a4923d1d2172422c022447',1,'MQTTAsync_successData::connect()'],['../struct_m_q_t_t_async__success_data5.html#ac73a35b7229f7f4193127cac7b20bc8a',1,'MQTTAsync_successData5::connect()']]], - ['connectproperties_434',['connectProperties',['../struct_m_q_t_t_async__connect_options.html#a9f8b7ffb4a698eb151a3b090548b82e8',1,'MQTTAsync_connectOptions']]], - ['connecttimeout_435',['connectTimeout',['../struct_m_q_t_t_async__connect_options.html#a38c6aa24b36d981c49405db425c24db0',1,'MQTTAsync_connectOptions']]], - ['context_436',['context',['../struct_m_q_t_t_async__response_options.html#ae376f130b17d169ee51be68077a89ed0',1,'MQTTAsync_responseOptions::context()'],['../struct_m_q_t_t_async__connect_options.html#ae376f130b17d169ee51be68077a89ed0',1,'MQTTAsync_connectOptions::context()'],['../struct_m_q_t_t_async__disconnect_options.html#ae376f130b17d169ee51be68077a89ed0',1,'MQTTAsync_disconnectOptions::context()'],['../struct_m_q_t_t_client__persistence.html#ae376f130b17d169ee51be68077a89ed0',1,'MQTTClient_persistence::context()']]], - ['count_437',['count',['../struct_m_q_t_t_properties.html#ad43c3812e6d13e0518d9f8b8f463ffcf',1,'MQTTProperties']]] + ['capath_431',['CApath',['../struct_m_q_t_t_async___s_s_l_options.html#a3078b3c824cc9753a57898072445c34d',1,'MQTTAsync_SSLOptions']]], + ['cleansession_432',['cleansession',['../struct_m_q_t_t_async__connect_options.html#a036c36a2a4d3a3ffae9ab4dd8b3e7f7b',1,'MQTTAsync_connectOptions']]], + ['cleanstart_433',['cleanstart',['../struct_m_q_t_t_async__connect_options.html#acdcb75a5d5981da027bce83849140f7b',1,'MQTTAsync_connectOptions']]], + ['code_434',['code',['../struct_m_q_t_t_async__failure_data.html#a45a5b7c00a796a23f01673cef1dbe0a9',1,'MQTTAsync_failureData::code()'],['../struct_m_q_t_t_async__failure_data5.html#a45a5b7c00a796a23f01673cef1dbe0a9',1,'MQTTAsync_failureData5::code()']]], + ['connect_435',['connect',['../struct_m_q_t_t_async__success_data.html#a028701cd79a4923d1d2172422c022447',1,'MQTTAsync_successData::connect()'],['../struct_m_q_t_t_async__success_data5.html#ac73a35b7229f7f4193127cac7b20bc8a',1,'MQTTAsync_successData5::connect()']]], + ['connectproperties_436',['connectProperties',['../struct_m_q_t_t_async__connect_options.html#a9f8b7ffb4a698eb151a3b090548b82e8',1,'MQTTAsync_connectOptions']]], + ['connecttimeout_437',['connectTimeout',['../struct_m_q_t_t_async__connect_options.html#a38c6aa24b36d981c49405db425c24db0',1,'MQTTAsync_connectOptions']]], + ['context_438',['context',['../struct_m_q_t_t_async__response_options.html#ae376f130b17d169ee51be68077a89ed0',1,'MQTTAsync_responseOptions::context()'],['../struct_m_q_t_t_async__connect_options.html#ae376f130b17d169ee51be68077a89ed0',1,'MQTTAsync_connectOptions::context()'],['../struct_m_q_t_t_async__disconnect_options.html#ae376f130b17d169ee51be68077a89ed0',1,'MQTTAsync_disconnectOptions::context()'],['../struct_m_q_t_t_client__persistence.html#ae376f130b17d169ee51be68077a89ed0',1,'MQTTClient_persistence::context()']]], + ['count_439',['count',['../struct_m_q_t_t_properties.html#ad43c3812e6d13e0518d9f8b8f463ffcf',1,'MQTTProperties']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_3.html b/docs/MQTTAsync/html/search/variables_3.html index 19a31fc2..0d69e761 100644 --- a/docs/MQTTAsync/html/search/variables_3.html +++ b/docs/MQTTAsync/html/search/variables_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_3.js b/docs/MQTTAsync/html/search/variables_3.js index 5f7e296a..38c271b5 100644 --- a/docs/MQTTAsync/html/search/variables_3.js +++ b/docs/MQTTAsync/html/search/variables_3.js @@ -1,9 +1,9 @@ var searchData= [ - ['data_438',['data',['../struct_m_q_t_t_async__connect_data.html#a0d49d74db4c035719c3867723cf7e779',1,'MQTTAsync_connectData::data()'],['../struct_m_q_t_t_async__will_options.html#a0d49d74db4c035719c3867723cf7e779',1,'MQTTAsync_willOptions::data()'],['../struct_m_q_t_t_async__connect_options.html#a0d49d74db4c035719c3867723cf7e779',1,'MQTTAsync_connectOptions::data()'],['../struct_m_q_t_t_len_string.html#a91a70b77df95bd8b0830b49a094c2acb',1,'MQTTLenString::data()'],['../struct_m_q_t_t_property.html#aa43ebcb9f97210421431a671384ef159',1,'MQTTProperty::data()']]], - ['deleteoldestmessages_439',['deleteOldestMessages',['../struct_m_q_t_t_async__create_options.html#a76de37b3cff885e83db204a347fe0a2d',1,'MQTTAsync_createOptions']]], - ['destinationname_440',['destinationName',['../struct_m_q_t_t_async__success_data.html#ae25f4a1d2a3fa952d052a965376d8fef',1,'MQTTAsync_successData::destinationName()'],['../struct_m_q_t_t_async__success_data5.html#ae25f4a1d2a3fa952d052a965376d8fef',1,'MQTTAsync_successData5::destinationName()']]], - ['disabledefaulttruststore_441',['disableDefaultTrustStore',['../struct_m_q_t_t_async___s_s_l_options.html#a0826fcae7c2816e04772c61542c6846b',1,'MQTTAsync_SSLOptions']]], - ['do_5fopenssl_5finit_442',['do_openssl_init',['../struct_m_q_t_t_async__init__options.html#a5929146596391e2838ef95feb89776da',1,'MQTTAsync_init_options']]], - ['dup_443',['dup',['../struct_m_q_t_t_async__message.html#adc4cf3f551bb367858644559d69cfdf5',1,'MQTTAsync_message']]] + ['data_440',['data',['../struct_m_q_t_t_async__connect_data.html#a0d49d74db4c035719c3867723cf7e779',1,'MQTTAsync_connectData::data()'],['../struct_m_q_t_t_async__will_options.html#a0d49d74db4c035719c3867723cf7e779',1,'MQTTAsync_willOptions::data()'],['../struct_m_q_t_t_async__connect_options.html#a0d49d74db4c035719c3867723cf7e779',1,'MQTTAsync_connectOptions::data()'],['../struct_m_q_t_t_len_string.html#a91a70b77df95bd8b0830b49a094c2acb',1,'MQTTLenString::data()'],['../struct_m_q_t_t_property.html#aa43ebcb9f97210421431a671384ef159',1,'MQTTProperty::data()']]], + ['deleteoldestmessages_441',['deleteOldestMessages',['../struct_m_q_t_t_async__create_options.html#a76de37b3cff885e83db204a347fe0a2d',1,'MQTTAsync_createOptions']]], + ['destinationname_442',['destinationName',['../struct_m_q_t_t_async__success_data.html#ae25f4a1d2a3fa952d052a965376d8fef',1,'MQTTAsync_successData::destinationName()'],['../struct_m_q_t_t_async__success_data5.html#ae25f4a1d2a3fa952d052a965376d8fef',1,'MQTTAsync_successData5::destinationName()']]], + ['disabledefaulttruststore_443',['disableDefaultTrustStore',['../struct_m_q_t_t_async___s_s_l_options.html#a0826fcae7c2816e04772c61542c6846b',1,'MQTTAsync_SSLOptions']]], + ['do_5fopenssl_5finit_444',['do_openssl_init',['../struct_m_q_t_t_async__init__options.html#a5929146596391e2838ef95feb89776da',1,'MQTTAsync_init_options']]], + ['dup_445',['dup',['../struct_m_q_t_t_async__message.html#adc4cf3f551bb367858644559d69cfdf5',1,'MQTTAsync_message']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_4.html b/docs/MQTTAsync/html/search/variables_4.html index bdc37be7..a4b6506b 100644 --- a/docs/MQTTAsync/html/search/variables_4.html +++ b/docs/MQTTAsync/html/search/variables_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_4.js b/docs/MQTTAsync/html/search/variables_4.js index 626f85c3..9ace9689 100644 --- a/docs/MQTTAsync/html/search/variables_4.js +++ b/docs/MQTTAsync/html/search/variables_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['enabledciphersuites_444',['enabledCipherSuites',['../struct_m_q_t_t_async___s_s_l_options.html#aa683926d52134077f27d6dc67bda13ab',1,'MQTTAsync_SSLOptions']]], - ['enableservercertauth_445',['enableServerCertAuth',['../struct_m_q_t_t_async___s_s_l_options.html#a75f6c13b7634e15f96dd9f17db6cf0be',1,'MQTTAsync_SSLOptions']]] + ['enabledciphersuites_446',['enabledCipherSuites',['../struct_m_q_t_t_async___s_s_l_options.html#aa683926d52134077f27d6dc67bda13ab',1,'MQTTAsync_SSLOptions']]], + ['enableservercertauth_447',['enableServerCertAuth',['../struct_m_q_t_t_async___s_s_l_options.html#a75f6c13b7634e15f96dd9f17db6cf0be',1,'MQTTAsync_SSLOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_5.html b/docs/MQTTAsync/html/search/variables_5.html index 6aa2249b..7e345d16 100644 --- a/docs/MQTTAsync/html/search/variables_5.html +++ b/docs/MQTTAsync/html/search/variables_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_5.js b/docs/MQTTAsync/html/search/variables_5.js index ee0e80b7..5da77bc4 100644 --- a/docs/MQTTAsync/html/search/variables_5.js +++ b/docs/MQTTAsync/html/search/variables_5.js @@ -1,6 +1,6 @@ var searchData= [ - ['httpheaders_446',['httpHeaders',['../struct_m_q_t_t_async__connect_options.html#ac4098248961a1ee89f40353eeebab58b',1,'MQTTAsync_connectOptions']]], - ['httpproxy_447',['httpProxy',['../struct_m_q_t_t_async__connect_options.html#add124780ab2de397a96780576c2f112c',1,'MQTTAsync_connectOptions']]], - ['httpsproxy_448',['httpsProxy',['../struct_m_q_t_t_async__connect_options.html#a388b78d8a75658928238f700f207ad92',1,'MQTTAsync_connectOptions']]] + ['httpheaders_448',['httpHeaders',['../struct_m_q_t_t_async__connect_options.html#ac4098248961a1ee89f40353eeebab58b',1,'MQTTAsync_connectOptions']]], + ['httpproxy_449',['httpProxy',['../struct_m_q_t_t_async__connect_options.html#add124780ab2de397a96780576c2f112c',1,'MQTTAsync_connectOptions']]], + ['httpsproxy_450',['httpsProxy',['../struct_m_q_t_t_async__connect_options.html#a388b78d8a75658928238f700f207ad92',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_6.html b/docs/MQTTAsync/html/search/variables_6.html index ce4a9063..7d48e75e 100644 --- a/docs/MQTTAsync/html/search/variables_6.html +++ b/docs/MQTTAsync/html/search/variables_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_6.js b/docs/MQTTAsync/html/search/variables_6.js index cb24c596..33682fd0 100644 --- a/docs/MQTTAsync/html/search/variables_6.js +++ b/docs/MQTTAsync/html/search/variables_6.js @@ -1,6 +1,6 @@ var searchData= [ - ['identifier_449',['identifier',['../struct_m_q_t_t_property.html#a2ff04e8cc70fbaa9bcb9a4fb3d510882',1,'MQTTProperty']]], - ['integer2_450',['integer2',['../struct_m_q_t_t_property.html#a0289ec2e0df8789139386b0ddf5c71c3',1,'MQTTProperty']]], - ['integer4_451',['integer4',['../struct_m_q_t_t_property.html#a813425ef31abb5ef0091e3043e8a366b',1,'MQTTProperty']]] + ['identifier_451',['identifier',['../struct_m_q_t_t_property.html#a2ff04e8cc70fbaa9bcb9a4fb3d510882',1,'MQTTProperty']]], + ['integer2_452',['integer2',['../struct_m_q_t_t_property.html#a0289ec2e0df8789139386b0ddf5c71c3',1,'MQTTProperty']]], + ['integer4_453',['integer4',['../struct_m_q_t_t_property.html#a813425ef31abb5ef0091e3043e8a366b',1,'MQTTProperty']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_7.html b/docs/MQTTAsync/html/search/variables_7.html index 39ffd474..5c263409 100644 --- a/docs/MQTTAsync/html/search/variables_7.html +++ b/docs/MQTTAsync/html/search/variables_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_7.js b/docs/MQTTAsync/html/search/variables_7.js index 359013e4..63497675 100644 --- a/docs/MQTTAsync/html/search/variables_7.js +++ b/docs/MQTTAsync/html/search/variables_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['keepaliveinterval_452',['keepAliveInterval',['../struct_m_q_t_t_async__connect_options.html#ac8dd0930672a9c7d71fc645aa1f0521d',1,'MQTTAsync_connectOptions']]], - ['keystore_453',['keyStore',['../struct_m_q_t_t_async___s_s_l_options.html#a32b476382955289ce427112b59f21c3e',1,'MQTTAsync_SSLOptions']]] + ['keepaliveinterval_454',['keepAliveInterval',['../struct_m_q_t_t_async__connect_options.html#ac8dd0930672a9c7d71fc645aa1f0521d',1,'MQTTAsync_connectOptions']]], + ['keystore_455',['keyStore',['../struct_m_q_t_t_async___s_s_l_options.html#a32b476382955289ce427112b59f21c3e',1,'MQTTAsync_SSLOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_8.html b/docs/MQTTAsync/html/search/variables_8.html index 37a2eddf..dc9ec54a 100644 --- a/docs/MQTTAsync/html/search/variables_8.html +++ b/docs/MQTTAsync/html/search/variables_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_8.js b/docs/MQTTAsync/html/search/variables_8.js index e2127ba8..b2c07a81 100644 --- a/docs/MQTTAsync/html/search/variables_8.js +++ b/docs/MQTTAsync/html/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['len_454',['len',['../struct_m_q_t_t_async__connect_data.html#afed088663f8704004425cdae2120b9b3',1,'MQTTAsync_connectData::len()'],['../struct_m_q_t_t_async__will_options.html#afed088663f8704004425cdae2120b9b3',1,'MQTTAsync_willOptions::len()'],['../struct_m_q_t_t_async__connect_options.html#afed088663f8704004425cdae2120b9b3',1,'MQTTAsync_connectOptions::len()'],['../struct_m_q_t_t_len_string.html#afed088663f8704004425cdae2120b9b3',1,'MQTTLenString::len()']]], - ['length_455',['length',['../struct_m_q_t_t_properties.html#a9f59b34b1f25fe00023291b678246bcc',1,'MQTTProperties']]] + ['len_456',['len',['../struct_m_q_t_t_async__connect_data.html#afed088663f8704004425cdae2120b9b3',1,'MQTTAsync_connectData::len()'],['../struct_m_q_t_t_async__will_options.html#afed088663f8704004425cdae2120b9b3',1,'MQTTAsync_willOptions::len()'],['../struct_m_q_t_t_async__connect_options.html#afed088663f8704004425cdae2120b9b3',1,'MQTTAsync_connectOptions::len()'],['../struct_m_q_t_t_len_string.html#afed088663f8704004425cdae2120b9b3',1,'MQTTLenString::len()']]], + ['length_457',['length',['../struct_m_q_t_t_properties.html#a9f59b34b1f25fe00023291b678246bcc',1,'MQTTProperties']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_9.html b/docs/MQTTAsync/html/search/variables_9.html index 21e5a4f3..7b014750 100644 --- a/docs/MQTTAsync/html/search/variables_9.html +++ b/docs/MQTTAsync/html/search/variables_9.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_9.js b/docs/MQTTAsync/html/search/variables_9.js index 1c26a624..45a9e7fd 100644 --- a/docs/MQTTAsync/html/search/variables_9.js +++ b/docs/MQTTAsync/html/search/variables_9.js @@ -1,11 +1,11 @@ var searchData= [ - ['max_5fcount_456',['max_count',['../struct_m_q_t_t_properties.html#a8de324382d8fd2f5939bf3372e059383',1,'MQTTProperties']]], - ['maxbufferedmessages_457',['maxBufferedMessages',['../struct_m_q_t_t_async__create_options.html#a3b74acf6f315bb5fe36266bc9647ee97',1,'MQTTAsync_createOptions']]], - ['maxinflight_458',['maxInflight',['../struct_m_q_t_t_async__connect_options.html#a5c9d6c557453232a1b25cbbec5a31e8c',1,'MQTTAsync_connectOptions']]], - ['maxretryinterval_459',['maxRetryInterval',['../struct_m_q_t_t_async__connect_options.html#a035ba380dd97a284db04f4eaae5e113b',1,'MQTTAsync_connectOptions']]], - ['message_460',['message',['../struct_m_q_t_t_async__failure_data.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_failureData::message()'],['../struct_m_q_t_t_async__failure_data5.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_failureData5::message()'],['../struct_m_q_t_t_async__success_data.html#a6ed8403758cecd2f762af6ba5e0ae525',1,'MQTTAsync_successData::message()'],['../struct_m_q_t_t_async__success_data5.html#a6ed8403758cecd2f762af6ba5e0ae525',1,'MQTTAsync_successData5::message()'],['../struct_m_q_t_t_async__will_options.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_willOptions::message()']]], - ['minretryinterval_461',['minRetryInterval',['../struct_m_q_t_t_async__connect_options.html#a166ac1b967f09326b0187f66be3e69af',1,'MQTTAsync_connectOptions']]], - ['mqttversion_462',['MQTTVersion',['../struct_m_q_t_t_async__success_data.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_successData::MQTTVersion()'],['../struct_m_q_t_t_async__success_data5.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_successData5::MQTTVersion()'],['../struct_m_q_t_t_async__create_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_createOptions::MQTTVersion()'],['../struct_m_q_t_t_async__connect_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_connectOptions::MQTTVersion()']]], - ['msgid_463',['msgid',['../struct_m_q_t_t_async__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTAsync_message']]] + ['max_5fcount_458',['max_count',['../struct_m_q_t_t_properties.html#a8de324382d8fd2f5939bf3372e059383',1,'MQTTProperties']]], + ['maxbufferedmessages_459',['maxBufferedMessages',['../struct_m_q_t_t_async__create_options.html#a3b74acf6f315bb5fe36266bc9647ee97',1,'MQTTAsync_createOptions']]], + ['maxinflight_460',['maxInflight',['../struct_m_q_t_t_async__connect_options.html#a5c9d6c557453232a1b25cbbec5a31e8c',1,'MQTTAsync_connectOptions']]], + ['maxretryinterval_461',['maxRetryInterval',['../struct_m_q_t_t_async__connect_options.html#a035ba380dd97a284db04f4eaae5e113b',1,'MQTTAsync_connectOptions']]], + ['message_462',['message',['../struct_m_q_t_t_async__failure_data.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_failureData::message()'],['../struct_m_q_t_t_async__failure_data5.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_failureData5::message()'],['../struct_m_q_t_t_async__success_data.html#a6ed8403758cecd2f762af6ba5e0ae525',1,'MQTTAsync_successData::message()'],['../struct_m_q_t_t_async__success_data5.html#a6ed8403758cecd2f762af6ba5e0ae525',1,'MQTTAsync_successData5::message()'],['../struct_m_q_t_t_async__will_options.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTAsync_willOptions::message()']]], + ['minretryinterval_463',['minRetryInterval',['../struct_m_q_t_t_async__connect_options.html#a166ac1b967f09326b0187f66be3e69af',1,'MQTTAsync_connectOptions']]], + ['mqttversion_464',['MQTTVersion',['../struct_m_q_t_t_async__success_data.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_successData::MQTTVersion()'],['../struct_m_q_t_t_async__success_data5.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_successData5::MQTTVersion()'],['../struct_m_q_t_t_async__create_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_createOptions::MQTTVersion()'],['../struct_m_q_t_t_async__connect_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTAsync_connectOptions::MQTTVersion()']]], + ['msgid_465',['msgid',['../struct_m_q_t_t_async__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTAsync_message']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_a.html b/docs/MQTTAsync/html/search/variables_a.html index 1f650553..52a724d1 100644 --- a/docs/MQTTAsync/html/search/variables_a.html +++ b/docs/MQTTAsync/html/search/variables_a.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_a.js b/docs/MQTTAsync/html/search/variables_a.js index 40b1d5e0..4599c716 100644 --- a/docs/MQTTAsync/html/search/variables_a.js +++ b/docs/MQTTAsync/html/search/variables_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['name_464',['name',['../struct_m_q_t_t_async__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTAsync_nameValue']]], - ['nolocal_465',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] + ['name_466',['name',['../struct_m_q_t_t_async__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTAsync_nameValue']]], + ['nolocal_467',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_b.html b/docs/MQTTAsync/html/search/variables_b.html index c02d066f..f376b27a 100644 --- a/docs/MQTTAsync/html/search/variables_b.html +++ b/docs/MQTTAsync/html/search/variables_b.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_b.js b/docs/MQTTAsync/html/search/variables_b.js index 19e4028c..e77827c5 100644 --- a/docs/MQTTAsync/html/search/variables_b.js +++ b/docs/MQTTAsync/html/search/variables_b.js @@ -1,7 +1,7 @@ var searchData= [ - ['onfailure_466',['onFailure',['../struct_m_q_t_t_async__response_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_responseOptions::onFailure()'],['../struct_m_q_t_t_async__connect_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_connectOptions::onFailure()'],['../struct_m_q_t_t_async__disconnect_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_disconnectOptions::onFailure()']]], - ['onfailure5_467',['onFailure5',['../struct_m_q_t_t_async__response_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_responseOptions::onFailure5()'],['../struct_m_q_t_t_async__connect_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_connectOptions::onFailure5()'],['../struct_m_q_t_t_async__disconnect_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_disconnectOptions::onFailure5()']]], - ['onsuccess_468',['onSuccess',['../struct_m_q_t_t_async__response_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_responseOptions::onSuccess()'],['../struct_m_q_t_t_async__connect_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_connectOptions::onSuccess()'],['../struct_m_q_t_t_async__disconnect_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_disconnectOptions::onSuccess()']]], - ['onsuccess5_469',['onSuccess5',['../struct_m_q_t_t_async__response_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_responseOptions::onSuccess5()'],['../struct_m_q_t_t_async__connect_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_connectOptions::onSuccess5()'],['../struct_m_q_t_t_async__disconnect_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_disconnectOptions::onSuccess5()']]] + ['onfailure_468',['onFailure',['../struct_m_q_t_t_async__response_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_responseOptions::onFailure()'],['../struct_m_q_t_t_async__connect_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_connectOptions::onFailure()'],['../struct_m_q_t_t_async__disconnect_options.html#a09ce26d7cff24e14a6844eaae7b15290',1,'MQTTAsync_disconnectOptions::onFailure()']]], + ['onfailure5_469',['onFailure5',['../struct_m_q_t_t_async__response_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_responseOptions::onFailure5()'],['../struct_m_q_t_t_async__connect_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_connectOptions::onFailure5()'],['../struct_m_q_t_t_async__disconnect_options.html#a4dad726f2b6f79ca5847689c5f2f2ec2',1,'MQTTAsync_disconnectOptions::onFailure5()']]], + ['onsuccess_470',['onSuccess',['../struct_m_q_t_t_async__response_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_responseOptions::onSuccess()'],['../struct_m_q_t_t_async__connect_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_connectOptions::onSuccess()'],['../struct_m_q_t_t_async__disconnect_options.html#ac13fb68f736854fcab131b34756bfceb',1,'MQTTAsync_disconnectOptions::onSuccess()']]], + ['onsuccess5_471',['onSuccess5',['../struct_m_q_t_t_async__response_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_responseOptions::onSuccess5()'],['../struct_m_q_t_t_async__connect_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_connectOptions::onSuccess5()'],['../struct_m_q_t_t_async__disconnect_options.html#a1c23c490f06428725345de68a4ff0a3e',1,'MQTTAsync_disconnectOptions::onSuccess5()']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_c.html b/docs/MQTTAsync/html/search/variables_c.html index 4b866c6c..6019eba9 100644 --- a/docs/MQTTAsync/html/search/variables_c.html +++ b/docs/MQTTAsync/html/search/variables_c.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_c.js b/docs/MQTTAsync/html/search/variables_c.js index 5ceacef7..ae7a43a1 100644 --- a/docs/MQTTAsync/html/search/variables_c.js +++ b/docs/MQTTAsync/html/search/variables_c.js @@ -1,22 +1,22 @@ var searchData= [ - ['packet_5ftype_470',['packet_type',['../struct_m_q_t_t_async__failure_data5.html#a38dfee9f038f473c95af46fcef5dd3e9',1,'MQTTAsync_failureData5']]], - ['password_471',['password',['../struct_m_q_t_t_async__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTAsync_connectOptions']]], - ['payload_472',['payload',['../struct_m_q_t_t_async__message.html#a9eff55064941fb604452abb0050ea99d',1,'MQTTAsync_message::payload()'],['../struct_m_q_t_t_async__will_options.html#a93e9de18277b05bc7a033bdee98c908a',1,'MQTTAsync_willOptions::payload()']]], - ['payloadlen_473',['payloadlen',['../struct_m_q_t_t_async__message.html#aa3cb44feb3ae6d11b3a4cad2d94cb33a',1,'MQTTAsync_message']]], - ['pclear_474',['pclear',['../struct_m_q_t_t_client__persistence.html#abc192dc88113c7d933b29d3561badbf5',1,'MQTTClient_persistence']]], - ['pclose_475',['pclose',['../struct_m_q_t_t_client__persistence.html#a7e50506912d2ec0e014cc25ec28fb402',1,'MQTTClient_persistence']]], - ['pcontainskey_476',['pcontainskey',['../struct_m_q_t_t_client__persistence.html#ac103711576267f791325f2b70b6dc49d',1,'MQTTClient_persistence']]], - ['persistqos0_477',['persistQoS0',['../struct_m_q_t_t_async__create_options.html#a0c3ea2641e188542c787e71e2c521a0b',1,'MQTTAsync_createOptions']]], - ['pget_478',['pget',['../struct_m_q_t_t_client__persistence.html#a49155000b82a28ac3b3cb878f3a092d4',1,'MQTTClient_persistence']]], - ['pkeys_479',['pkeys',['../struct_m_q_t_t_client__persistence.html#a407e86a809e4b0b098a8c158f53b9606',1,'MQTTClient_persistence']]], - ['popen_480',['popen',['../struct_m_q_t_t_client__persistence.html#a1bae211b32415e6b349d5ae71599f9f4',1,'MQTTClient_persistence']]], - ['pput_481',['pput',['../struct_m_q_t_t_client__persistence.html#a4114d9b9971cee18d7e4b9dd5736a608',1,'MQTTClient_persistence']]], - ['premove_482',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], - ['privatekey_483',['privateKey',['../struct_m_q_t_t_async___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTAsync_SSLOptions']]], - ['privatekeypassword_484',['privateKeyPassword',['../struct_m_q_t_t_async___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTAsync_SSLOptions']]], - ['properties_485',['properties',['../struct_m_q_t_t_async__message.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_message::properties()'],['../struct_m_q_t_t_async__failure_data5.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_failureData5::properties()'],['../struct_m_q_t_t_async__success_data5.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_successData5::properties()'],['../struct_m_q_t_t_async__response_options.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_responseOptions::properties()'],['../struct_m_q_t_t_async__disconnect_options.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_disconnectOptions::properties()']]], - ['protos_486',['protos',['../struct_m_q_t_t_async___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTAsync_SSLOptions']]], - ['protos_5flen_487',['protos_len',['../struct_m_q_t_t_async___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTAsync_SSLOptions']]], - ['pub_488',['pub',['../struct_m_q_t_t_async__success_data.html#a7f044c3b839c17a8840cd6f00d7a0e90',1,'MQTTAsync_successData::pub()'],['../struct_m_q_t_t_async__success_data5.html#a5c41c63d6c37acbe3c493279c5d4c44a',1,'MQTTAsync_successData5::pub()']]] + ['packet_5ftype_472',['packet_type',['../struct_m_q_t_t_async__failure_data5.html#a38dfee9f038f473c95af46fcef5dd3e9',1,'MQTTAsync_failureData5']]], + ['password_473',['password',['../struct_m_q_t_t_async__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTAsync_connectOptions']]], + ['payload_474',['payload',['../struct_m_q_t_t_async__message.html#a9eff55064941fb604452abb0050ea99d',1,'MQTTAsync_message::payload()'],['../struct_m_q_t_t_async__will_options.html#a93e9de18277b05bc7a033bdee98c908a',1,'MQTTAsync_willOptions::payload()']]], + ['payloadlen_475',['payloadlen',['../struct_m_q_t_t_async__message.html#aa3cb44feb3ae6d11b3a4cad2d94cb33a',1,'MQTTAsync_message']]], + ['pclear_476',['pclear',['../struct_m_q_t_t_client__persistence.html#abc192dc88113c7d933b29d3561badbf5',1,'MQTTClient_persistence']]], + ['pclose_477',['pclose',['../struct_m_q_t_t_client__persistence.html#a7e50506912d2ec0e014cc25ec28fb402',1,'MQTTClient_persistence']]], + ['pcontainskey_478',['pcontainskey',['../struct_m_q_t_t_client__persistence.html#ac103711576267f791325f2b70b6dc49d',1,'MQTTClient_persistence']]], + ['persistqos0_479',['persistQoS0',['../struct_m_q_t_t_async__create_options.html#a0c3ea2641e188542c787e71e2c521a0b',1,'MQTTAsync_createOptions']]], + ['pget_480',['pget',['../struct_m_q_t_t_client__persistence.html#a49155000b82a28ac3b3cb878f3a092d4',1,'MQTTClient_persistence']]], + ['pkeys_481',['pkeys',['../struct_m_q_t_t_client__persistence.html#a407e86a809e4b0b098a8c158f53b9606',1,'MQTTClient_persistence']]], + ['popen_482',['popen',['../struct_m_q_t_t_client__persistence.html#a1bae211b32415e6b349d5ae71599f9f4',1,'MQTTClient_persistence']]], + ['pput_483',['pput',['../struct_m_q_t_t_client__persistence.html#a4114d9b9971cee18d7e4b9dd5736a608',1,'MQTTClient_persistence']]], + ['premove_484',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], + ['privatekey_485',['privateKey',['../struct_m_q_t_t_async___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTAsync_SSLOptions']]], + ['privatekeypassword_486',['privateKeyPassword',['../struct_m_q_t_t_async___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTAsync_SSLOptions']]], + ['properties_487',['properties',['../struct_m_q_t_t_async__message.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_message::properties()'],['../struct_m_q_t_t_async__failure_data5.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_failureData5::properties()'],['../struct_m_q_t_t_async__success_data5.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_successData5::properties()'],['../struct_m_q_t_t_async__response_options.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_responseOptions::properties()'],['../struct_m_q_t_t_async__disconnect_options.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTAsync_disconnectOptions::properties()']]], + ['protos_488',['protos',['../struct_m_q_t_t_async___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTAsync_SSLOptions']]], + ['protos_5flen_489',['protos_len',['../struct_m_q_t_t_async___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTAsync_SSLOptions']]], + ['pub_490',['pub',['../struct_m_q_t_t_async__success_data.html#a7f044c3b839c17a8840cd6f00d7a0e90',1,'MQTTAsync_successData::pub()'],['../struct_m_q_t_t_async__success_data5.html#a5c41c63d6c37acbe3c493279c5d4c44a',1,'MQTTAsync_successData5::pub()']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_d.html b/docs/MQTTAsync/html/search/variables_d.html index 84d878b8..f61ae751 100644 --- a/docs/MQTTAsync/html/search/variables_d.html +++ b/docs/MQTTAsync/html/search/variables_d.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_d.js b/docs/MQTTAsync/html/search/variables_d.js index d56de651..7ed81dc9 100644 --- a/docs/MQTTAsync/html/search/variables_d.js +++ b/docs/MQTTAsync/html/search/variables_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['qos_489',['qos',['../struct_m_q_t_t_async__message.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_message::qos()'],['../struct_m_q_t_t_async__success_data.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_successData::qos()'],['../struct_m_q_t_t_async__will_options.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_willOptions::qos()']]], - ['qoslist_490',['qosList',['../struct_m_q_t_t_async__success_data.html#a82786d9ba5cae39873f378a48b36c23b',1,'MQTTAsync_successData']]] + ['qos_491',['qos',['../struct_m_q_t_t_async__message.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_message::qos()'],['../struct_m_q_t_t_async__success_data.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_successData::qos()'],['../struct_m_q_t_t_async__will_options.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTAsync_willOptions::qos()']]], + ['qoslist_492',['qosList',['../struct_m_q_t_t_async__success_data.html#a82786d9ba5cae39873f378a48b36c23b',1,'MQTTAsync_successData']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_e.html b/docs/MQTTAsync/html/search/variables_e.html index b0d9b7b2..7bfd3721 100644 --- a/docs/MQTTAsync/html/search/variables_e.html +++ b/docs/MQTTAsync/html/search/variables_e.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_e.js b/docs/MQTTAsync/html/search/variables_e.js index acfec5e8..dd3412a4 100644 --- a/docs/MQTTAsync/html/search/variables_e.js +++ b/docs/MQTTAsync/html/search/variables_e.js @@ -1,11 +1,11 @@ var searchData= [ - ['reasoncode_491',['reasonCode',['../struct_m_q_t_t_async__failure_data5.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_failureData5::reasonCode()'],['../struct_m_q_t_t_async__success_data5.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_successData5::reasonCode()'],['../struct_m_q_t_t_async__disconnect_options.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_disconnectOptions::reasonCode()']]], - ['reasoncodecount_492',['reasonCodeCount',['../struct_m_q_t_t_async__success_data5.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTAsync_successData5']]], - ['reasoncodes_493',['reasonCodes',['../struct_m_q_t_t_async__success_data5.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTAsync_successData5']]], - ['restoremessages_494',['restoreMessages',['../struct_m_q_t_t_async__create_options.html#a231b8890c3bc2ea07f7c599896f30691',1,'MQTTAsync_createOptions']]], - ['retainaspublished_495',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], - ['retained_496',['retained',['../struct_m_q_t_t_async__message.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTAsync_message::retained()'],['../struct_m_q_t_t_async__will_options.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTAsync_willOptions::retained()']]], - ['retainhandling_497',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], - ['retryinterval_498',['retryInterval',['../struct_m_q_t_t_async__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTAsync_connectOptions']]] + ['reasoncode_493',['reasonCode',['../struct_m_q_t_t_async__failure_data5.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_failureData5::reasonCode()'],['../struct_m_q_t_t_async__success_data5.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_successData5::reasonCode()'],['../struct_m_q_t_t_async__disconnect_options.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTAsync_disconnectOptions::reasonCode()']]], + ['reasoncodecount_494',['reasonCodeCount',['../struct_m_q_t_t_async__success_data5.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTAsync_successData5']]], + ['reasoncodes_495',['reasonCodes',['../struct_m_q_t_t_async__success_data5.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTAsync_successData5']]], + ['restoremessages_496',['restoreMessages',['../struct_m_q_t_t_async__create_options.html#a231b8890c3bc2ea07f7c599896f30691',1,'MQTTAsync_createOptions']]], + ['retainaspublished_497',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], + ['retained_498',['retained',['../struct_m_q_t_t_async__message.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTAsync_message::retained()'],['../struct_m_q_t_t_async__will_options.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTAsync_willOptions::retained()']]], + ['retainhandling_499',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], + ['retryinterval_500',['retryInterval',['../struct_m_q_t_t_async__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_f.html b/docs/MQTTAsync/html/search/variables_f.html index a708dbf0..d97920d0 100644 --- a/docs/MQTTAsync/html/search/variables_f.html +++ b/docs/MQTTAsync/html/search/variables_f.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTAsync/html/search/variables_f.js b/docs/MQTTAsync/html/search/variables_f.js index f78d4b23..433b6a48 100644 --- a/docs/MQTTAsync/html/search/variables_f.js +++ b/docs/MQTTAsync/html/search/variables_f.js @@ -1,20 +1,20 @@ var searchData= [ - ['sendwhiledisconnected_499',['sendWhileDisconnected',['../struct_m_q_t_t_async__create_options.html#a078cd68d8f896ce7eac0cc83d4486a2c',1,'MQTTAsync_createOptions']]], - ['serveruri_500',['serverURI',['../struct_m_q_t_t_async__success_data.html#a95309fdf27015b12bc4adf56306e557b',1,'MQTTAsync_successData::serverURI()'],['../struct_m_q_t_t_async__success_data5.html#a95309fdf27015b12bc4adf56306e557b',1,'MQTTAsync_successData5::serverURI()']]], - ['serveruricount_501',['serverURIcount',['../struct_m_q_t_t_async__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTAsync_connectOptions']]], - ['serveruris_502',['serverURIs',['../struct_m_q_t_t_async__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTAsync_connectOptions']]], - ['sessionpresent_503',['sessionPresent',['../struct_m_q_t_t_async__success_data.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTAsync_successData::sessionPresent()'],['../struct_m_q_t_t_async__success_data5.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTAsync_successData5::sessionPresent()']]], - ['ssl_504',['ssl',['../struct_m_q_t_t_async__connect_options.html#a86fd59846f3ba2082fd99906c6b496a6',1,'MQTTAsync_connectOptions']]], - ['ssl_5ferror_5fcb_505',['ssl_error_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a76c7b40e2e258d2f898b53165ada2b70',1,'MQTTAsync_SSLOptions']]], - ['ssl_5ferror_5fcontext_506',['ssl_error_context',['../struct_m_q_t_t_async___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTAsync_SSLOptions']]], - ['ssl_5fpsk_5fcb_507',['ssl_psk_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a83c1245259a491ea9daf872ce04b5e46',1,'MQTTAsync_SSLOptions']]], - ['ssl_5fpsk_5fcontext_508',['ssl_psk_context',['../struct_m_q_t_t_async___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTAsync_SSLOptions']]], - ['sslversion_509',['sslVersion',['../struct_m_q_t_t_async___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTAsync_SSLOptions']]], - ['struct_5fid_510',['struct_id',['../struct_m_q_t_t_async__init__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_init_options::struct_id()'],['../struct_m_q_t_t_async__message.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_message::struct_id()'],['../struct_m_q_t_t_async__connect_data.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_connectData::struct_id()'],['../struct_m_q_t_t_async__failure_data5.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_failureData5::struct_id()'],['../struct_m_q_t_t_async__success_data5.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_successData5::struct_id()'],['../struct_m_q_t_t_async__response_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_responseOptions::struct_id()'],['../struct_m_q_t_t_async__create_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_createOptions::struct_id()'],['../struct_m_q_t_t_async__will_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_willOptions::struct_id()'],['../struct_m_q_t_t_async___s_s_l_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_SSLOptions::struct_id()'],['../struct_m_q_t_t_async__connect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_connectOptions::struct_id()'],['../struct_m_q_t_t_async__disconnect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_disconnectOptions::struct_id()'],['../struct_m_q_t_t_subscribe__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTSubscribe_options::struct_id()']]], - ['struct_5fversion_511',['struct_version',['../struct_m_q_t_t_async__init__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_init_options::struct_version()'],['../struct_m_q_t_t_async__message.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_message::struct_version()'],['../struct_m_q_t_t_async__connect_data.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_connectData::struct_version()'],['../struct_m_q_t_t_async__failure_data5.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_failureData5::struct_version()'],['../struct_m_q_t_t_async__success_data5.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_successData5::struct_version()'],['../struct_m_q_t_t_async__response_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_responseOptions::struct_version()'],['../struct_m_q_t_t_async__create_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_createOptions::struct_version()'],['../struct_m_q_t_t_async__will_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_willOptions::struct_version()'],['../struct_m_q_t_t_async___s_s_l_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_SSLOptions::struct_version()'],['../struct_m_q_t_t_async__connect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_connectOptions::struct_version()'],['../struct_m_q_t_t_async__disconnect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_disconnectOptions::struct_version()'],['../struct_m_q_t_t_subscribe__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTSubscribe_options::struct_version()']]], - ['sub_512',['sub',['../struct_m_q_t_t_async__success_data5.html#a26c7d90bad0e00a056dff117b9111346',1,'MQTTAsync_successData5']]], - ['subscribeoptions_513',['subscribeOptions',['../struct_m_q_t_t_async__response_options.html#a16a3cd2a8c69669e9ed6e420ccd9c517',1,'MQTTAsync_responseOptions']]], - ['subscribeoptionscount_514',['subscribeOptionsCount',['../struct_m_q_t_t_async__response_options.html#a1a4b9bb2780472ec7bb65d0df1bf5d26',1,'MQTTAsync_responseOptions']]], - ['subscribeoptionslist_515',['subscribeOptionsList',['../struct_m_q_t_t_async__response_options.html#a98f71c5d03dc5ee86fd9dc0119ccb961',1,'MQTTAsync_responseOptions']]] + ['sendwhiledisconnected_501',['sendWhileDisconnected',['../struct_m_q_t_t_async__create_options.html#a078cd68d8f896ce7eac0cc83d4486a2c',1,'MQTTAsync_createOptions']]], + ['serveruri_502',['serverURI',['../struct_m_q_t_t_async__success_data.html#a95309fdf27015b12bc4adf56306e557b',1,'MQTTAsync_successData::serverURI()'],['../struct_m_q_t_t_async__success_data5.html#a95309fdf27015b12bc4adf56306e557b',1,'MQTTAsync_successData5::serverURI()']]], + ['serveruricount_503',['serverURIcount',['../struct_m_q_t_t_async__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTAsync_connectOptions']]], + ['serveruris_504',['serverURIs',['../struct_m_q_t_t_async__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTAsync_connectOptions']]], + ['sessionpresent_505',['sessionPresent',['../struct_m_q_t_t_async__success_data.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTAsync_successData::sessionPresent()'],['../struct_m_q_t_t_async__success_data5.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTAsync_successData5::sessionPresent()']]], + ['ssl_506',['ssl',['../struct_m_q_t_t_async__connect_options.html#a86fd59846f3ba2082fd99906c6b496a6',1,'MQTTAsync_connectOptions']]], + ['ssl_5ferror_5fcb_507',['ssl_error_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a21b6ca8a73ba197e65f6a93365d39c04',1,'MQTTAsync_SSLOptions']]], + ['ssl_5ferror_5fcontext_508',['ssl_error_context',['../struct_m_q_t_t_async___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTAsync_SSLOptions']]], + ['ssl_5fpsk_5fcb_509',['ssl_psk_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a94317cdaf352f9ae496976f8a30f8fee',1,'MQTTAsync_SSLOptions']]], + ['ssl_5fpsk_5fcontext_510',['ssl_psk_context',['../struct_m_q_t_t_async___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTAsync_SSLOptions']]], + ['sslversion_511',['sslVersion',['../struct_m_q_t_t_async___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTAsync_SSLOptions']]], + ['struct_5fid_512',['struct_id',['../struct_m_q_t_t_subscribe__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTSubscribe_options::struct_id()'],['../struct_m_q_t_t_async__disconnect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_disconnectOptions::struct_id()'],['../struct_m_q_t_t_async__connect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_connectOptions::struct_id()'],['../struct_m_q_t_t_async___s_s_l_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_SSLOptions::struct_id()'],['../struct_m_q_t_t_async__will_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_willOptions::struct_id()'],['../struct_m_q_t_t_async__create_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_createOptions::struct_id()'],['../struct_m_q_t_t_async__success_data5.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_successData5::struct_id()'],['../struct_m_q_t_t_async__failure_data5.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_failureData5::struct_id()'],['../struct_m_q_t_t_async__connect_data.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_connectData::struct_id()'],['../struct_m_q_t_t_async__message.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_message::struct_id()'],['../struct_m_q_t_t_async__init__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_init_options::struct_id()'],['../struct_m_q_t_t_async__response_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTAsync_responseOptions::struct_id()']]], + ['struct_5fversion_513',['struct_version',['../struct_m_q_t_t_async__response_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_responseOptions::struct_version()'],['../struct_m_q_t_t_subscribe__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTSubscribe_options::struct_version()'],['../struct_m_q_t_t_async__disconnect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_disconnectOptions::struct_version()'],['../struct_m_q_t_t_async__connect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_connectOptions::struct_version()'],['../struct_m_q_t_t_async___s_s_l_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_SSLOptions::struct_version()'],['../struct_m_q_t_t_async__will_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_willOptions::struct_version()'],['../struct_m_q_t_t_async__create_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_createOptions::struct_version()'],['../struct_m_q_t_t_async__success_data5.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_successData5::struct_version()'],['../struct_m_q_t_t_async__failure_data5.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_failureData5::struct_version()'],['../struct_m_q_t_t_async__connect_data.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_connectData::struct_version()'],['../struct_m_q_t_t_async__message.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_message::struct_version()'],['../struct_m_q_t_t_async__init__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTAsync_init_options::struct_version()']]], + ['sub_514',['sub',['../struct_m_q_t_t_async__success_data5.html#a26c7d90bad0e00a056dff117b9111346',1,'MQTTAsync_successData5']]], + ['subscribeoptions_515',['subscribeOptions',['../struct_m_q_t_t_async__response_options.html#a16a3cd2a8c69669e9ed6e420ccd9c517',1,'MQTTAsync_responseOptions']]], + ['subscribeoptionscount_516',['subscribeOptionsCount',['../struct_m_q_t_t_async__response_options.html#a1a4b9bb2780472ec7bb65d0df1bf5d26',1,'MQTTAsync_responseOptions']]], + ['subscribeoptionslist_517',['subscribeOptionsList',['../struct_m_q_t_t_async__response_options.html#a98f71c5d03dc5ee86fd9dc0119ccb961',1,'MQTTAsync_responseOptions']]] ]; diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async___s_s_l_options.html b/docs/MQTTAsync/html/struct_m_q_t_t_async___s_s_l_options.html index 4b917444..d8a16d64 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async___s_s_l_options.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async___s_s_l_options.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_SSLOptions Struct Reference @@ -30,10 +30,10 @@ - + @@ -95,12 +95,12 @@ Data Fields   const char * CApath   -int(* ssl_error_cb )(const char *str, size_t len, void *u) -  +int(* ssl_error_cb )(const char *str, size_t len, void *u) +  void * ssl_error_context   -unsigned int(* ssl_psk_cb )(const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u) -  +unsigned int(* ssl_psk_cb )(const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u) +  void * ssl_psk_context   int disableDefaultTrustStore @@ -282,14 +282,14 @@ Data Fields - -

    ◆ ssl_error_cb

    + +

    ◆ ssl_error_cb

    - +
    int(* ssl_error_cb(const char *str, size_t len, void *u)int(* ssl_error_cb) (const char *str, size_t len, void *u)
    @@ -312,14 +312,14 @@ Data Fields
    - -

    ◆ ssl_psk_cb

    + +

    ◆ ssl_psk_cb

    - +
    unsigned int(* ssl_psk_cb(const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u)unsigned int(* ssl_psk_cb) (const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u)
    @@ -393,9 +393,7 @@ Data Fields
    diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_data.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_data.html index a7987f3a..7bd3307d 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_data.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_data.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_connectData Struct Reference @@ -30,10 +30,10 @@
    - + @@ -166,7 +166,7 @@ Data Fields -

    ◆ binarypwd

    +

    ◆ 

    @@ -186,9 +186,7 @@ Data Fields
    diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_options.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_options.html index e261b8ce..5e458676 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_options.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_options.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_connectOptions Struct Reference @@ -30,10 +30,10 @@
    - + @@ -480,7 +480,7 @@ Data Fields -

    ◆ binarypwd

    +

    ◆ 

    @@ -619,9 +619,7 @@ Data Fields
    diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__create_options.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__create_options.html index 7406f997..19cb9254 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__create_options.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__create_options.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_createOptions Struct Reference @@ -30,10 +30,10 @@
    - + @@ -234,9 +234,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__disconnect_options.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__disconnect_options.html index cb3b18c9..db5ae74f 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__disconnect_options.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__disconnect_options.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_disconnectOptions Struct Reference @@ -30,10 +30,10 @@ - + @@ -254,9 +254,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__failure_data.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__failure_data.html index 5e6820a8..0d78ae28 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__failure_data.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__failure_data.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_failureData Struct Reference @@ -30,10 +30,10 @@ - + @@ -134,9 +134,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__failure_data5.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__failure_data5.html index 65bab0b0..6c4fb7d7 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__failure_data5.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__failure_data5.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_failureData5 Struct Reference @@ -30,10 +30,10 @@ - + @@ -219,9 +219,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__init__options.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__init__options.html index 862239cf..62b17fef 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__init__options.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__init__options.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_init_options Struct Reference @@ -30,10 +30,10 @@ - + @@ -134,9 +134,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__message.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__message.html index 7e0765aa..77bd7d3a 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__message.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__message.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_message Struct Reference @@ -30,10 +30,10 @@ - + @@ -247,9 +247,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__name_value.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__name_value.html index 186c1f87..45a56f36 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__name_value.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__name_value.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_nameValue Struct Reference @@ -30,10 +30,10 @@ - + @@ -117,9 +117,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__response_options.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__response_options.html index 824af54b..3c010292 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__response_options.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__response_options.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_responseOptions Struct Reference @@ -30,10 +30,10 @@ - + @@ -284,9 +284,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__success_data.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__success_data.html index 2ce4df8d..410e56d1 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__success_data.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__success_data.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_successData Struct Reference @@ -30,10 +30,10 @@ - + @@ -178,7 +178,7 @@ Data Fields -

    ◆ pub

    +

    ◆ 

    @@ -238,7 +238,7 @@ Data Fields
    -

    ◆ connect

    +

    ◆ 

    @@ -252,7 +252,7 @@ Data Fields
    -

    ◆ alt

    +

    ◆ 

    @@ -272,9 +272,7 @@ Data Fields
    diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__success_data5.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__success_data5.html index f93b72ee..084d746c 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__success_data5.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__success_data5.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_successData5 Struct Reference @@ -30,10 +30,10 @@
    - + @@ -226,7 +226,7 @@ Data Fields -

    ◆ sub

    +

    ◆ 

    @@ -271,7 +271,7 @@ Data Fields
    -

    ◆ pub

    +

    ◆ 

    @@ -331,7 +331,7 @@ Data Fields
    -

    ◆ connect

    +

    ◆ 

    @@ -345,7 +345,7 @@ Data Fields
    -

    ◆ unsub

    +

    ◆ 

    @@ -360,7 +360,7 @@ Data Fields
    -

    ◆ alt

    +

    ◆ 

    @@ -380,9 +380,7 @@ Data Fields
    diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__will_options.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__will_options.html index f04ee20d..b99900f2 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_async__will_options.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__will_options.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTAsync_willOptions Struct Reference @@ -30,10 +30,10 @@
    - + @@ -217,7 +217,7 @@ Data Fields -

    ◆ payload

    +

    ◆ 

    @@ -237,9 +237,7 @@ Data Fields
    diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_client__persistence.html b/docs/MQTTAsync/html/struct_m_q_t_t_client__persistence.html index 3733e54f..117a4296 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_client__persistence.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_client__persistence.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTClient_persistence Struct Reference @@ -30,10 +30,10 @@
    - + @@ -239,9 +239,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_len_string.html b/docs/MQTTAsync/html/struct_m_q_t_t_len_string.html index c0d5f6e8..4a51da93 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_len_string.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_len_string.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTLenString Struct Reference @@ -30,10 +30,10 @@ - + @@ -117,9 +117,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_properties.html b/docs/MQTTAsync/html/struct_m_q_t_t_properties.html index 991d1946..11822232 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_properties.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_properties.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTProperties Struct Reference @@ -30,10 +30,10 @@ - + @@ -151,9 +151,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_property.html b/docs/MQTTAsync/html/struct_m_q_t_t_property.html index 712d6dbe..e858b002 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_property.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_property.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTProperty Struct Reference @@ -30,10 +30,10 @@ - + @@ -186,7 +186,7 @@ Data Fields -

    ◆ value [2/2]

    +

    ◆  [2/2]

    @@ -206,9 +206,7 @@ Data Fields
    diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_subscribe__options.html b/docs/MQTTAsync/html/struct_m_q_t_t_subscribe__options.html index e7ae4400..bf218f80 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_subscribe__options.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_subscribe__options.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: MQTTSubscribe_options Struct Reference @@ -30,10 +30,10 @@
    - + @@ -168,9 +168,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/subscribe.html b/docs/MQTTAsync/html/subscribe.html index 753762f7..cee681da 100644 --- a/docs/MQTTAsync/html/subscribe.html +++ b/docs/MQTTAsync/html/subscribe.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Subscription example @@ -30,10 +30,10 @@ - + @@ -248,47 +248,45 @@ $(function() {
    exit:
    return rc;
    }
    - - -
    void * context
    Definition: MQTTAsync.h:732
    -
    int MQTTAsync_subscribe(MQTTAsync handle, const char *topic, int qos, MQTTAsync_responseOptions *response)
    -
    #define MQTTAsync_responseOptions_initializer
    Definition: MQTTAsync.h:771
    -
    void * MQTTAsync
    Definition: MQTTAsync.h:253
    -
    int MQTTAsync_setCallbacks(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl, MQTTAsync_messageArrived *ma, MQTTAsync_deliveryComplete *dc)
    -
    int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions *options)
    -
    #define MQTTCLIENT_PERSISTENCE_NONE
    Definition: MQTTClientPersistence.h:74
    -
    int payloadlen
    Definition: MQTTAsync.h:279
    -
    void MQTTAsync_destroy(MQTTAsync *handle)
    -
    Definition: MQTTAsync.h:570
    -
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1443
    -
    #define MQTTASYNC_SUCCESS
    Definition: MQTTAsync.h:113
    -
    Definition: MQTTAsync.h:708
    -
    int MQTTAsync_create(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    -
    #define MQTTAsync_disconnectOptions_initializer
    Definition: MQTTAsync.h:1478
    -
    int keepAliveInterval
    Definition: MQTTAsync.h:1223
    -
    void * payload
    Definition: MQTTAsync.h:281
    -
    int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
    -
    Definition: MQTTAsync.h:271
    -
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:726
    -
    void MQTTAsync_free(void *ptr)
    -
    Definition: MQTTAsync.h:1198
    -
    Definition: MQTTAsync.h:535
    -
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:720
    -
    int code
    Definition: MQTTAsync.h:540
    -
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1449
    -
    Definition: MQTTAsync.h:1427
    -
    #define MQTTAsync_connectOptions_initializer
    Definition: MQTTAsync.h:1384
    -
    int cleansession
    Definition: MQTTAsync.h:1245
    +
    int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
    +
    void * MQTTAsync
    Definition: MQTTAsync.h:253
    +
    void MQTTAsync_free(void *ptr)
    +
    #define MQTTAsync_disconnectOptions_initializer
    Definition: MQTTAsync.h:1478
    +
    #define MQTTAsync_responseOptions_initializer
    Definition: MQTTAsync.h:771
    +
    int MQTTAsync_create(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    void MQTTAsync_freeMessage(MQTTAsync_message **msg)
    -
    void * context
    Definition: MQTTAsync.h:1302
    +
    void MQTTAsync_destroy(MQTTAsync *handle)
    +
    int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions *options)
    +
    int MQTTAsync_subscribe(MQTTAsync handle, const char *topic, int qos, MQTTAsync_responseOptions *response)
    +
    #define MQTTAsync_connectOptions_initializer
    Definition: MQTTAsync.h:1384
    +
    int MQTTAsync_setCallbacks(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl, MQTTAsync_messageArrived *ma, MQTTAsync_deliveryComplete *dc)
    +
    #define MQTTASYNC_SUCCESS
    Definition: MQTTAsync.h:113
    +
    #define MQTTCLIENT_PERSISTENCE_NONE
    Definition: MQTTClientPersistence.h:74
    +
    Definition: MQTTAsync.h:1199
    +
    int cleansession
    Definition: MQTTAsync.h:1245
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1296
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1290
    +
    int keepAliveInterval
    Definition: MQTTAsync.h:1223
    +
    void * context
    Definition: MQTTAsync.h:1302
    +
    Definition: MQTTAsync.h:1428
    +
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1449
    +
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1443
    +
    Definition: MQTTAsync.h:536
    +
    int code
    Definition: MQTTAsync.h:540
    +
    Definition: MQTTAsync.h:272
    +
    void * payload
    Definition: MQTTAsync.h:281
    +
    int payloadlen
    Definition: MQTTAsync.h:279
    +
    Definition: MQTTAsync.h:709
    +
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:726
    +
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:720
    +
    void * context
    Definition: MQTTAsync.h:732
    +
    Definition: MQTTAsync.h:571
    + + diff --git a/docs/MQTTAsync/html/tracing.html b/docs/MQTTAsync/html/tracing.html index 83f159ec..0a7b4626 100644 --- a/docs/MQTTAsync/html/tracing.html +++ b/docs/MQTTAsync/html/tracing.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Tracing @@ -30,10 +30,10 @@ - + @@ -139,9 +139,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/wildcard.html b/docs/MQTTAsync/html/wildcard.html index 1aa6f05a..6f7c1754 100644 --- a/docs/MQTTAsync/html/wildcard.html +++ b/docs/MQTTAsync/html/wildcard.html @@ -3,7 +3,7 @@ - + Paho Asynchronous MQTT C Client Library: Subscription wildcards @@ -30,10 +30,10 @@ - + @@ -81,9 +81,7 @@ A '+' character represents a single level of the hierarchy and is used between d diff --git a/docs/MQTTAsync/man/man3/MQTTAsync.h.3 b/docs/MQTTAsync/man/man3/MQTTAsync.h.3 index 3707e52c..e61275c6 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync.h.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync.h.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync.h" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync.h" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_SSLOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_SSLOptions.3 index 4bd63972..0bf34b03 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_SSLOptions.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_SSLOptions.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_SSLOptions" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_SSLOptions" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME @@ -101,11 +101,11 @@ The SSL/TLS version to use\&. Specify one of MQTT_SSL_VERSION_DEFAULT (0), MQTT_ Whether to carry out post-connect checks, including that a certificate matches the given host name\&. Exists only if struct_version >= 2 .SS "const char* CApath" From the OpenSSL documentation: If CApath is not NULL, it points to a directory containing CA certificates in PEM format\&. Exists only if struct_version >= 2 -.SS "int(* ssl_error_cb(const char *str, size_t len, void *u)" +.SS "int(* ssl_error_cb) (const char *str, size_t len, void *u)" Callback function for OpenSSL error handler ERR_print_errors_cb Exists only if struct_version >= 3 .SS "void* ssl_error_context" Application-specific contex for OpenSSL error handler ERR_print_errors_cb Exists only if struct_version >= 3 -.SS "unsigned int(* ssl_psk_cb(const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u)" +.SS "unsigned int(* ssl_psk_cb) (const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u)" Callback function for setting TLS-PSK options\&. Parameters correspond to that of SSL_CTX_set_psk_client_callback, except for u which is the pointer ssl_psk_context\&. Exists only if struct_version >= 4 .SS "void* ssl_psk_context" Application-specific contex for ssl_psk_cb Exists only if struct_version >= 4 diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_connectData.3 b/docs/MQTTAsync/man/man3/MQTTAsync_connectData.3 index ea98f3b9..ce4e64d7 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_connectData.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_connectData.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_connectData" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_connectData" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_connectOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_connectOptions.3 index 6afd1893..2a751496 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_connectOptions.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_connectOptions.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_connectOptions" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_connectOptions" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_createOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_createOptions.3 index 73c4cba5..5e9a974d 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_createOptions.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_createOptions.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_createOptions" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_createOptions" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_disconnectOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_disconnectOptions.3 index 1778c891..beb084d0 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_disconnectOptions.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_disconnectOptions.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_disconnectOptions" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_disconnectOptions" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_failureData.3 b/docs/MQTTAsync/man/man3/MQTTAsync_failureData.3 index 72954f37..210a8d6f 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_failureData.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_failureData.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_failureData" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_failureData" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_failureData5.3 b/docs/MQTTAsync/man/man3/MQTTAsync_failureData5.3 index 4cda0bf7..b08e4ab5 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_failureData5.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_failureData5.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_failureData5" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_failureData5" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_init_options.3 b/docs/MQTTAsync/man/man3/MQTTAsync_init_options.3 index a78e5380..5e220167 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_init_options.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_init_options.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_init_options" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_init_options" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_message.3 b/docs/MQTTAsync/man/man3/MQTTAsync_message.3 index 960c0d16..c5a60504 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_message.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_message.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_message" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_message" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_nameValue.3 b/docs/MQTTAsync/man/man3/MQTTAsync_nameValue.3 index 831d0e59..ad4c27b9 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_nameValue.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_nameValue.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_nameValue" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_nameValue" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_responseOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_responseOptions.3 index af47e26f..266433f6 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_responseOptions.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_responseOptions.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_responseOptions" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_responseOptions" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_successData.3 b/docs/MQTTAsync/man/man3/MQTTAsync_successData.3 index dfaa0fad..7409485a 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_successData.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_successData.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_successData" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_successData" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_successData5.3 b/docs/MQTTAsync/man/man3/MQTTAsync_successData5.3 index f5e23363..5a674a60 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_successData5.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_successData5.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_successData5" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_successData5" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_willOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_willOptions.3 index 5f3d8346..134d5936 100644 --- a/docs/MQTTAsync/man/man3/MQTTAsync_willOptions.3 +++ b/docs/MQTTAsync/man/man3/MQTTAsync_willOptions.3 @@ -1,4 +1,4 @@ -.TH "MQTTAsync_willOptions" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_willOptions" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTClientPersistence.h.3 b/docs/MQTTAsync/man/man3/MQTTClientPersistence.h.3 index 7b08a85a..866783d8 100644 --- a/docs/MQTTAsync/man/man3/MQTTClientPersistence.h.3 +++ b/docs/MQTTAsync/man/man3/MQTTClientPersistence.h.3 @@ -1,4 +1,4 @@ -.TH "MQTTClientPersistence.h" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClientPersistence.h" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTClient_persistence.3 b/docs/MQTTAsync/man/man3/MQTTClient_persistence.3 index b6aaa5dd..adf6df4e 100644 --- a/docs/MQTTAsync/man/man3/MQTTClient_persistence.3 +++ b/docs/MQTTAsync/man/man3/MQTTClient_persistence.3 @@ -1,4 +1,4 @@ -.TH "MQTTClient_persistence" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_persistence" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTLenString.3 b/docs/MQTTAsync/man/man3/MQTTLenString.3 index a49898e3..77065b68 100644 --- a/docs/MQTTAsync/man/man3/MQTTLenString.3 +++ b/docs/MQTTAsync/man/man3/MQTTLenString.3 @@ -1,4 +1,4 @@ -.TH "MQTTLenString" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTLenString" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTProperties.3 b/docs/MQTTAsync/man/man3/MQTTProperties.3 index 26b4e4ae..9d4263a5 100644 --- a/docs/MQTTAsync/man/man3/MQTTProperties.3 +++ b/docs/MQTTAsync/man/man3/MQTTProperties.3 @@ -1,4 +1,4 @@ -.TH "MQTTProperties" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperties" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTProperties.h.3 b/docs/MQTTAsync/man/man3/MQTTProperties.h.3 index 1e9f29e7..710616a2 100644 --- a/docs/MQTTAsync/man/man3/MQTTProperties.h.3 +++ b/docs/MQTTAsync/man/man3/MQTTProperties.h.3 @@ -1,4 +1,4 @@ -.TH "MQTTProperties.h" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperties.h" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME @@ -257,7 +257,7 @@ the length in bytes of the properties when serialized\&. .PP .SS "int MQTTProperties_add (\fBMQTTProperties\fP * props, const \fBMQTTProperty\fP * prop)" -Add a property pointer to the property array\&. There is no memory allocation\&. +Add a property pointer to the property array\&. Memory is allocated in this function, so MQTTClient_create or MQTTAsync_create must be called first to initialize the internal heap tracking\&. Alternatively \fBMQTTAsync_global_init()\fP can be called first or build with the HIGH_PERFORMANCE option which disables the heap tracking\&. .PP \fBParameters\fP .RS 4 diff --git a/docs/MQTTAsync/man/man3/MQTTProperty.3 b/docs/MQTTAsync/man/man3/MQTTProperty.3 index 32b49f7a..afd65581 100644 --- a/docs/MQTTAsync/man/man3/MQTTProperty.3 +++ b/docs/MQTTAsync/man/man3/MQTTProperty.3 @@ -1,4 +1,4 @@ -.TH "MQTTProperty" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperty" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTReasonCodes.h.3 b/docs/MQTTAsync/man/man3/MQTTReasonCodes.h.3 index 2ba332e8..71662d7e 100644 --- a/docs/MQTTAsync/man/man3/MQTTReasonCodes.h.3 +++ b/docs/MQTTAsync/man/man3/MQTTReasonCodes.h.3 @@ -1,4 +1,4 @@ -.TH "MQTTReasonCodes.h" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTReasonCodes.h" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTSubscribeOpts.h.3 b/docs/MQTTAsync/man/man3/MQTTSubscribeOpts.h.3 index 28ec11c6..ca207f81 100644 --- a/docs/MQTTAsync/man/man3/MQTTSubscribeOpts.h.3 +++ b/docs/MQTTAsync/man/man3/MQTTSubscribeOpts.h.3 @@ -1,4 +1,4 @@ -.TH "MQTTSubscribeOpts.h" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTSubscribeOpts.h" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTSubscribe_options.3 b/docs/MQTTAsync/man/man3/MQTTSubscribe_options.3 index 2ab8474f..28432e21 100644 --- a/docs/MQTTAsync/man/man3/MQTTSubscribe_options.3 +++ b/docs/MQTTAsync/man/man3/MQTTSubscribe_options.3 @@ -1,4 +1,4 @@ -.TH "MQTTSubscribe_options" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTSubscribe_options" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/async.3 b/docs/MQTTAsync/man/man3/async.3 index c3901c02..1606d1b9 100644 --- a/docs/MQTTAsync/man/man3/async.3 +++ b/docs/MQTTAsync/man/man3/async.3 @@ -1,4 +1,4 @@ -.TH "async" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "async" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/auto_reconnect.3 b/docs/MQTTAsync/man/man3/auto_reconnect.3 index 1e73986d..8ee9e1f1 100644 --- a/docs/MQTTAsync/man/man3/auto_reconnect.3 +++ b/docs/MQTTAsync/man/man3/auto_reconnect.3 @@ -1,4 +1,4 @@ -.TH "auto_reconnect" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "auto_reconnect" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/callbacks.3 b/docs/MQTTAsync/man/man3/callbacks.3 index 14ebb66a..a0c43aac 100644 --- a/docs/MQTTAsync/man/man3/callbacks.3 +++ b/docs/MQTTAsync/man/man3/callbacks.3 @@ -1,4 +1,4 @@ -.TH "callbacks" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "callbacks" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/offline_publish.3 b/docs/MQTTAsync/man/man3/offline_publish.3 index fcd941df..a5d3f824 100644 --- a/docs/MQTTAsync/man/man3/offline_publish.3 +++ b/docs/MQTTAsync/man/man3/offline_publish.3 @@ -1,4 +1,4 @@ -.TH "offline_publish" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "offline_publish" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/publish.3 b/docs/MQTTAsync/man/man3/publish.3 index a123bafd..35952293 100644 --- a/docs/MQTTAsync/man/man3/publish.3 +++ b/docs/MQTTAsync/man/man3/publish.3 @@ -1,4 +1,4 @@ -.TH "publish" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "publish" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/qos.3 b/docs/MQTTAsync/man/man3/qos.3 index ebf2b4f7..e6e100a1 100644 --- a/docs/MQTTAsync/man/man3/qos.3 +++ b/docs/MQTTAsync/man/man3/qos.3 @@ -1,4 +1,4 @@ -.TH "qos" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "qos" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/subscribe.3 b/docs/MQTTAsync/man/man3/subscribe.3 index f45f171f..92c9bb57 100644 --- a/docs/MQTTAsync/man/man3/subscribe.3 +++ b/docs/MQTTAsync/man/man3/subscribe.3 @@ -1,4 +1,4 @@ -.TH "subscribe" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "subscribe" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/tracing.3 b/docs/MQTTAsync/man/man3/tracing.3 index e02ccc20..1695095e 100644 --- a/docs/MQTTAsync/man/man3/tracing.3 +++ b/docs/MQTTAsync/man/man3/tracing.3 @@ -1,4 +1,4 @@ -.TH "tracing" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "tracing" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/wildcard.3 b/docs/MQTTAsync/man/man3/wildcard.3 index d8586d1e..f0daa83f 100644 --- a/docs/MQTTAsync/man/man3/wildcard.3 +++ b/docs/MQTTAsync/man/man3/wildcard.3 @@ -1,4 +1,4 @@ -.TH "wildcard" 3 "Thu Sep 29 2022" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "wildcard" 3 "Fri Oct 13 2023" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/html/_m_q_t_t_client_8h.html b/docs/MQTTClient/html/_m_q_t_t_client_8h.html index 1ed5cb4e..8821fd0d 100644 --- a/docs/MQTTClient/html/_m_q_t_t_client_8h.html +++ b/docs/MQTTClient/html/_m_q_t_t_client_8h.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClient.h File Reference @@ -30,10 +30,10 @@ - + @@ -196,14 +196,14 @@ Typedefs

    Enumerations

    enum  MQTTCLIENT_TRACE_LEVELS {
    -  MQTTCLIENT_TRACE_MAXIMUM = 1, -MQTTCLIENT_TRACE_MEDIUM, -MQTTCLIENT_TRACE_MINIMUM, -MQTTCLIENT_TRACE_PROTOCOL, -
    -  MQTTCLIENT_TRACE_ERROR, -MQTTCLIENT_TRACE_SEVERE, -MQTTCLIENT_TRACE_FATAL +  MQTTCLIENT_TRACE_MAXIMUM = 1 +, MQTTCLIENT_TRACE_MEDIUM +, MQTTCLIENT_TRACE_MINIMUM +, MQTTCLIENT_TRACE_PROTOCOL +,
    +  MQTTCLIENT_TRACE_ERROR +, MQTTCLIENT_TRACE_SEVERE +, MQTTCLIENT_TRACE_FATAL
    }   @@ -272,6 +272,8 @@ Functions   void MQTTClient_free (void *ptr)   +void * MQTTClient_malloc (size_t size) +  void MQTTClient_destroy (MQTTClient *handle)   void MQTTClient_setTraceLevel (enum MQTTCLIENT_TRACE_LEVELS level) @@ -728,6 +730,7 @@ Functions
    Value:
    { {'M', 'Q', 'T', 'C'}, 8, 60, 1, 1, NULL, NULL, NULL, 30, 0, NULL,\
    0, NULL, MQTTVERSION_DEFAULT, {NULL, 0, 0}, {0, NULL}, -1, 0, NULL, NULL, NULL}
    +
    #define MQTTVERSION_DEFAULT
    Definition: MQTTClient.h:208

    Initializer for connect options for MQTT 3.1.1 non-WebSocket connections

    @@ -745,6 +748,7 @@ Functions
    Value:
    { {'M', 'Q', 'T', 'C'}, 8, 60, 0, 1, NULL, NULL, NULL, 30, 0, NULL,\
    0, NULL, MQTTVERSION_5, {NULL, 0, 0}, {0, NULL}, -1, 1, NULL, NULL, NULL}
    +
    #define MQTTVERSION_5
    Definition: MQTTClient.h:220

    Initializer for connect options for MQTT 5.0 non-WebSocket connections

    @@ -2379,6 +2383,30 @@ Functions + + + +

    ◆ MQTTClient_malloc()

    + +
    +
    + + + + + + + + +
    void* MQTTClient_malloc (size_t size)
    +
    +

    This function is used to allocate memory to be used or freed by the MQTT C client library, especially the data in user persistence. This is needed on Windows when the client library and application program have been compiled with different versions of the C compiler.

    Parameters
    + + +
    sizeThe size of the memory to be allocated.
    +
    +
    +
    @@ -2510,13 +2538,9 @@ Functions -
    #define MQTTVERSION_DEFAULT
    Definition: MQTTClient.h:208
    -
    #define MQTTVERSION_5
    Definition: MQTTClient.h:220
    diff --git a/docs/MQTTClient/html/_m_q_t_t_client_8h_source.html b/docs/MQTTClient/html/_m_q_t_t_client_8h_source.html index 2966aaec..a421c913 100644 --- a/docs/MQTTClient/html/_m_q_t_t_client_8h_source.html +++ b/docs/MQTTClient/html/_m_q_t_t_client_8h_source.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClient.h Source File @@ -30,10 +30,10 @@ - + @@ -67,7 +67,7 @@ $(function() {
    Go to the documentation of this file.
    1 /*******************************************************************************
    -
    2  * Copyright (c) 2009, 2022 IBM Corp., Ian Craggs and others
    +
    2  * Copyright (c) 2009, 2023 IBM Corp., Ian Craggs and others
    3  *
    4  * All rights reserved. This program and the accompanying materials
    5  * are made available under the terms of the Eclipse Public License v2.0
    @@ -109,46 +109,29 @@ $(function() {
    126 #endif
    127 
    132 #define MQTTCLIENT_SUCCESS 0
    -
    133 
    137 #define MQTTCLIENT_FAILURE -1
    138 
    139 /* error code -2 is MQTTCLIENT_PERSISTENCE_ERROR */
    140 
    144 #define MQTTCLIENT_DISCONNECTED -3
    -
    145 
    149 #define MQTTCLIENT_MAX_MESSAGES_INFLIGHT -4
    -
    150 
    153 #define MQTTCLIENT_BAD_UTF8_STRING -5
    -
    154 
    157 #define MQTTCLIENT_NULL_PARAMETER -6
    -
    158 
    163 #define MQTTCLIENT_TOPICNAME_TRUNCATED -7
    -
    164 
    168 #define MQTTCLIENT_BAD_STRUCTURE -8
    -
    169 
    172 #define MQTTCLIENT_BAD_QOS -9
    -
    173 
    176 #define MQTTCLIENT_SSL_NOT_SUPPORTED -10
    -
    177 
    180  #define MQTTCLIENT_BAD_MQTT_VERSION -11
    -
    181 
    190 #define MQTTCLIENT_BAD_PROTOCOL -14
    -
    191 
    194  #define MQTTCLIENT_BAD_MQTT_OPTION -15
    -
    195 
    198  #define MQTTCLIENT_WRONG_MQTT_VERSION -16
    -
    199 
    202  #define MQTTCLIENT_0_LEN_WILL_TOPIC -17
    203 
    204 
    208 #define MQTTVERSION_DEFAULT 0
    -
    209 
    212 #define MQTTVERSION_3_1 3
    -
    213 
    216 #define MQTTVERSION_3_1_1 4
    -
    217 
    220  #define MQTTVERSION_5 5
    -
    221 
    224 #define MQTT_BAD_SUBSCRIBE 0x80
    225 
    229 typedef struct
    @@ -160,7 +143,7 @@ $(function() {
    238 
    239 #define MQTTClient_init_options_initializer { {'M', 'Q', 'T', 'G'}, 0, 0 }
    240 
    -
    245 LIBMQTT_API void MQTTClient_global_init(MQTTClient_init_options* inits);
    +
    246 
    251 typedef void* MQTTClient;
    @@ -187,21 +170,21 @@ $(function() {
    387 
    403 typedef void MQTTClient_connectionLost(void* context, char* cause);
    404 
    -
    433 LIBMQTT_API int MQTTClient_setCallbacks(MQTTClient handle, void* context, MQTTClient_connectionLost* cl,
    +
    433 LIBMQTT_API int MQTTClient_setCallbacks(MQTTClient handle, void* context, MQTTClient_connectionLost* cl,
    435 
    436 
    446 typedef void MQTTClient_disconnected(void* context, MQTTProperties* properties,
    447  enum MQTTReasonCodes reasonCode);
    448 
    -
    462 LIBMQTT_API int MQTTClient_setDisconnected(MQTTClient handle, void* context, MQTTClient_disconnected* co);
    +
    462 LIBMQTT_API int MQTTClient_setDisconnected(MQTTClient handle, void* context, MQTTClient_disconnected* co);
    463 
    487 typedef void MQTTClient_published(void* context, int dt, int packet_type, MQTTProperties* properties,
    488  enum MQTTReasonCodes reasonCode);
    489 
    -
    490 LIBMQTT_API int MQTTClient_setPublished(MQTTClient handle, void* context, MQTTClient_published* co);
    +
    490 LIBMQTT_API int MQTTClient_setPublished(MQTTClient handle, void* context, MQTTClient_published* co);
    491 
    -
    544 LIBMQTT_API int MQTTClient_create(MQTTClient* handle, const char* serverURI, const char* clientId,
    +
    544 LIBMQTT_API int MQTTClient_create(MQTTClient* handle, const char* serverURI, const char* clientId,
    545  int persistence_type, void* persistence_context);
    546 
    548 typedef struct
    @@ -213,7 +196,7 @@ $(function() {
    561 
    562 #define MQTTClient_createOptions_initializer { {'M', 'Q', 'C', 'O'}, 0, MQTTVERSION_DEFAULT }
    563 
    -
    608 LIBMQTT_API int MQTTClient_createWithOptions(MQTTClient* handle, const char* serverURI, const char* clientId,
    +
    608 LIBMQTT_API int MQTTClient_createWithOptions(MQTTClient* handle, const char* serverURI, const char* clientId,
    609  int persistence_type, void* persistence_context, MQTTClient_createOptions* options);
    610 
    623 typedef struct
    @@ -228,7 +211,7 @@ $(function() {
    646  {
    647  int len;
    648  const void* data;
    -
    649  } payload;
    +
    649  } payload;
    651 
    652 #define MQTTClient_willOptions_initializer { {'M', 'Q', 'T', 'W'}, 1, NULL, NULL, 0, 0, {0, NULL} }
    @@ -262,11 +245,11 @@ $(function() {
    726 
    732  const char* CApath;
    733 
    -
    738  int (*ssl_error_cb) (const char *str, size_t len, void *u);
    +
    738  int (*ssl_error_cb) (const char *str, size_t len, void *u);
    739 
    745 
    -
    751  unsigned int (*ssl_psk_cb) (const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u);
    +
    751  unsigned int (*ssl_psk_cb) (const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u);
    752 
    758 
    @@ -285,7 +268,7 @@ $(function() {
    794  const char* value;
    796 
    - +
    803 
    824 typedef struct
    825 {
    @@ -308,12 +291,12 @@ $(function() {
    947  const char* serverURI;
    948  int MQTTVersion;
    -
    950  } returned;
    +
    950  } returned;
    954  struct
    955  {
    956  int len;
    957  const void* data;
    -
    958  } binarypwd;
    +
    958  } binarypwd;
    963  /*
    964  * MQTT V5 clean start flag. Only clears state at the beginning of the session.
    @@ -336,247 +319,248 @@ $(function() {
    998 #define MQTTClient_connectOptions_initializer5_ws { {'M', 'Q', 'T', 'C'}, 8, 45, 0, 1, NULL, NULL, NULL, 30, 0, NULL,\
    999 0, NULL, MQTTVERSION_5, {NULL, 0, 0}, {0, NULL}, -1, 1, NULL, NULL, NULL}
    1000 
    -
    1021 LIBMQTT_API int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions* options);
    +
    1021 LIBMQTT_API int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions* options);
    1022 
    1024 typedef struct MQTTResponse
    1025 {
    -
    1026  int version; /* the version number of this structure */
    -
    1027  enum MQTTReasonCodes reasonCode; /* the MQTT 5.0 reason code returned */
    +
    1026  int version; /* the version number of this structure */
    +
    1027  enum MQTTReasonCodes reasonCode; /* the MQTT 5.0 reason code returned */
    1028  int reasonCodeCount; /* the number of reason codes. Used for subscribeMany5 and unsubscribeMany5 */
    1029  enum MQTTReasonCodes* reasonCodes; /* a list of reason codes. Used for subscribeMany5 and unsubscribeMany5 */
    1030  MQTTProperties* properties; /* optionally, the MQTT 5.0 properties returned */
    -
    1031 } MQTTResponse;
    +
    1032 
    1033 #define MQTTResponse_initializer {1, MQTTREASONCODE_SUCCESS, 0, NULL, NULL}
    1034 
    -
    1039 LIBMQTT_API void MQTTResponse_free(MQTTResponse response);
    +
    1039 LIBMQTT_API void MQTTResponse_free(MQTTResponse response);
    1040 
    - +
    1055  MQTTProperties* connectProperties, MQTTProperties* willProperties);
    1056 
    -
    1075 LIBMQTT_API int MQTTClient_disconnect(MQTTClient handle, int timeout);
    +
    1075 LIBMQTT_API int MQTTClient_disconnect(MQTTClient handle, int timeout);
    1076 
    -
    1077 LIBMQTT_API int MQTTClient_disconnect5(MQTTClient handle, int timeout, enum MQTTReasonCodes reason, MQTTProperties* props);
    +
    1077 LIBMQTT_API int MQTTClient_disconnect5(MQTTClient handle, int timeout, enum MQTTReasonCodes reason, MQTTProperties* props);
    1078 
    -
    1086 LIBMQTT_API int MQTTClient_isConnected(MQTTClient handle);
    +
    1086 LIBMQTT_API int MQTTClient_isConnected(MQTTClient handle);
    1087 
    1088 
    1089 /* Subscribe is synchronous. QoS list parameter is changed on return to granted QoSs.
    1090  Returns return code, MQTTCLIENT_SUCCESS == success, non-zero some sort of error (TBD) */
    1091 
    -
    1105 LIBMQTT_API int MQTTClient_subscribe(MQTTClient handle, const char* topic, int qos);
    +
    1105 LIBMQTT_API int MQTTClient_subscribe(MQTTClient handle, const char* topic, int qos);
    1106 
    -
    1120 LIBMQTT_API MQTTResponse MQTTClient_subscribe5(MQTTClient handle, const char* topic, int qos,
    +
    1120 LIBMQTT_API MQTTResponse MQTTClient_subscribe5(MQTTClient handle, const char* topic, int qos,
    1121  MQTTSubscribe_options* opts, MQTTProperties* props);
    1122 
    -
    1139 LIBMQTT_API int MQTTClient_subscribeMany(MQTTClient handle, int count, char* const* topic, int* qos);
    +
    1139 LIBMQTT_API int MQTTClient_subscribeMany(MQTTClient handle, int count, char* const* topic, int* qos);
    1140 
    -
    1157 LIBMQTT_API MQTTResponse MQTTClient_subscribeMany5(MQTTClient handle, int count, char* const* topic,
    +
    1157 LIBMQTT_API MQTTResponse MQTTClient_subscribeMany5(MQTTClient handle, int count, char* const* topic,
    1158  int* qos, MQTTSubscribe_options* opts, MQTTProperties* props);
    1159 
    -
    1171 LIBMQTT_API int MQTTClient_unsubscribe(MQTTClient handle, const char* topic);
    +
    1171 LIBMQTT_API int MQTTClient_unsubscribe(MQTTClient handle, const char* topic);
    1172 
    -
    1183 LIBMQTT_API MQTTResponse MQTTClient_unsubscribe5(MQTTClient handle, const char* topic, MQTTProperties* props);
    +
    1183 LIBMQTT_API MQTTResponse MQTTClient_unsubscribe5(MQTTClient handle, const char* topic, MQTTProperties* props);
    1184 
    -
    1196 LIBMQTT_API int MQTTClient_unsubscribeMany(MQTTClient handle, int count, char* const* topic);
    +
    1196 LIBMQTT_API int MQTTClient_unsubscribeMany(MQTTClient handle, int count, char* const* topic);
    1197 
    -
    1209 LIBMQTT_API MQTTResponse MQTTClient_unsubscribeMany5(MQTTClient handle, int count, char* const* topic, MQTTProperties* props);
    +
    1209 LIBMQTT_API MQTTResponse MQTTClient_unsubscribeMany5(MQTTClient handle, int count, char* const* topic, MQTTProperties* props);
    1210 
    -
    1232 LIBMQTT_API int MQTTClient_publish(MQTTClient handle, const char* topicName, int payloadlen, const void* payload, int qos, int retained,
    +
    1232 LIBMQTT_API int MQTTClient_publish(MQTTClient handle, const char* topicName, int payloadlen, const void* payload, int qos, int retained,
    1234 
    -
    1256 LIBMQTT_API MQTTResponse MQTTClient_publish5(MQTTClient handle, const char* topicName, int payloadlen, const void* payload,
    +
    1256 LIBMQTT_API MQTTResponse MQTTClient_publish5(MQTTClient handle, const char* topicName, int payloadlen, const void* payload,
    1257  int qos, int retained, MQTTProperties* properties, MQTTClient_deliveryToken* dt);
    -
    1277 LIBMQTT_API int MQTTClient_publishMessage(MQTTClient handle, const char* topicName, MQTTClient_message* msg, MQTTClient_deliveryToken* dt);
    +
    1277 LIBMQTT_API int MQTTClient_publishMessage(MQTTClient handle, const char* topicName, MQTTClient_message* msg, MQTTClient_deliveryToken* dt);
    1278 
    1279 
    -
    1299 LIBMQTT_API MQTTResponse MQTTClient_publishMessage5(MQTTClient handle, const char* topicName, MQTTClient_message* msg,
    +
    1299 LIBMQTT_API MQTTResponse MQTTClient_publishMessage5(MQTTClient handle, const char* topicName, MQTTClient_message* msg,
    1301 
    -
    1317 LIBMQTT_API int MQTTClient_waitForCompletion(MQTTClient handle, MQTTClient_deliveryToken dt, unsigned long timeout);
    +
    1317 LIBMQTT_API int MQTTClient_waitForCompletion(MQTTClient handle, MQTTClient_deliveryToken dt, unsigned long timeout);
    1318 
    1319 
    - +
    1339 
    -
    1346 LIBMQTT_API void MQTTClient_yield(void);
    +
    1346 LIBMQTT_API void MQTTClient_yield(void);
    1347 
    -
    1379 LIBMQTT_API int MQTTClient_receive(MQTTClient handle, char** topicName, int* topicLen, MQTTClient_message** message,
    +
    1379 LIBMQTT_API int MQTTClient_receive(MQTTClient handle, char** topicName, int* topicLen, MQTTClient_message** message,
    1380  unsigned long timeout);
    1381 
    -
    1392 LIBMQTT_API void MQTTClient_freeMessage(MQTTClient_message** msg);
    +
    1393 
    -
    1402 LIBMQTT_API void MQTTClient_free(void* ptr);
    +
    1402 LIBMQTT_API void MQTTClient_free(void* ptr);
    1403 
    -
    1411 LIBMQTT_API void MQTTClient_destroy(MQTTClient* handle);
    -
    1412 
    -
    1413 
    - -
    1415 {
    - - - - - - - -
    1423 };
    -
    1424 
    -
    1425 
    -
    1431 LIBMQTT_API void MQTTClient_setTraceLevel(enum MQTTCLIENT_TRACE_LEVELS level);
    +
    1410 LIBMQTT_API void* MQTTClient_malloc(size_t size);
    +
    1411 
    +
    1419 LIBMQTT_API void MQTTClient_destroy(MQTTClient* handle);
    +
    1420 
    +
    1421 
    + +
    1423 {
    + + + + + + + +
    1431 };
    1432 
    1433 
    -
    1443 typedef void MQTTClient_traceCallback(enum MQTTCLIENT_TRACE_LEVELS level, char* message);
    -
    1444 
    -
    1451 LIBMQTT_API void MQTTClient_setTraceCallback(MQTTClient_traceCallback* callback);
    + +
    1440 
    +
    1441 
    +
    1451 typedef void MQTTClient_traceCallback(enum MQTTCLIENT_TRACE_LEVELS level, char* message);
    1452 
    -
    1460 LIBMQTT_API int MQTTClient_setCommandTimeout(MQTTClient handle, unsigned long milliSeconds);
    -
    1461 
    -
    1467 LIBMQTT_API const char* MQTTClient_strerror(int code);
    -
    1468 
    -
    1469 #if defined(__cplusplus)
    -
    1470  }
    -
    1471 #endif
    -
    1472 
    -
    1473 #endif
    -
    1474 
    -
    -
    -
    int qos
    Definition: MQTTClient.h:643
    -
    enum MQTTReasonCodes reasonCode
    Definition: MQTTClient.h:1027
    -
    @ MQTTCLIENT_TRACE_MEDIUM
    Definition: MQTTClient.h:1417
    -
    int do_openssl_init
    Definition: MQTTClient.h:236
    -
    int retained
    Definition: MQTTClient.h:314
    -
    int MQTTClient_publish(MQTTClient handle, const char *topicName, int payloadlen, const void *payload, int qos, int retained, MQTTClient_deliveryToken *dt)
    -
    const void * data
    Definition: MQTTClient.h:648
    -
    const char * trustStore
    Definition: MQTTClient.h:686
    -
    int MQTTClient_subscribeMany(MQTTClient handle, int count, char *const *topic, int *qos)
    -
    const unsigned char * protos
    Definition: MQTTClient.h:773
    -
    int MQTTClient_setDisconnected(MQTTClient handle, void *context, MQTTClient_disconnected *co)
    -
    @ MQTTCLIENT_TRACE_PROTOCOL
    Definition: MQTTClient.h:1419
    -
    const char * MQTTClient_strerror(int code)
    -
    void * ssl_psk_context
    Definition: MQTTClient.h:757
    -
    int keepAliveInterval
    Definition: MQTTClient.h:848
    -
    int payloadlen
    Definition: MQTTClient.h:279
    -
    Definition: MQTTProperties.h:112
    -
    MQTTClient_willOptions * will
    Definition: MQTTClient.h:886
    -
    int retryInterval
    Definition: MQTTClient.h:910
    -
    void * ssl_error_context
    Definition: MQTTClient.h:744
    -
    void MQTTClient_setTraceCallback(MQTTClient_traceCallback *callback)
    -
    Definition: MQTTClient.h:548
    -
    int MQTTClient_unsubscribe(MQTTClient handle, const char *topic)
    -
    const char * message
    Definition: MQTTClient.h:634
    -
    const MQTTClient_nameValue * httpHeaders
    Definition: MQTTClient.h:970
    -
    const char * value
    Definition: MQTTClient.h:794
    -
    int MQTTClient_receive(MQTTClient handle, char **topicName, int *topicLen, MQTTClient_message **message, unsigned long timeout)
    -
    int MQTTClient_messageArrived(void *context, char *topicName, int topicLen, MQTTClient_message *message)
    Definition: MQTTClient.h:364
    -
    void MQTTClient_freeMessage(MQTTClient_message **msg)
    -
    MQTTResponse MQTTClient_unsubscribe5(MQTTClient handle, const char *topic, MQTTProperties *props)
    -
    const char * name
    Definition: MQTTClient.h:793
    -
    int struct_version
    Definition: MQTTClient.h:630
    -
    int disableDefaultTrustStore
    Definition: MQTTClient.h:764
    -
    MQTTResponse MQTTClient_publish5(MQTTClient handle, const char *topicName, int payloadlen, const void *payload, int qos, int retained, MQTTProperties *properties, MQTTClient_deliveryToken *dt)
    -
    int cleanstart
    Definition: MQTTClient.h:966
    -
    int sessionPresent
    Definition: MQTTClient.h:949
    -
    Definition: MQTTClient.h:271
    -
    const char * serverURI
    Definition: MQTTClient.h:947
    -
    MQTTResponse MQTTClient_subscribe5(MQTTClient handle, const char *topic, int qos, MQTTSubscribe_options *opts, MQTTProperties *props)
    -
    char *const * serverURIs
    Definition: MQTTClient.h:933
    -
    Definition: MQTTClient.h:671
    -
    MQTTProperties properties
    Definition: MQTTClient.h:329
    -
    int qos
    Definition: MQTTClient.h:295
    -
    void MQTTClient_yield(void)
    -
    int struct_version
    Definition: MQTTClient.h:553
    -
    @ MQTTCLIENT_TRACE_ERROR
    Definition: MQTTClient.h:1420
    -
    int maxInflightMessages
    Definition: MQTTClient.h:962
    -
    void MQTTClient_deliveryComplete(void *context, MQTTClient_deliveryToken dt)
    Definition: MQTTClient.h:386
    -
    int MQTTClient_token
    Definition: MQTTClient.h:263
    -
    -
    int struct_version
    Definition: MQTTClient.h:838
    -
    void MQTTClient_setTraceLevel(enum MQTTCLIENT_TRACE_LEVELS level)
    -
    @ MQTTCLIENT_TRACE_FATAL
    Definition: MQTTClient.h:1422
    -
    void MQTTClient_traceCallback(enum MQTTCLIENT_TRACE_LEVELS level, char *message)
    Definition: MQTTClient.h:1443
    -
    int serverURIcount
    Definition: MQTTClient.h:919
    -
    int MQTTClient_subscribe(MQTTClient handle, const char *topic, int qos)
    -
    int MQTTClient_deliveryToken
    Definition: MQTTClient.h:262
    -
    int MQTTClient_waitForCompletion(MQTTClient handle, MQTTClient_deliveryToken dt, unsigned long timeout)
    -
    int MQTTClient_setCallbacks(MQTTClient handle, void *context, MQTTClient_connectionLost *cl, MQTTClient_messageArrived *ma, MQTTClient_deliveryComplete *dc)
    -
    const char * password
    Definition: MQTTClient.h:898
    -
    Definition: MQTTClient.h:623
    -
    const char * privateKeyPassword
    Definition: MQTTClient.h:699
    -
    const void * data
    Definition: MQTTClient.h:957
    -
    void MQTTClient_global_init(MQTTClient_init_options *inits)
    -
    void MQTTClient_connectionLost(void *context, char *cause)
    Definition: MQTTClient.h:403
    -
    void MQTTClient_published(void *context, int dt, int packet_type, MQTTProperties *properties, enum MQTTReasonCodes reasonCode)
    Definition: MQTTClient.h:487
    -
    void * payload
    Definition: MQTTClient.h:281
    +
    1459 LIBMQTT_API void MQTTClient_setTraceCallback(MQTTClient_traceCallback* callback);
    +
    1460 
    +
    1468 LIBMQTT_API int MQTTClient_setCommandTimeout(MQTTClient handle, unsigned long milliSeconds);
    +
    1469 
    +
    1475 LIBMQTT_API const char* MQTTClient_strerror(int code);
    +
    1476 
    +
    1477 #if defined(__cplusplus)
    +
    1478  }
    +
    1479 #endif
    +
    1480 
    +
    1481 #endif
    +
    1482 
    void MQTTResponse_free(MQTTResponse response)
    struct MQTTResponse MQTTResponse
    -
    int MQTTVersion
    Definition: MQTTClient.h:941
    -
    MQTTProperties * properties
    Definition: MQTTClient.h:1030
    -
    -
    const char * CApath
    Definition: MQTTClient.h:732
    -
    int msgid
    Definition: MQTTClient.h:325
    -
    const char * topicName
    Definition: MQTTClient.h:632
    -
    void * MQTTClient
    Definition: MQTTClient.h:251
    -
    int MQTTClient_getPendingDeliveryTokens(MQTTClient handle, MQTTClient_deliveryToken **tokens)
    -
    Definition: MQTTClient.h:1024
    -
    int MQTTClient_unsubscribeMany(MQTTClient handle, int count, char *const *topic)
    -
    const char * keyStore
    Definition: MQTTClient.h:691
    -
    void MQTTClient_disconnected(void *context, MQTTProperties *properties, enum MQTTReasonCodes reasonCode)
    Definition: MQTTClient.h:446
    -
    int struct_version
    Definition: MQTTClient.h:277
    -
    MQTTResponse MQTTClient_publishMessage5(MQTTClient handle, const char *topicName, MQTTClient_message *msg, MQTTClient_deliveryToken *dt)
    -
    int verify
    Definition: MQTTClient.h:725
    -
    const char * username
    Definition: MQTTClient.h:892
    -
    @ MQTTCLIENT_TRACE_MAXIMUM
    Definition: MQTTClient.h:1416
    -
    unsigned int protos_len
    Definition: MQTTClient.h:779
    -
    @ MQTTCLIENT_TRACE_MINIMUM
    Definition: MQTTClient.h:1418
    -
    MQTTCLIENT_TRACE_LEVELS
    Definition: MQTTClient.h:1414
    -
    int MQTTClient_setCommandTimeout(MQTTClient handle, unsigned long milliSeconds)
    -
    Definition: MQTTSubscribeOpts.h:21
    -
    MQTTClient_nameValue * MQTTClient_getVersionInfo(void)
    -
    int len
    Definition: MQTTClient.h:956
    -
    void MQTTClient_destroy(MQTTClient *handle)
    -
    Definition: MQTTClient.h:824
    -
    int MQTTClient_publishMessage(MQTTClient handle, const char *topicName, MQTTClient_message *msg, MQTTClient_deliveryToken *dt)
    -
    int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
    -
    int struct_version
    Definition: MQTTClient.h:683
    -
    int MQTTClient_createWithOptions(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context, MQTTClient_createOptions *options)
    -
    Definition: MQTTClient.h:791
    -
    int MQTTClient_setPublished(MQTTClient handle, void *context, MQTTClient_published *co)
    -
    int dup
    Definition: MQTTClient.h:321
    -
    MQTTResponse MQTTClient_subscribeMany5(MQTTClient handle, int count, char *const *topic, int *qos, MQTTSubscribe_options *opts, MQTTProperties *props)
    -
    const char * httpsProxy
    Definition: MQTTClient.h:978
    -
    Definition: MQTTClient.h:229
    -
    enum MQTTReasonCodes * reasonCodes
    Definition: MQTTClient.h:1029
    -
    int enableServerCertAuth
    Definition: MQTTClient.h:712
    -
    MQTTResponse MQTTClient_unsubscribeMany5(MQTTClient handle, int count, char *const *topic, MQTTProperties *props)
    -
    const char * privateKey
    Definition: MQTTClient.h:696
    -
    @ MQTTCLIENT_TRACE_SEVERE
    Definition: MQTTClient.h:1421
    -
    int MQTTClient_disconnect(MQTTClient handle, int timeout)
    -
    int reasonCodeCount
    Definition: MQTTClient.h:1028
    -
    int retained
    Definition: MQTTClient.h:638
    -
    int reliable
    Definition: MQTTClient.h:880
    -
    int version
    Definition: MQTTClient.h:1026
    -
    int sslVersion
    Definition: MQTTClient.h:718
    -
    MQTTResponse MQTTClient_connect5(MQTTClient handle, MQTTClient_connectOptions *options, MQTTProperties *connectProperties, MQTTProperties *willProperties)
    -
    int cleansession
    Definition: MQTTClient.h:870
    -
    int MQTTVersion
    Definition: MQTTClient.h:559
    -
    const char * enabledCipherSuites
    Definition: MQTTClient.h:709
    -
    This structure represents a persistent data store, used to store outbound and inbound messages,...
    -
    const char * httpProxy
    Definition: MQTTClient.h:974
    int MQTTClient_disconnect5(MQTTClient handle, int timeout, enum MQTTReasonCodes reason, MQTTProperties *props)
    -
    MQTTClient_SSLOptions * ssl
    Definition: MQTTClient.h:915
    -
    int struct_version
    Definition: MQTTClient.h:234
    +
    int MQTTClient_disconnect(MQTTClient handle, int timeout)
    void MQTTClient_free(void *ptr)
    +
    void MQTTClient_global_init(MQTTClient_init_options *inits)
    +
    void MQTTClient_setTraceCallback(MQTTClient_traceCallback *callback)
    +
    int MQTTClient_getPendingDeliveryTokens(MQTTClient handle, MQTTClient_deliveryToken **tokens)
    +
    MQTTResponse MQTTClient_publishMessage5(MQTTClient handle, const char *topicName, MQTTClient_message *msg, MQTTClient_deliveryToken *dt)
    +
    void MQTTClient_disconnected(void *context, MQTTProperties *properties, enum MQTTReasonCodes reasonCode)
    Definition: MQTTClient.h:446
    +
    MQTTResponse MQTTClient_unsubscribeMany5(MQTTClient handle, int count, char *const *topic, MQTTProperties *props)
    +
    int MQTTClient_receive(MQTTClient handle, char **topicName, int *topicLen, MQTTClient_message **message, unsigned long timeout)
    +
    void MQTTClient_setTraceLevel(enum MQTTCLIENT_TRACE_LEVELS level)
    +
    int MQTTClient_unsubscribeMany(MQTTClient handle, int count, char *const *topic)
    +
    MQTTResponse MQTTClient_subscribeMany5(MQTTClient handle, int count, char *const *topic, int *qos, MQTTSubscribe_options *opts, MQTTProperties *props)
    +
    MQTTResponse MQTTClient_unsubscribe5(MQTTClient handle, const char *topic, MQTTProperties *props)
    +
    void MQTTClient_connectionLost(void *context, char *cause)
    Definition: MQTTClient.h:403
    +
    void MQTTClient_published(void *context, int dt, int packet_type, MQTTProperties *properties, enum MQTTReasonCodes reasonCode)
    Definition: MQTTClient.h:487
    int MQTTClient_isConnected(MQTTClient handle)
    -
    MQTTReasonCodes
    Definition: MQTTReasonCodes.h:23
    -
    int len
    Definition: MQTTClient.h:647
    -
    int connectTimeout
    Definition: MQTTClient.h:902
    +
    int MQTTClient_deliveryToken
    Definition: MQTTClient.h:262
    +
    void * MQTTClient
    Definition: MQTTClient.h:251
    +
    MQTTResponse MQTTClient_publish5(MQTTClient handle, const char *topicName, int payloadlen, const void *payload, int qos, int retained, MQTTProperties *properties, MQTTClient_deliveryToken *dt)
    +
    int MQTTClient_waitForCompletion(MQTTClient handle, MQTTClient_deliveryToken dt, unsigned long timeout)
    +
    void MQTTClient_yield(void)
    +
    int MQTTClient_setDisconnected(MQTTClient handle, void *context, MQTTClient_disconnected *co)
    +
    int MQTTClient_token
    Definition: MQTTClient.h:263
    +
    int MQTTClient_subscribeMany(MQTTClient handle, int count, char *const *topic, int *qos)
    +
    int MQTTClient_setCommandTimeout(MQTTClient handle, unsigned long milliSeconds)
    int MQTTClient_create(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    +
    void * MQTTClient_malloc(size_t size)
    +
    int MQTTClient_subscribe(MQTTClient handle, const char *topic, int qos)
    +
    const char * MQTTClient_strerror(int code)
    +
    int MQTTClient_setPublished(MQTTClient handle, void *context, MQTTClient_published *co)
    +
    MQTTCLIENT_TRACE_LEVELS
    Definition: MQTTClient.h:1423
    +
    @ MQTTCLIENT_TRACE_PROTOCOL
    Definition: MQTTClient.h:1427
    +
    @ MQTTCLIENT_TRACE_FATAL
    Definition: MQTTClient.h:1430
    +
    @ MQTTCLIENT_TRACE_MAXIMUM
    Definition: MQTTClient.h:1424
    +
    @ MQTTCLIENT_TRACE_MEDIUM
    Definition: MQTTClient.h:1425
    +
    @ MQTTCLIENT_TRACE_ERROR
    Definition: MQTTClient.h:1428
    +
    @ MQTTCLIENT_TRACE_MINIMUM
    Definition: MQTTClient.h:1426
    +
    @ MQTTCLIENT_TRACE_SEVERE
    Definition: MQTTClient.h:1429
    +
    int MQTTClient_messageArrived(void *context, char *topicName, int topicLen, MQTTClient_message *message)
    Definition: MQTTClient.h:364
    +
    MQTTResponse MQTTClient_connect5(MQTTClient handle, MQTTClient_connectOptions *options, MQTTProperties *connectProperties, MQTTProperties *willProperties)
    +
    int MQTTClient_unsubscribe(MQTTClient handle, const char *topic)
    +
    int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
    +
    int MQTTClient_setCallbacks(MQTTClient handle, void *context, MQTTClient_connectionLost *cl, MQTTClient_messageArrived *ma, MQTTClient_deliveryComplete *dc)
    +
    void MQTTClient_freeMessage(MQTTClient_message **msg)
    +
    MQTTClient_nameValue * MQTTClient_getVersionInfo(void)
    +
    void MQTTClient_deliveryComplete(void *context, MQTTClient_deliveryToken dt)
    Definition: MQTTClient.h:386
    +
    int MQTTClient_publishMessage(MQTTClient handle, const char *topicName, MQTTClient_message *msg, MQTTClient_deliveryToken *dt)
    +
    int MQTTClient_createWithOptions(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context, MQTTClient_createOptions *options)
    +
    void MQTTClient_destroy(MQTTClient *handle)
    +
    MQTTResponse MQTTClient_subscribe5(MQTTClient handle, const char *topic, int qos, MQTTSubscribe_options *opts, MQTTProperties *props)
    +
    void MQTTClient_traceCallback(enum MQTTCLIENT_TRACE_LEVELS level, char *message)
    Definition: MQTTClient.h:1451
    +
    int MQTTClient_publish(MQTTClient handle, const char *topicName, int payloadlen, const void *payload, int qos, int retained, MQTTClient_deliveryToken *dt)
    +
    This structure represents a persistent data store, used to store outbound and inbound messages,...
    +
    +
    +
    MQTTReasonCodes
    Definition: MQTTReasonCodes.h:23
    +
    +
    Definition: MQTTClient.h:672
    +
    const char * trustStore
    Definition: MQTTClient.h:686
    +
    int struct_version
    Definition: MQTTClient.h:683
    +
    int disableDefaultTrustStore
    Definition: MQTTClient.h:764
    +
    void * ssl_error_context
    Definition: MQTTClient.h:744
    +
    unsigned int protos_len
    Definition: MQTTClient.h:779
    +
    const char * CApath
    Definition: MQTTClient.h:732
    +
    const char * keyStore
    Definition: MQTTClient.h:691
    +
    int sslVersion
    Definition: MQTTClient.h:718
    +
    const unsigned char * protos
    Definition: MQTTClient.h:773
    +
    int enableServerCertAuth
    Definition: MQTTClient.h:712
    +
    const char * privateKey
    Definition: MQTTClient.h:696
    +
    int verify
    Definition: MQTTClient.h:725
    +
    const char * enabledCipherSuites
    Definition: MQTTClient.h:709
    +
    void * ssl_psk_context
    Definition: MQTTClient.h:757
    +
    const char * privateKeyPassword
    Definition: MQTTClient.h:699
    +
    Definition: MQTTClient.h:825
    +
    const MQTTClient_nameValue * httpHeaders
    Definition: MQTTClient.h:970
    +
    int cleansession
    Definition: MQTTClient.h:870
    +
    int struct_version
    Definition: MQTTClient.h:838
    +
    MQTTClient_willOptions * will
    Definition: MQTTClient.h:886
    +
    const void * data
    Definition: MQTTClient.h:957
    +
    int MQTTVersion
    Definition: MQTTClient.h:941
    +
    const char * serverURI
    Definition: MQTTClient.h:947
    +
    const char * httpsProxy
    Definition: MQTTClient.h:978
    +
    int connectTimeout
    Definition: MQTTClient.h:902
    +
    int sessionPresent
    Definition: MQTTClient.h:949
    +
    MQTTClient_SSLOptions * ssl
    Definition: MQTTClient.h:915
    +
    int reliable
    Definition: MQTTClient.h:880
    +
    const char * password
    Definition: MQTTClient.h:898
    +
    int serverURIcount
    Definition: MQTTClient.h:919
    +
    char *const * serverURIs
    Definition: MQTTClient.h:933
    +
    const char * username
    Definition: MQTTClient.h:892
    +
    int retryInterval
    Definition: MQTTClient.h:910
    +
    int keepAliveInterval
    Definition: MQTTClient.h:848
    +
    int cleanstart
    Definition: MQTTClient.h:966
    +
    const char * httpProxy
    Definition: MQTTClient.h:974
    +
    int maxInflightMessages
    Definition: MQTTClient.h:962
    +
    int len
    Definition: MQTTClient.h:956
    +
    Definition: MQTTClient.h:549
    +
    int struct_version
    Definition: MQTTClient.h:553
    +
    int MQTTVersion
    Definition: MQTTClient.h:559
    +
    Definition: MQTTClient.h:230
    +
    int struct_version
    Definition: MQTTClient.h:234
    +
    int do_openssl_init
    Definition: MQTTClient.h:236
    +
    Definition: MQTTClient.h:272
    +
    int struct_version
    Definition: MQTTClient.h:277
    +
    MQTTProperties properties
    Definition: MQTTClient.h:329
    +
    int qos
    Definition: MQTTClient.h:295
    +
    int msgid
    Definition: MQTTClient.h:325
    +
    int retained
    Definition: MQTTClient.h:314
    +
    void * payload
    Definition: MQTTClient.h:281
    +
    int payloadlen
    Definition: MQTTClient.h:279
    +
    int dup
    Definition: MQTTClient.h:321
    +
    Definition: MQTTClient.h:792
    +
    const char * value
    Definition: MQTTClient.h:794
    +
    const char * name
    Definition: MQTTClient.h:793
    +
    Definition: MQTTClient.h:624
    +
    int struct_version
    Definition: MQTTClient.h:630
    +
    const void * data
    Definition: MQTTClient.h:648
    +
    const char * topicName
    Definition: MQTTClient.h:632
    +
    const char * message
    Definition: MQTTClient.h:634
    +
    int qos
    Definition: MQTTClient.h:643
    +
    int retained
    Definition: MQTTClient.h:638
    +
    int len
    Definition: MQTTClient.h:647
    +
    Definition: MQTTProperties.h:113
    +
    Definition: MQTTClient.h:1025
    +
    enum MQTTReasonCodes * reasonCodes
    Definition: MQTTClient.h:1029
    +
    enum MQTTReasonCodes reasonCode
    Definition: MQTTClient.h:1027
    +
    MQTTProperties * properties
    Definition: MQTTClient.h:1030
    +
    int version
    Definition: MQTTClient.h:1026
    +
    int reasonCodeCount
    Definition: MQTTClient.h:1028
    +
    Definition: MQTTSubscribeOpts.h:22
    + diff --git a/docs/MQTTClient/html/_m_q_t_t_client_persistence_8h.html b/docs/MQTTClient/html/_m_q_t_t_client_persistence_8h.html index f0247f1a..5be798b4 100644 --- a/docs/MQTTClient/html/_m_q_t_t_client_persistence_8h.html +++ b/docs/MQTTClient/html/_m_q_t_t_client_persistence_8h.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClientPersistence.h File Reference @@ -30,10 +30,10 @@ - + @@ -443,9 +443,7 @@ Typedefs diff --git a/docs/MQTTClient/html/_m_q_t_t_client_persistence_8h_source.html b/docs/MQTTClient/html/_m_q_t_t_client_persistence_8h_source.html index b097661b..aa0a0b73 100644 --- a/docs/MQTTClient/html/_m_q_t_t_client_persistence_8h_source.html +++ b/docs/MQTTClient/html/_m_q_t_t_client_persistence_8h_source.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClientPersistence.h Source File @@ -30,10 +30,10 @@ - + @@ -90,9 +90,7 @@ $(function() {
    63 */
    64 
    69 #define MQTTCLIENT_PERSISTENCE_DEFAULT 0
    -
    70 
    74 #define MQTTCLIENT_PERSISTENCE_NONE 1
    -
    75 
    79 #define MQTTCLIENT_PERSISTENCE_USER 2
    80 
    85 #define MQTTCLIENT_PERSISTENCE_ERROR -2
    @@ -132,32 +130,30 @@ $(function() {
    275 typedef int MQTTPersistence_afterRead(void* context, char** buffer, int* buflen);
    276 
    277 #endif
    - -
    Persistence_put pput
    Definition: MQTTClientPersistence.h:231
    -
    int(* Persistence_put)(void *handle, char *key, int bufcount, char *buffers[], int buflens[])
    Put the specified data into the persistent store.
    Definition: MQTTClientPersistence.h:140
    -
    Persistence_get pget
    Definition: MQTTClientPersistence.h:235
    -
    Persistence_remove premove
    Definition: MQTTClientPersistence.h:239
    -
    Persistence_clear pclear
    Definition: MQTTClientPersistence.h:247
    -
    int(* Persistence_containskey)(void *handle, char *key)
    Returns whether any data has been persisted using the specified key.
    Definition: MQTTClientPersistence.h:208
    -
    Persistence_keys pkeys
    Definition: MQTTClientPersistence.h:243
    -
    int MQTTPersistence_beforeWrite(void *context, int bufcount, char *buffers[], int buflens[])
    Definition: MQTTClientPersistence.h:264
    -
    Persistence_open popen
    Definition: MQTTClientPersistence.h:223
    -
    int(* Persistence_remove)(void *handle, char *key)
    Remove the data for the specified key from the store.
    Definition: MQTTClientPersistence.h:169
    -
    void * context
    Definition: MQTTClientPersistence.h:219
    -
    A structure containing the function pointers to a persistence implementation and the context or state...
    Definition: MQTTClientPersistence.h:215
    -
    Persistence_close pclose
    Definition: MQTTClientPersistence.h:227
    int(* Persistence_keys)(void *handle, char ***keys, int *nkeys)
    Returns the keys in this persistent data store.
    Definition: MQTTClientPersistence.h:186
    -
    int(* Persistence_clear)(void *handle)
    Clears the persistence store, so that it no longer contains any persisted data.
    Definition: MQTTClientPersistence.h:197
    +
    int(* Persistence_close)(void *handle)
    Close the persistent store referred to by the handle.
    Definition: MQTTClientPersistence.h:123
    +
    int(* Persistence_put)(void *handle, char *key, int bufcount, char *buffers[], int buflens[])
    Put the specified data into the persistent store.
    Definition: MQTTClientPersistence.h:140
    int(* Persistence_open)(void **handle, const char *clientID, const char *serverURI, void *context)
    Initialize the persistent store.
    Definition: MQTTClientPersistence.h:113
    +
    int(* Persistence_remove)(void *handle, char *key)
    Remove the data for the specified key from the store.
    Definition: MQTTClientPersistence.h:169
    +
    int(* Persistence_containskey)(void *handle, char *key)
    Returns whether any data has been persisted using the specified key.
    Definition: MQTTClientPersistence.h:208
    +
    int MQTTPersistence_beforeWrite(void *context, int bufcount, char *buffers[], int buflens[])
    Definition: MQTTClientPersistence.h:264
    +
    int(* Persistence_clear)(void *handle)
    Clears the persistence store, so that it no longer contains any persisted data.
    Definition: MQTTClientPersistence.h:197
    int(* Persistence_get)(void *handle, char *key, char **buffer, int *buflen)
    Retrieve the specified data from the persistent store.
    Definition: MQTTClientPersistence.h:156
    int MQTTPersistence_afterRead(void *context, char **buffer, int *buflen)
    Definition: MQTTClientPersistence.h:275
    +
    A structure containing the function pointers to a persistence implementation and the context or state...
    Definition: MQTTClientPersistence.h:215
    +
    Persistence_open popen
    Definition: MQTTClientPersistence.h:223
    +
    Persistence_keys pkeys
    Definition: MQTTClientPersistence.h:243
    +
    Persistence_put pput
    Definition: MQTTClientPersistence.h:231
    +
    Persistence_get pget
    Definition: MQTTClientPersistence.h:235
    +
    Persistence_remove premove
    Definition: MQTTClientPersistence.h:239
    +
    Persistence_close pclose
    Definition: MQTTClientPersistence.h:227
    +
    Persistence_clear pclear
    Definition: MQTTClientPersistence.h:247
    Persistence_containskey pcontainskey
    Definition: MQTTClientPersistence.h:251
    -
    int(* Persistence_close)(void *handle)
    Close the persistent store referred to by the handle.
    Definition: MQTTClientPersistence.h:123
    +
    void * context
    Definition: MQTTClientPersistence.h:219
    + diff --git a/docs/MQTTClient/html/_m_q_t_t_properties_8h.html b/docs/MQTTClient/html/_m_q_t_t_properties_8h.html index ba2da5a7..20e428c2 100644 --- a/docs/MQTTClient/html/_m_q_t_t_properties_8h.html +++ b/docs/MQTTClient/html/_m_q_t_t_properties_8h.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTProperties.h File Reference @@ -30,10 +30,10 @@ - + @@ -100,51 +100,51 @@ Typedefs

    Enumerations

    enum  MQTTPropertyCodes {
    -  MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR = 1, -MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL = 2, -MQTTPROPERTY_CODE_CONTENT_TYPE = 3, -MQTTPROPERTY_CODE_RESPONSE_TOPIC = 8, -
    -  MQTTPROPERTY_CODE_CORRELATION_DATA = 9, -MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER = 11, -MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL = 17, -MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER = 18, -
    -  MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE = 19, -MQTTPROPERTY_CODE_AUTHENTICATION_METHOD = 21, -MQTTPROPERTY_CODE_AUTHENTICATION_DATA = 22, -MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION = 23, -
    -  MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL = 24, -MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION = 25, -MQTTPROPERTY_CODE_RESPONSE_INFORMATION = 26, -MQTTPROPERTY_CODE_SERVER_REFERENCE = 28, -
    -  MQTTPROPERTY_CODE_REASON_STRING = 31, -MQTTPROPERTY_CODE_RECEIVE_MAXIMUM = 33, -MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM = 34, -MQTTPROPERTY_CODE_TOPIC_ALIAS = 35, -
    -  MQTTPROPERTY_CODE_MAXIMUM_QOS = 36, -MQTTPROPERTY_CODE_RETAIN_AVAILABLE = 37, -MQTTPROPERTY_CODE_USER_PROPERTY = 38, -MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE = 39, -
    -  MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE = 40, -MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE = 41, -MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE = 42 +  MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR = 1 +, MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL = 2 +, MQTTPROPERTY_CODE_CONTENT_TYPE = 3 +, MQTTPROPERTY_CODE_RESPONSE_TOPIC = 8 +,
    +  MQTTPROPERTY_CODE_CORRELATION_DATA = 9 +, MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER = 11 +, MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL = 17 +, MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER = 18 +,
    +  MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE = 19 +, MQTTPROPERTY_CODE_AUTHENTICATION_METHOD = 21 +, MQTTPROPERTY_CODE_AUTHENTICATION_DATA = 22 +, MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION = 23 +,
    +  MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL = 24 +, MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION = 25 +, MQTTPROPERTY_CODE_RESPONSE_INFORMATION = 26 +, MQTTPROPERTY_CODE_SERVER_REFERENCE = 28 +,
    +  MQTTPROPERTY_CODE_REASON_STRING = 31 +, MQTTPROPERTY_CODE_RECEIVE_MAXIMUM = 33 +, MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM = 34 +, MQTTPROPERTY_CODE_TOPIC_ALIAS = 35 +,
    +  MQTTPROPERTY_CODE_MAXIMUM_QOS = 36 +, MQTTPROPERTY_CODE_RETAIN_AVAILABLE = 37 +, MQTTPROPERTY_CODE_USER_PROPERTY = 38 +, MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE = 39 +,
    +  MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE = 40 +, MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE = 41 +, MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE = 42
    }   enum  MQTTPropertyTypes {
    -  MQTTPROPERTY_TYPE_BYTE, -MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER, -MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER, -MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER, -
    -  MQTTPROPERTY_TYPE_BINARY_DATA, -MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING, -MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR +  MQTTPROPERTY_TYPE_BYTE +, MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER +, MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER +, MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER +,
    +  MQTTPROPERTY_TYPE_BINARY_DATA +, MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING +, MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR
    }   @@ -422,7 +422,7 @@ Functions
    -

    Add a property pointer to the property array. There is no memory allocation.

    Parameters
    +

    Add a property pointer to the property array. Memory is allocated in this function, so MQTTClient_create or MQTTAsync_create must be called first to initialize the internal heap tracking. Alternatively MQTTAsync_global_init() can be called first or build with the HIGH_PERFORMANCE option which disables the heap tracking.

    Parameters
    @@ -794,9 +794,7 @@ Functions diff --git a/docs/MQTTClient/html/_m_q_t_t_properties_8h_source.html b/docs/MQTTClient/html/_m_q_t_t_properties_8h_source.html index 8519b6c1..379fa74a 100644 --- a/docs/MQTTClient/html/_m_q_t_t_properties_8h_source.html +++ b/docs/MQTTClient/html/_m_q_t_t_properties_8h_source.html @@ -3,7 +3,7 @@ - +Paho MQTT C Client Library: MQTTProperties.h Source File @@ -30,10 +30,10 @@
    propsThe property list to add the property to.
    propThe property to add to the list.
    - + @@ -67,7 +67,7 @@ $(function() {
    Go to the documentation of this file.
    1 /*******************************************************************************
    -
    2  * Copyright (c) 2017, 2020 IBM Corp. and others
    +
    2  * Copyright (c) 2017, 2023 IBM Corp. and others
    3  *
    4  * All rights reserved. This program and the accompanying materials
    5  * are made available under the terms of the Eclipse Public License v2.0
    @@ -116,10 +116,10 @@ $(function() { - -
    53 };
    + +
    53 };
    54 
    -
    61 LIBMQTT_API const char* MQTTPropertyName(enum MQTTPropertyCodes value);
    +
    61 LIBMQTT_API const char* MQTTPropertyName(enum MQTTPropertyCodes value);
    62 
    @@ -128,10 +128,10 @@ $(function() { - -
    72 };
    + +
    72 };
    73 
    -
    79 LIBMQTT_API int MQTTProperty_getType(enum MQTTPropertyCodes value);
    +
    79 LIBMQTT_API int MQTTProperty_getType(enum MQTTPropertyCodes value);
    80 
    84 typedef struct
    85 {
    @@ -142,7 +142,7 @@ $(function() {
    90 
    94 typedef struct
    95 {
    -
    96  enum MQTTPropertyCodes identifier;
    +
    96  enum MQTTPropertyCodes identifier;
    98  union {
    99  unsigned char byte;
    100  unsigned short integer2;
    @@ -151,7 +151,7 @@ $(function() {
    105  };
    -
    106  } value;
    +
    106  } value;
    107 } MQTTProperty;
    108 
    112 typedef struct MQTTProperties
    @@ -160,106 +160,104 @@ $(function() {
    115  int max_count;
    116  int length;
    - +
    119 
    120 #define MQTTProperties_initializer {0, 0, 0, NULL}
    121 
    - +
    128 
    -
    135 LIBMQTT_API int MQTTProperties_add(MQTTProperties* props, const MQTTProperty* prop);
    -
    136 
    -
    143 int MQTTProperties_write(char** pptr, const MQTTProperties* properties);
    -
    144 
    -
    152 int MQTTProperties_read(MQTTProperties* properties, char** pptr, char* enddata);
    -
    153 
    -
    158 LIBMQTT_API void MQTTProperties_free(MQTTProperties* properties);
    -
    159 
    -
    165 LIBMQTT_API MQTTProperties MQTTProperties_copy(const MQTTProperties* props);
    -
    166 
    -
    173 LIBMQTT_API int MQTTProperties_hasProperty(MQTTProperties *props, enum MQTTPropertyCodes propid);
    -
    174 
    -
    182 LIBMQTT_API int MQTTProperties_propertyCount(MQTTProperties *props, enum MQTTPropertyCodes propid);
    -
    183 
    -
    190 LIBMQTT_API int MQTTProperties_getNumericValue(MQTTProperties *props, enum MQTTPropertyCodes propid);
    -
    191 
    -
    200 LIBMQTT_API int MQTTProperties_getNumericValueAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index);
    -
    201 
    - -
    209 
    -
    217 LIBMQTT_API MQTTProperty* MQTTProperties_getPropertyAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index);
    -
    218 
    -
    219 #endif /* MQTTPROPERTIES_H */
    -
    -
    @ MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE
    Definition: MQTTProperties.h:52
    -
    MQTTProperty * MQTTProperties_getProperty(MQTTProperties *props, enum MQTTPropertyCodes propid)
    -
    @ MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE
    Definition: MQTTProperties.h:51
    -
    @ MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER
    Definition: MQTTProperties.h:31
    -
    @ MQTTPROPERTY_TYPE_BINARY_DATA
    Definition: MQTTProperties.h:69
    -
    int MQTTProperties_len(MQTTProperties *props)
    -
    struct MQTTProperties MQTTProperties
    -
    int length
    Definition: MQTTProperties.h:116
    -
    @ MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM
    Definition: MQTTProperties.h:44
    -
    int MQTTProperties_propertyCount(MQTTProperties *props, enum MQTTPropertyCodes propid)
    -
    @ MQTTPROPERTY_CODE_SERVER_REFERENCE
    Definition: MQTTProperties.h:41
    -
    Definition: MQTTProperties.h:112
    -
    @ MQTTPROPERTY_CODE_RESPONSE_TOPIC
    Definition: MQTTProperties.h:29
    -
    @ MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL
    Definition: MQTTProperties.h:38
    -
    int count
    Definition: MQTTProperties.h:114
    -
    int MQTTProperties_getNumericValue(MQTTProperties *props, enum MQTTPropertyCodes propid)
    -
    @ MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE
    Definition: MQTTProperties.h:34
    -
    int MQTTProperties_write(char **pptr, const MQTTProperties *properties)
    -
    unsigned char byte
    Definition: MQTTProperties.h:99
    -
    @ MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER
    Definition: MQTTProperties.h:66
    -
    MQTTProperty * MQTTProperties_getPropertyAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index)
    -
    MQTTProperties MQTTProperties_copy(const MQTTProperties *props)
    -
    @ MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR
    Definition: MQTTProperties.h:71
    -
    MQTTPropertyCodes
    Definition: MQTTProperties.h:25
    -
    @ MQTTPROPERTY_CODE_RECEIVE_MAXIMUM
    Definition: MQTTProperties.h:43
    -
    char * data
    Definition: MQTTProperties.h:87
    -
    MQTTLenString value
    Definition: MQTTProperties.h:104
    -
    int max_count
    Definition: MQTTProperties.h:115
    -
    @ MQTTPROPERTY_CODE_MAXIMUM_QOS
    Definition: MQTTProperties.h:46
    -
    MQTTLenString data
    Definition: MQTTProperties.h:103
    -
    @ MQTTPROPERTY_CODE_CONTENT_TYPE
    Definition: MQTTProperties.h:28
    -
    const char * MQTTPropertyName(enum MQTTPropertyCodes value)
    -
    int MQTTProperty_getType(enum MQTTPropertyCodes value)
    -
    @ MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER
    Definition: MQTTProperties.h:67
    -
    int len
    Definition: MQTTProperties.h:86
    -
    @ MQTTPROPERTY_CODE_CORRELATION_DATA
    Definition: MQTTProperties.h:30
    -
    @ MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION
    Definition: MQTTProperties.h:37
    -
    MQTTProperty * array
    Definition: MQTTProperties.h:117
    -
    @ MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER
    Definition: MQTTProperties.h:33
    -
    @ MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE
    Definition: MQTTProperties.h:50
    +
    138 LIBMQTT_API int MQTTProperties_add(MQTTProperties* props, const MQTTProperty* prop);
    +
    139 
    +
    146 int MQTTProperties_write(char** pptr, const MQTTProperties* properties);
    +
    147 
    +
    155 int MQTTProperties_read(MQTTProperties* properties, char** pptr, char* enddata);
    +
    156 
    +
    161 LIBMQTT_API void MQTTProperties_free(MQTTProperties* properties);
    +
    162 
    +
    168 LIBMQTT_API MQTTProperties MQTTProperties_copy(const MQTTProperties* props);
    +
    169 
    +
    176 LIBMQTT_API int MQTTProperties_hasProperty(MQTTProperties *props, enum MQTTPropertyCodes propid);
    +
    177 
    +
    185 LIBMQTT_API int MQTTProperties_propertyCount(MQTTProperties *props, enum MQTTPropertyCodes propid);
    +
    186 
    +
    193 LIBMQTT_API int MQTTProperties_getNumericValue(MQTTProperties *props, enum MQTTPropertyCodes propid);
    +
    194 
    +
    203 LIBMQTT_API int MQTTProperties_getNumericValueAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index);
    +
    204 
    +
    211 LIBMQTT_API MQTTProperty* MQTTProperties_getProperty(MQTTProperties *props, enum MQTTPropertyCodes propid);
    +
    212 
    +
    220 LIBMQTT_API MQTTProperty* MQTTProperties_getPropertyAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index);
    +
    221 
    +
    222 #endif /* MQTTPROPERTIES_H */
    int MQTTProperties_hasProperty(MQTTProperties *props, enum MQTTPropertyCodes propid)
    -
    Definition: MQTTProperties.h:94
    -
    @ MQTTPROPERTY_CODE_RETAIN_AVAILABLE
    Definition: MQTTProperties.h:47
    -
    @ MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION
    Definition: MQTTProperties.h:39
    -
    @ MQTTPROPERTY_CODE_AUTHENTICATION_METHOD
    Definition: MQTTProperties.h:35
    -
    @ MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING
    Definition: MQTTProperties.h:70
    -
    int MQTTProperties_read(MQTTProperties *properties, char **pptr, char *enddata)
    -
    @ MQTTPROPERTY_CODE_TOPIC_ALIAS
    Definition: MQTTProperties.h:45
    -
    @ MQTTPROPERTY_TYPE_BYTE
    Definition: MQTTProperties.h:65
    -
    void MQTTProperties_free(MQTTProperties *properties)
    -
    @ MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL
    Definition: MQTTProperties.h:27
    -
    @ MQTTPROPERTY_CODE_AUTHENTICATION_DATA
    Definition: MQTTProperties.h:36
    -
    @ MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER
    Definition: MQTTProperties.h:68
    -
    @ MQTTPROPERTY_CODE_USER_PROPERTY
    Definition: MQTTProperties.h:48
    -
    @ MQTTPROPERTY_CODE_REASON_STRING
    Definition: MQTTProperties.h:42
    -
    MQTTPropertyTypes
    Definition: MQTTProperties.h:64
    -
    @ MQTTPROPERTY_CODE_RESPONSE_INFORMATION
    Definition: MQTTProperties.h:40
    -
    @ MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR
    Definition: MQTTProperties.h:26
    -
    Definition: MQTTProperties.h:84
    -
    @ MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL
    Definition: MQTTProperties.h:32
    -
    unsigned short integer2
    Definition: MQTTProperties.h:100
    -
    int MQTTProperties_getNumericValueAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index)
    -
    unsigned int integer4
    Definition: MQTTProperties.h:101
    +
    MQTTProperties MQTTProperties_copy(const MQTTProperties *props)
    +
    int MQTTProperties_propertyCount(MQTTProperties *props, enum MQTTPropertyCodes propid)
    +
    struct MQTTProperties MQTTProperties
    +
    MQTTProperty * MQTTProperties_getProperty(MQTTProperties *props, enum MQTTPropertyCodes propid)
    +
    int MQTTProperty_getType(enum MQTTPropertyCodes value)
    int MQTTProperties_add(MQTTProperties *props, const MQTTProperty *prop)
    +
    MQTTPropertyTypes
    Definition: MQTTProperties.h:64
    +
    @ MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER
    Definition: MQTTProperties.h:68
    +
    @ MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR
    Definition: MQTTProperties.h:71
    +
    @ MQTTPROPERTY_TYPE_BINARY_DATA
    Definition: MQTTProperties.h:69
    +
    @ MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER
    Definition: MQTTProperties.h:67
    +
    @ MQTTPROPERTY_TYPE_BYTE
    Definition: MQTTProperties.h:65
    +
    @ MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING
    Definition: MQTTProperties.h:70
    +
    @ MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER
    Definition: MQTTProperties.h:66
    +
    void MQTTProperties_free(MQTTProperties *properties)
    +
    int MQTTProperties_len(MQTTProperties *props)
    +
    int MQTTProperties_getNumericValueAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index)
    +
    MQTTProperty * MQTTProperties_getPropertyAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index)
    +
    int MQTTProperties_write(char **pptr, const MQTTProperties *properties)
    +
    MQTTPropertyCodes
    Definition: MQTTProperties.h:25
    +
    @ MQTTPROPERTY_CODE_SERVER_REFERENCE
    Definition: MQTTProperties.h:41
    +
    @ MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM
    Definition: MQTTProperties.h:44
    +
    @ MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL
    Definition: MQTTProperties.h:32
    +
    @ MQTTPROPERTY_CODE_RESPONSE_INFORMATION
    Definition: MQTTProperties.h:40
    +
    @ MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL
    Definition: MQTTProperties.h:27
    +
    @ MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION
    Definition: MQTTProperties.h:37
    +
    @ MQTTPROPERTY_CODE_REASON_STRING
    Definition: MQTTProperties.h:42
    +
    @ MQTTPROPERTY_CODE_CONTENT_TYPE
    Definition: MQTTProperties.h:28
    +
    @ MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION
    Definition: MQTTProperties.h:39
    +
    @ MQTTPROPERTY_CODE_RETAIN_AVAILABLE
    Definition: MQTTProperties.h:47
    +
    @ MQTTPROPERTY_CODE_MAXIMUM_QOS
    Definition: MQTTProperties.h:46
    +
    @ MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL
    Definition: MQTTProperties.h:38
    +
    @ MQTTPROPERTY_CODE_USER_PROPERTY
    Definition: MQTTProperties.h:48
    @ MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE
    Definition: MQTTProperties.h:49
    +
    @ MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER
    Definition: MQTTProperties.h:31
    +
    @ MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER
    Definition: MQTTProperties.h:33
    +
    @ MQTTPROPERTY_CODE_AUTHENTICATION_METHOD
    Definition: MQTTProperties.h:35
    +
    @ MQTTPROPERTY_CODE_RESPONSE_TOPIC
    Definition: MQTTProperties.h:29
    +
    @ MQTTPROPERTY_CODE_CORRELATION_DATA
    Definition: MQTTProperties.h:30
    +
    @ MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE
    Definition: MQTTProperties.h:51
    +
    @ MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE
    Definition: MQTTProperties.h:34
    +
    @ MQTTPROPERTY_CODE_RECEIVE_MAXIMUM
    Definition: MQTTProperties.h:43
    +
    @ MQTTPROPERTY_CODE_AUTHENTICATION_DATA
    Definition: MQTTProperties.h:36
    +
    @ MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE
    Definition: MQTTProperties.h:50
    +
    @ MQTTPROPERTY_CODE_TOPIC_ALIAS
    Definition: MQTTProperties.h:45
    +
    @ MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE
    Definition: MQTTProperties.h:52
    +
    @ MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR
    Definition: MQTTProperties.h:26
    +
    const char * MQTTPropertyName(enum MQTTPropertyCodes value)
    +
    int MQTTProperties_getNumericValue(MQTTProperties *props, enum MQTTPropertyCodes propid)
    +
    int MQTTProperties_read(MQTTProperties *properties, char **pptr, char *enddata)
    +
    Definition: MQTTProperties.h:85
    +
    char * data
    Definition: MQTTProperties.h:87
    +
    int len
    Definition: MQTTProperties.h:86
    +
    Definition: MQTTProperties.h:113
    +
    MQTTProperty * array
    Definition: MQTTProperties.h:117
    +
    int max_count
    Definition: MQTTProperties.h:115
    +
    int length
    Definition: MQTTProperties.h:116
    +
    int count
    Definition: MQTTProperties.h:114
    +
    Definition: MQTTProperties.h:95
    +
    unsigned short integer2
    Definition: MQTTProperties.h:100
    +
    MQTTLenString value
    Definition: MQTTProperties.h:104
    +
    unsigned char byte
    Definition: MQTTProperties.h:99
    +
    unsigned int integer4
    Definition: MQTTProperties.h:101
    +
    MQTTLenString data
    Definition: MQTTProperties.h:103
    + diff --git a/docs/MQTTClient/html/_m_q_t_t_reason_codes_8h.html b/docs/MQTTClient/html/_m_q_t_t_reason_codes_8h.html index d576b9a0..f6b6376f 100644 --- a/docs/MQTTClient/html/_m_q_t_t_reason_codes_8h.html +++ b/docs/MQTTClient/html/_m_q_t_t_reason_codes_8h.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTReasonCodes.h File Reference @@ -30,10 +30,10 @@ - + @@ -76,61 +76,61 @@ $(function() {

    Enumerations

    enum  MQTTReasonCodes {
    -  MQTTREASONCODE_SUCCESS = 0, -MQTTREASONCODE_NORMAL_DISCONNECTION = 0, -MQTTREASONCODE_GRANTED_QOS_0 = 0, -MQTTREASONCODE_GRANTED_QOS_1 = 1, -
    -  MQTTREASONCODE_GRANTED_QOS_2 = 2, -MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE = 4, -MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS = 16, -MQTTREASONCODE_NO_SUBSCRIPTION_FOUND = 17, -
    -  MQTTREASONCODE_CONTINUE_AUTHENTICATION = 24, -MQTTREASONCODE_RE_AUTHENTICATE = 25, -MQTTREASONCODE_UNSPECIFIED_ERROR = 128, -MQTTREASONCODE_MALFORMED_PACKET = 129, -
    -  MQTTREASONCODE_PROTOCOL_ERROR = 130, -MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR = 131, -MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION = 132, -MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID = 133, -
    -  MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD = 134, -MQTTREASONCODE_NOT_AUTHORIZED = 135, -MQTTREASONCODE_SERVER_UNAVAILABLE = 136, -MQTTREASONCODE_SERVER_BUSY = 137, -
    -  MQTTREASONCODE_BANNED = 138, -MQTTREASONCODE_SERVER_SHUTTING_DOWN = 139, -MQTTREASONCODE_BAD_AUTHENTICATION_METHOD = 140, -MQTTREASONCODE_KEEP_ALIVE_TIMEOUT = 141, -
    -  MQTTREASONCODE_SESSION_TAKEN_OVER = 142, -MQTTREASONCODE_TOPIC_FILTER_INVALID = 143, -MQTTREASONCODE_TOPIC_NAME_INVALID = 144, -MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE = 145, -
    -  MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND = 146, -MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED = 147, -MQTTREASONCODE_TOPIC_ALIAS_INVALID = 148, -MQTTREASONCODE_PACKET_TOO_LARGE = 149, -
    -  MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH = 150, -MQTTREASONCODE_QUOTA_EXCEEDED = 151, -MQTTREASONCODE_ADMINISTRATIVE_ACTION = 152, -MQTTREASONCODE_PAYLOAD_FORMAT_INVALID = 153, -
    -  MQTTREASONCODE_RETAIN_NOT_SUPPORTED = 154, -MQTTREASONCODE_QOS_NOT_SUPPORTED = 155, -MQTTREASONCODE_USE_ANOTHER_SERVER = 156, -MQTTREASONCODE_SERVER_MOVED = 157, -
    -  MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED = 158, -MQTTREASONCODE_CONNECTION_RATE_EXCEEDED = 159, -MQTTREASONCODE_MAXIMUM_CONNECT_TIME = 160, -MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED = 161, -
    +  MQTTREASONCODE_SUCCESS = 0 +, MQTTREASONCODE_NORMAL_DISCONNECTION = 0 +, MQTTREASONCODE_GRANTED_QOS_0 = 0 +, MQTTREASONCODE_GRANTED_QOS_1 = 1 +,
    +  MQTTREASONCODE_GRANTED_QOS_2 = 2 +, MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE = 4 +, MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS = 16 +, MQTTREASONCODE_NO_SUBSCRIPTION_FOUND = 17 +,
    +  MQTTREASONCODE_CONTINUE_AUTHENTICATION = 24 +, MQTTREASONCODE_RE_AUTHENTICATE = 25 +, MQTTREASONCODE_UNSPECIFIED_ERROR = 128 +, MQTTREASONCODE_MALFORMED_PACKET = 129 +,
    +  MQTTREASONCODE_PROTOCOL_ERROR = 130 +, MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR = 131 +, MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION = 132 +, MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID = 133 +,
    +  MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD = 134 +, MQTTREASONCODE_NOT_AUTHORIZED = 135 +, MQTTREASONCODE_SERVER_UNAVAILABLE = 136 +, MQTTREASONCODE_SERVER_BUSY = 137 +,
    +  MQTTREASONCODE_BANNED = 138 +, MQTTREASONCODE_SERVER_SHUTTING_DOWN = 139 +, MQTTREASONCODE_BAD_AUTHENTICATION_METHOD = 140 +, MQTTREASONCODE_KEEP_ALIVE_TIMEOUT = 141 +,
    +  MQTTREASONCODE_SESSION_TAKEN_OVER = 142 +, MQTTREASONCODE_TOPIC_FILTER_INVALID = 143 +, MQTTREASONCODE_TOPIC_NAME_INVALID = 144 +, MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE = 145 +,
    +  MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND = 146 +, MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED = 147 +, MQTTREASONCODE_TOPIC_ALIAS_INVALID = 148 +, MQTTREASONCODE_PACKET_TOO_LARGE = 149 +,
    +  MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH = 150 +, MQTTREASONCODE_QUOTA_EXCEEDED = 151 +, MQTTREASONCODE_ADMINISTRATIVE_ACTION = 152 +, MQTTREASONCODE_PAYLOAD_FORMAT_INVALID = 153 +,
    +  MQTTREASONCODE_RETAIN_NOT_SUPPORTED = 154 +, MQTTREASONCODE_QOS_NOT_SUPPORTED = 155 +, MQTTREASONCODE_USE_ANOTHER_SERVER = 156 +, MQTTREASONCODE_SERVER_MOVED = 157 +,
    +  MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED = 158 +, MQTTREASONCODE_CONNECTION_RATE_EXCEEDED = 159 +, MQTTREASONCODE_MAXIMUM_CONNECT_TIME = 160 +, MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED = 161 +,
      MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED = 162
    } @@ -233,9 +233,7 @@ Functions diff --git a/docs/MQTTClient/html/_m_q_t_t_reason_codes_8h_source.html b/docs/MQTTClient/html/_m_q_t_t_reason_codes_8h_source.html index d455fd10..71c9662f 100644 --- a/docs/MQTTClient/html/_m_q_t_t_reason_codes_8h_source.html +++ b/docs/MQTTClient/html/_m_q_t_t_reason_codes_8h_source.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTReasonCodes.h Source File @@ -30,10 +30,10 @@ - + @@ -88,109 +88,107 @@ $(function() {
    20 #include "MQTTExportDeclarations.h"
    21 
    23 enum MQTTReasonCodes {
    -
    24  MQTTREASONCODE_SUCCESS = 0,
    -
    25  MQTTREASONCODE_NORMAL_DISCONNECTION = 0,
    -
    26  MQTTREASONCODE_GRANTED_QOS_0 = 0,
    -
    27  MQTTREASONCODE_GRANTED_QOS_1 = 1,
    -
    28  MQTTREASONCODE_GRANTED_QOS_2 = 2,
    -
    29  MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE = 4,
    -
    30  MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS = 16,
    -
    31  MQTTREASONCODE_NO_SUBSCRIPTION_FOUND = 17,
    -
    32  MQTTREASONCODE_CONTINUE_AUTHENTICATION = 24,
    -
    33  MQTTREASONCODE_RE_AUTHENTICATE = 25,
    -
    34  MQTTREASONCODE_UNSPECIFIED_ERROR = 128,
    -
    35  MQTTREASONCODE_MALFORMED_PACKET = 129,
    -
    36  MQTTREASONCODE_PROTOCOL_ERROR = 130,
    -
    37  MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR = 131,
    -
    38  MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION = 132,
    -
    39  MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID = 133,
    -
    40  MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD = 134,
    -
    41  MQTTREASONCODE_NOT_AUTHORIZED = 135,
    -
    42  MQTTREASONCODE_SERVER_UNAVAILABLE = 136,
    -
    43  MQTTREASONCODE_SERVER_BUSY = 137,
    -
    44  MQTTREASONCODE_BANNED = 138,
    -
    45  MQTTREASONCODE_SERVER_SHUTTING_DOWN = 139,
    -
    46  MQTTREASONCODE_BAD_AUTHENTICATION_METHOD = 140,
    -
    47  MQTTREASONCODE_KEEP_ALIVE_TIMEOUT = 141,
    -
    48  MQTTREASONCODE_SESSION_TAKEN_OVER = 142,
    -
    49  MQTTREASONCODE_TOPIC_FILTER_INVALID = 143,
    -
    50  MQTTREASONCODE_TOPIC_NAME_INVALID = 144,
    -
    51  MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE = 145,
    -
    52  MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND = 146,
    -
    53  MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED = 147,
    -
    54  MQTTREASONCODE_TOPIC_ALIAS_INVALID = 148,
    -
    55  MQTTREASONCODE_PACKET_TOO_LARGE = 149,
    -
    56  MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH = 150,
    -
    57  MQTTREASONCODE_QUOTA_EXCEEDED = 151,
    -
    58  MQTTREASONCODE_ADMINISTRATIVE_ACTION = 152,
    -
    59  MQTTREASONCODE_PAYLOAD_FORMAT_INVALID = 153,
    -
    60  MQTTREASONCODE_RETAIN_NOT_SUPPORTED = 154,
    -
    61  MQTTREASONCODE_QOS_NOT_SUPPORTED = 155,
    -
    62  MQTTREASONCODE_USE_ANOTHER_SERVER = 156,
    -
    63  MQTTREASONCODE_SERVER_MOVED = 157,
    -
    64  MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED = 158,
    -
    65  MQTTREASONCODE_CONNECTION_RATE_EXCEEDED = 159,
    -
    66  MQTTREASONCODE_MAXIMUM_CONNECT_TIME = 160,
    -
    67  MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED = 161,
    -
    68  MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED = 162
    -
    69 };
    -
    70 
    -
    77 LIBMQTT_API const char* MQTTReasonCode_toString(enum MQTTReasonCodes value);
    -
    78 
    -
    79 #endif
    - -
    @ MQTTREASONCODE_PROTOCOL_ERROR
    Definition: MQTTReasonCodes.h:50
    -
    @ MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND
    Definition: MQTTReasonCodes.h:66
    -
    @ MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID
    Definition: MQTTReasonCodes.h:53
    -
    @ MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:78
    -
    @ MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR
    Definition: MQTTReasonCodes.h:51
    -
    @ MQTTREASONCODE_TOPIC_FILTER_INVALID
    Definition: MQTTReasonCodes.h:63
    -
    @ MQTTREASONCODE_MAXIMUM_CONNECT_TIME
    Definition: MQTTReasonCodes.h:80
    -
    @ MQTTREASONCODE_SUCCESS
    Definition: MQTTReasonCodes.h:38
    -
    @ MQTTREASONCODE_ADMINISTRATIVE_ACTION
    Definition: MQTTReasonCodes.h:72
    -
    @ MQTTREASONCODE_NO_SUBSCRIPTION_FOUND
    Definition: MQTTReasonCodes.h:45
    -
    @ MQTTREASONCODE_KEEP_ALIVE_TIMEOUT
    Definition: MQTTReasonCodes.h:61
    -
    @ MQTTREASONCODE_SERVER_BUSY
    Definition: MQTTReasonCodes.h:57
    -
    @ MQTTREASONCODE_SERVER_MOVED
    Definition: MQTTReasonCodes.h:77
    -
    @ MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED
    Definition: MQTTReasonCodes.h:67
    -
    @ MQTTREASONCODE_BANNED
    Definition: MQTTReasonCodes.h:58
    -
    @ MQTTREASONCODE_GRANTED_QOS_2
    Definition: MQTTReasonCodes.h:42
    -
    @ MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE
    Definition: MQTTReasonCodes.h:65
    -
    @ MQTTREASONCODE_TOPIC_NAME_INVALID
    Definition: MQTTReasonCodes.h:64
    -
    @ MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION
    Definition: MQTTReasonCodes.h:52
    -
    @ MQTTREASONCODE_GRANTED_QOS_1
    Definition: MQTTReasonCodes.h:41
    -
    @ MQTTREASONCODE_CONTINUE_AUTHENTICATION
    Definition: MQTTReasonCodes.h:46
    -
    @ MQTTREASONCODE_CONNECTION_RATE_EXCEEDED
    Definition: MQTTReasonCodes.h:79
    -
    @ MQTTREASONCODE_NORMAL_DISCONNECTION
    Definition: MQTTReasonCodes.h:39
    -
    @ MQTTREASONCODE_GRANTED_QOS_0
    Definition: MQTTReasonCodes.h:40
    -
    @ MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD
    Definition: MQTTReasonCodes.h:54
    -
    @ MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE
    Definition: MQTTReasonCodes.h:43
    -
    @ MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:82
    -
    @ MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS
    Definition: MQTTReasonCodes.h:44
    -
    @ MQTTREASONCODE_MALFORMED_PACKET
    Definition: MQTTReasonCodes.h:49
    -
    @ MQTTREASONCODE_SERVER_SHUTTING_DOWN
    Definition: MQTTReasonCodes.h:59
    -
    @ MQTTREASONCODE_TOPIC_ALIAS_INVALID
    Definition: MQTTReasonCodes.h:68
    -
    @ MQTTREASONCODE_RETAIN_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:74
    -
    @ MQTTREASONCODE_UNSPECIFIED_ERROR
    Definition: MQTTReasonCodes.h:48
    -
    @ MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH
    Definition: MQTTReasonCodes.h:70
    -
    @ MQTTREASONCODE_PAYLOAD_FORMAT_INVALID
    Definition: MQTTReasonCodes.h:73
    -
    @ MQTTREASONCODE_QUOTA_EXCEEDED
    Definition: MQTTReasonCodes.h:71
    -
    @ MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:81
    +
    24  MQTTREASONCODE_SUCCESS = 0,
    +
    25  MQTTREASONCODE_NORMAL_DISCONNECTION = 0,
    +
    26  MQTTREASONCODE_GRANTED_QOS_0 = 0,
    +
    27  MQTTREASONCODE_GRANTED_QOS_1 = 1,
    +
    28  MQTTREASONCODE_GRANTED_QOS_2 = 2,
    +
    29  MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE = 4,
    +
    30  MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS = 16,
    +
    31  MQTTREASONCODE_NO_SUBSCRIPTION_FOUND = 17,
    +
    32  MQTTREASONCODE_CONTINUE_AUTHENTICATION = 24,
    +
    33  MQTTREASONCODE_RE_AUTHENTICATE = 25,
    +
    34  MQTTREASONCODE_UNSPECIFIED_ERROR = 128,
    +
    35  MQTTREASONCODE_MALFORMED_PACKET = 129,
    +
    36  MQTTREASONCODE_PROTOCOL_ERROR = 130,
    +
    37  MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR = 131,
    +
    38  MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION = 132,
    +
    39  MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID = 133,
    +
    40  MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD = 134,
    +
    41  MQTTREASONCODE_NOT_AUTHORIZED = 135,
    +
    42  MQTTREASONCODE_SERVER_UNAVAILABLE = 136,
    +
    43  MQTTREASONCODE_SERVER_BUSY = 137,
    +
    44  MQTTREASONCODE_BANNED = 138,
    +
    45  MQTTREASONCODE_SERVER_SHUTTING_DOWN = 139,
    +
    46  MQTTREASONCODE_BAD_AUTHENTICATION_METHOD = 140,
    +
    47  MQTTREASONCODE_KEEP_ALIVE_TIMEOUT = 141,
    +
    48  MQTTREASONCODE_SESSION_TAKEN_OVER = 142,
    +
    49  MQTTREASONCODE_TOPIC_FILTER_INVALID = 143,
    +
    50  MQTTREASONCODE_TOPIC_NAME_INVALID = 144,
    +
    51  MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE = 145,
    +
    52  MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND = 146,
    +
    53  MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED = 147,
    +
    54  MQTTREASONCODE_TOPIC_ALIAS_INVALID = 148,
    +
    55  MQTTREASONCODE_PACKET_TOO_LARGE = 149,
    +
    56  MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH = 150,
    +
    57  MQTTREASONCODE_QUOTA_EXCEEDED = 151,
    +
    58  MQTTREASONCODE_ADMINISTRATIVE_ACTION = 152,
    +
    59  MQTTREASONCODE_PAYLOAD_FORMAT_INVALID = 153,
    +
    60  MQTTREASONCODE_RETAIN_NOT_SUPPORTED = 154,
    +
    61  MQTTREASONCODE_QOS_NOT_SUPPORTED = 155,
    +
    62  MQTTREASONCODE_USE_ANOTHER_SERVER = 156,
    +
    63  MQTTREASONCODE_SERVER_MOVED = 157,
    +
    64  MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED = 158,
    +
    65  MQTTREASONCODE_CONNECTION_RATE_EXCEEDED = 159,
    +
    66  MQTTREASONCODE_MAXIMUM_CONNECT_TIME = 160,
    +
    67  MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED = 161,
    +
    68  MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED = 162
    +
    69 };
    +
    70 
    +
    77 LIBMQTT_API const char* MQTTReasonCode_toString(enum MQTTReasonCodes value);
    +
    78 
    +
    79 #endif
    const char * MQTTReasonCode_toString(enum MQTTReasonCodes value)
    -
    @ MQTTREASONCODE_RE_AUTHENTICATE
    Definition: MQTTReasonCodes.h:47
    -
    @ MQTTREASONCODE_NOT_AUTHORIZED
    Definition: MQTTReasonCodes.h:55
    -
    @ MQTTREASONCODE_SERVER_UNAVAILABLE
    Definition: MQTTReasonCodes.h:56
    -
    @ MQTTREASONCODE_USE_ANOTHER_SERVER
    Definition: MQTTReasonCodes.h:76
    MQTTReasonCodes
    Definition: MQTTReasonCodes.h:23
    -
    @ MQTTREASONCODE_SESSION_TAKEN_OVER
    Definition: MQTTReasonCodes.h:62
    -
    @ MQTTREASONCODE_PACKET_TOO_LARGE
    Definition: MQTTReasonCodes.h:69
    -
    @ MQTTREASONCODE_BAD_AUTHENTICATION_METHOD
    Definition: MQTTReasonCodes.h:60
    -
    @ MQTTREASONCODE_QOS_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:75
    +
    @ MQTTREASONCODE_TOPIC_FILTER_INVALID
    Definition: MQTTReasonCodes.h:49
    +
    @ MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION
    Definition: MQTTReasonCodes.h:38
    +
    @ MQTTREASONCODE_GRANTED_QOS_1
    Definition: MQTTReasonCodes.h:27
    +
    @ MQTTREASONCODE_SERVER_SHUTTING_DOWN
    Definition: MQTTReasonCodes.h:45
    +
    @ MQTTREASONCODE_CONTINUE_AUTHENTICATION
    Definition: MQTTReasonCodes.h:32
    +
    @ MQTTREASONCODE_SERVER_UNAVAILABLE
    Definition: MQTTReasonCodes.h:42
    +
    @ MQTTREASONCODE_PACKET_TOO_LARGE
    Definition: MQTTReasonCodes.h:55
    +
    @ MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS
    Definition: MQTTReasonCodes.h:30
    +
    @ MQTTREASONCODE_UNSPECIFIED_ERROR
    Definition: MQTTReasonCodes.h:34
    +
    @ MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:64
    +
    @ MQTTREASONCODE_MALFORMED_PACKET
    Definition: MQTTReasonCodes.h:35
    +
    @ MQTTREASONCODE_PAYLOAD_FORMAT_INVALID
    Definition: MQTTReasonCodes.h:59
    +
    @ MQTTREASONCODE_NORMAL_DISCONNECTION
    Definition: MQTTReasonCodes.h:25
    +
    @ MQTTREASONCODE_GRANTED_QOS_0
    Definition: MQTTReasonCodes.h:26
    +
    @ MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR
    Definition: MQTTReasonCodes.h:37
    +
    @ MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED
    Definition: MQTTReasonCodes.h:53
    +
    @ MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND
    Definition: MQTTReasonCodes.h:52
    +
    @ MQTTREASONCODE_NO_SUBSCRIPTION_FOUND
    Definition: MQTTReasonCodes.h:31
    +
    @ MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE
    Definition: MQTTReasonCodes.h:29
    +
    @ MQTTREASONCODE_TOPIC_NAME_INVALID
    Definition: MQTTReasonCodes.h:50
    +
    @ MQTTREASONCODE_SUCCESS
    Definition: MQTTReasonCodes.h:24
    +
    @ MQTTREASONCODE_RE_AUTHENTICATE
    Definition: MQTTReasonCodes.h:33
    +
    @ MQTTREASONCODE_MAXIMUM_CONNECT_TIME
    Definition: MQTTReasonCodes.h:66
    +
    @ MQTTREASONCODE_GRANTED_QOS_2
    Definition: MQTTReasonCodes.h:28
    +
    @ MQTTREASONCODE_SERVER_MOVED
    Definition: MQTTReasonCodes.h:63
    +
    @ MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:67
    +
    @ MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:68
    +
    @ MQTTREASONCODE_QOS_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:61
    +
    @ MQTTREASONCODE_CONNECTION_RATE_EXCEEDED
    Definition: MQTTReasonCodes.h:65
    +
    @ MQTTREASONCODE_TOPIC_ALIAS_INVALID
    Definition: MQTTReasonCodes.h:54
    +
    @ MQTTREASONCODE_NOT_AUTHORIZED
    Definition: MQTTReasonCodes.h:41
    +
    @ MQTTREASONCODE_QUOTA_EXCEEDED
    Definition: MQTTReasonCodes.h:57
    +
    @ MQTTREASONCODE_RETAIN_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:60
    +
    @ MQTTREASONCODE_USE_ANOTHER_SERVER
    Definition: MQTTReasonCodes.h:62
    +
    @ MQTTREASONCODE_BANNED
    Definition: MQTTReasonCodes.h:44
    +
    @ MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID
    Definition: MQTTReasonCodes.h:39
    +
    @ MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD
    Definition: MQTTReasonCodes.h:40
    +
    @ MQTTREASONCODE_SESSION_TAKEN_OVER
    Definition: MQTTReasonCodes.h:48
    +
    @ MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE
    Definition: MQTTReasonCodes.h:51
    +
    @ MQTTREASONCODE_PROTOCOL_ERROR
    Definition: MQTTReasonCodes.h:36
    +
    @ MQTTREASONCODE_ADMINISTRATIVE_ACTION
    Definition: MQTTReasonCodes.h:58
    +
    @ MQTTREASONCODE_KEEP_ALIVE_TIMEOUT
    Definition: MQTTReasonCodes.h:47
    +
    @ MQTTREASONCODE_SERVER_BUSY
    Definition: MQTTReasonCodes.h:43
    +
    @ MQTTREASONCODE_BAD_AUTHENTICATION_METHOD
    Definition: MQTTReasonCodes.h:46
    +
    @ MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH
    Definition: MQTTReasonCodes.h:56
    + diff --git a/docs/MQTTClient/html/_m_q_t_t_subscribe_opts_8h.html b/docs/MQTTClient/html/_m_q_t_t_subscribe_opts_8h.html index 1e63455f..4a2247f4 100644 --- a/docs/MQTTClient/html/_m_q_t_t_subscribe_opts_8h.html +++ b/docs/MQTTClient/html/_m_q_t_t_subscribe_opts_8h.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTSubscribeOpts.h File Reference @@ -30,10 +30,10 @@ - + @@ -122,9 +122,7 @@ Typedefs diff --git a/docs/MQTTClient/html/_m_q_t_t_subscribe_opts_8h_source.html b/docs/MQTTClient/html/_m_q_t_t_subscribe_opts_8h_source.html index e6e19be4..9095f1d3 100644 --- a/docs/MQTTClient/html/_m_q_t_t_subscribe_opts_8h_source.html +++ b/docs/MQTTClient/html/_m_q_t_t_subscribe_opts_8h_source.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTSubscribeOpts.h Source File @@ -30,10 +30,10 @@ - + @@ -87,29 +87,27 @@ $(function() {
    19 
    21 typedef struct MQTTSubscribe_options
    22 {
    -
    24  char struct_id[4];
    -
    27  int struct_version;
    -
    31  unsigned char noLocal;
    -
    36  unsigned char retainAsPublished;
    -
    41  unsigned char retainHandling;
    -
    42 } MQTTSubscribe_options;
    +
    24  char struct_id[4];
    +
    27  int struct_version;
    +
    31  unsigned char noLocal;
    +
    36  unsigned char retainAsPublished;
    +
    41  unsigned char retainHandling;
    +
    42 } MQTTSubscribe_options;
    43 
    44 #define MQTTSubscribe_options_initializer { {'M', 'Q', 'S', 'O'}, 0, 0, 0, 0 }
    -
    45 
    +
    45 
    46 #endif
    - -
    int struct_version
    Definition: MQTTSubscribeOpts.h:41
    struct MQTTSubscribe_options MQTTSubscribe_options
    -
    unsigned char noLocal
    Definition: MQTTSubscribeOpts.h:45
    -
    unsigned char retainHandling
    Definition: MQTTSubscribeOpts.h:55
    -
    Definition: MQTTSubscribeOpts.h:21
    -
    unsigned char retainAsPublished
    Definition: MQTTSubscribeOpts.h:50
    -
    char struct_id[4]
    Definition: MQTTSubscribeOpts.h:38
    +
    Definition: MQTTSubscribeOpts.h:22
    +
    int struct_version
    Definition: MQTTSubscribeOpts.h:27
    +
    unsigned char retainHandling
    Definition: MQTTSubscribeOpts.h:41
    +
    unsigned char retainAsPublished
    Definition: MQTTSubscribeOpts.h:36
    +
    char struct_id[4]
    Definition: MQTTSubscribeOpts.h:24
    +
    unsigned char noLocal
    Definition: MQTTSubscribeOpts.h:31
    + diff --git a/docs/MQTTClient/html/annotated.html b/docs/MQTTClient/html/annotated.html index 6add1b51..d3c4325a 100644 --- a/docs/MQTTClient/html/annotated.html +++ b/docs/MQTTClient/html/annotated.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Data Structures @@ -30,10 +30,10 @@ - + @@ -86,9 +86,7 @@ $(function() { diff --git a/docs/MQTTClient/html/async.html b/docs/MQTTClient/html/async.html index 78eed029..e4f67166 100644 --- a/docs/MQTTClient/html/async.html +++ b/docs/MQTTClient/html/async.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Asynchronous vs synchronous client applications @@ -30,10 +30,10 @@ - + @@ -73,9 +73,7 @@ $(function() { diff --git a/docs/MQTTClient/html/callbacks.html b/docs/MQTTClient/html/callbacks.html index cd5b403e..453f831e 100644 --- a/docs/MQTTClient/html/callbacks.html +++ b/docs/MQTTClient/html/callbacks.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Callbacks @@ -30,10 +30,10 @@ - + @@ -74,9 +74,7 @@ $(function() { diff --git a/docs/MQTTClient/html/classes.html b/docs/MQTTClient/html/classes.html index 8443dae1..62caefae 100644 --- a/docs/MQTTClient/html/classes.html +++ b/docs/MQTTClient/html/classes.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Data Structure Index @@ -30,10 +30,10 @@ - + @@ -66,35 +66,16 @@ $(function() {
    Data Structure Index
    - - - - - - - - - - - - - - - - - - - - -
      m  
    -
    MQTTClient_createOptions   MQTTClient_nameValue   MQTTClient_willOptions   MQTTProperty   
    MQTTClient_init_options   MQTTClient_persistence   MQTTLenString   MQTTResponse   
    MQTTClient_connectOptions   MQTTClient_message   MQTTClient_SSLOptions   MQTTProperties   MQTTSubscribe_options   
    - + +
    diff --git a/docs/MQTTClient/html/doxygen.css b/docs/MQTTClient/html/doxygen.css index 73ecbb2c..ffbff022 100644 --- a/docs/MQTTClient/html/doxygen.css +++ b/docs/MQTTClient/html/doxygen.css @@ -1,4 +1,4 @@ -/* The standard CSS for doxygen 1.8.17 */ +/* The standard CSS for doxygen 1.9.1 */ body, table, div, p, dl { font: 400 14px/22px Roboto,sans-serif; @@ -66,7 +66,7 @@ p.startli, p.startdd { margin-top: 2px; } -th p.starttd, p.intertd, p.endtd { +th p.starttd, th p.intertd, th p.endtd { font-size: 100%; font-weight: 700; } @@ -103,30 +103,96 @@ caption { } span.legend { - font-size: 70%; - text-align: center; -} - -h3.version { - font-size: 90%; - text-align: center; -} - -div.qindex, div.navtab{ - background-color: #EBEFF6; - border: 1px solid #A3B4D7; + font-size: 70%; text-align: center; } -div.qindex, div.navpath { - width: 100%; - line-height: 140%; +h3.version { + font-size: 90%; + text-align: center; } div.navtab { - margin-right: 15px; + border-right: 1px solid #A3B4D7; + padding-right: 15px; + text-align: right; + line-height: 110%; } +div.navtab table { + border-spacing: 0; +} + +td.navtab { + padding-right: 6px; + padding-left: 6px; +} +td.navtabHL { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL a, td.navtabHL a:visited { + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +a.navtab { + font-weight: bold; +} + +div.qindex{ + text-align: center; + width: 100%; + line-height: 140%; + font-size: 130%; + color: #A0A0A0; +} + +dt.alphachar{ + font-size: 180%; + font-weight: bold; +} + +.alphachar a{ + color: black; +} + +.alphachar a:hover, .alphachar a:visited{ + text-decoration: none; +} + +.classindex dl { + padding: 25px; + column-count:1 +} + +.classindex dd { + display:inline-block; + margin-left: 50px; + width: 90%; + line-height: 1.15em; +} + +.classindex dl.odd { + background-color: #F8F9FC; +} + +@media(min-width: 1120px) { + .classindex dl { + column-count:2 + } +} + +@media(min-width: 1320px) { + .classindex dl { + column-count:3 + } +} + + /* @group Link Styling */ a { @@ -143,17 +209,6 @@ a:hover { text-decoration: underline; } -a.qindex { - font-weight: bold; -} - -a.qindexHL { - font-weight: bold; - background-color: #9CAFD4; - color: #FFFFFF; - border: 1px double #869DCA; -} - .contents a.qindexHL:visited { color: #FFFFFF; } @@ -1358,10 +1413,12 @@ dl.citelist dt { font-weight:bold; margin-right:10px; padding:5px; + text-align:right; + width:52px; } dl.citelist dd { - margin:2px 0; + margin:2px 0 2px 72px; padding:5px 0; } @@ -1424,6 +1481,12 @@ div.toc li.level4 { margin-left: 45px; } +span.emoji { + /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html + * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort; + */ +} + .PageDocRTL-title div.toc li.level1 { margin-left: 0 !important; margin-right: 0; @@ -1661,47 +1724,6 @@ tr.heading h2 { /* @group Markdown */ -/* -table.markdownTable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.markdownTable td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.markdownTableHead tr { -} - -table.markdownTableBodyLeft td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -th.markdownTableHeadLeft th.markdownTableHeadRight th.markdownTableHeadCenter th.markdownTableHeadNone { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -th.markdownTableHeadLeft { - text-align: left -} - -th.markdownTableHeadRight { - text-align: right -} - -th.markdownTableHeadCenter { - text-align: center -} -*/ - table.markdownTable { border-collapse:collapse; margin-top: 4px; diff --git a/docs/MQTTClient/html/doxygen.png b/docs/MQTTClient/html/doxygen.png deleted file mode 100644 index 3ff17d80..00000000 Binary files a/docs/MQTTClient/html/doxygen.png and /dev/null differ diff --git a/docs/MQTTClient/html/doxygen.svg b/docs/MQTTClient/html/doxygen.svg new file mode 100644 index 00000000..d42dad52 --- /dev/null +++ b/docs/MQTTClient/html/doxygen.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/MQTTClient/html/dynsections.js b/docs/MQTTClient/html/dynsections.js index ea0a7b39..3174bd7b 100644 --- a/docs/MQTTClient/html/dynsections.js +++ b/docs/MQTTClient/html/dynsections.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function toggleVisibility(linkObj) { diff --git a/docs/MQTTClient/html/files.html b/docs/MQTTClient/html/files.html index 467f84ce..b0200dc8 100644 --- a/docs/MQTTClient/html/files.html +++ b/docs/MQTTClient/html/files.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: File List @@ -30,10 +30,10 @@ - + @@ -78,9 +78,7 @@ $(function() { diff --git a/docs/MQTTClient/html/functions.html b/docs/MQTTClient/html/functions.html index 367e9a07..4b558a81 100644 --- a/docs/MQTTClient/html/functions.html +++ b/docs/MQTTClient/html/functions.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Data Fields @@ -30,10 +30,10 @@ - + @@ -321,13 +321,13 @@ $(function() { : MQTTClient_connectOptions
  • ssl_error_cb -: MQTTClient_SSLOptions +: MQTTClient_SSLOptions
  • ssl_error_context : MQTTClient_SSLOptions
  • ssl_psk_cb -: MQTTClient_SSLOptions +: MQTTClient_SSLOptions
  • ssl_psk_context : MQTTClient_SSLOptions @@ -395,9 +395,7 @@ $(function() { diff --git a/docs/MQTTClient/html/functions_vars.html b/docs/MQTTClient/html/functions_vars.html index 20fbeaa4..891b6e6b 100644 --- a/docs/MQTTClient/html/functions_vars.html +++ b/docs/MQTTClient/html/functions_vars.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -321,13 +321,13 @@ $(function() { : MQTTClient_connectOptions
  • ssl_error_cb -: MQTTClient_SSLOptions +: MQTTClient_SSLOptions
  • ssl_error_context : MQTTClient_SSLOptions
  • ssl_psk_cb -: MQTTClient_SSLOptions +: MQTTClient_SSLOptions
  • ssl_psk_context : MQTTClient_SSLOptions @@ -395,9 +395,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals.html b/docs/MQTTClient/html/globals.html index 7923379f..b735d075 100644 --- a/docs/MQTTClient/html/globals.html +++ b/docs/MQTTClient/html/globals.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -152,12 +152,12 @@ $(function() {
  • MQTTClient_disconnect5() : MQTTClient.h
  • -
  • MQTTCLIENT_DISCONNECTED -: MQTTClient.h -
  • MQTTClient_disconnected : MQTTClient.h
  • +
  • MQTTCLIENT_DISCONNECTED +: MQTTClient.h +
  • MQTTCLIENT_FAILURE : MQTTClient.h
  • @@ -182,6 +182,9 @@ $(function() {
  • MQTTClient_isConnected() : MQTTClient.h
  • +
  • MQTTClient_malloc() +: MQTTClient.h +
  • MQTTCLIENT_MAX_MESSAGES_INFLIGHT : MQTTClient.h
  • @@ -657,9 +660,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_defs.html b/docs/MQTTClient/html/globals_defs.html index 77a593f3..23ba73ac 100644 --- a/docs/MQTTClient/html/globals_defs.html +++ b/docs/MQTTClient/html/globals_defs.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -192,9 +192,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_enum.html b/docs/MQTTClient/html/globals_enum.html index b524ad59..b4e83eac 100644 --- a/docs/MQTTClient/html/globals_enum.html +++ b/docs/MQTTClient/html/globals_enum.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -79,9 +79,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_eval.html b/docs/MQTTClient/html/globals_eval.html index 7bac7468..a0e0524a 100644 --- a/docs/MQTTClient/html/globals_eval.html +++ b/docs/MQTTClient/html/globals_eval.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -327,9 +327,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_func.html b/docs/MQTTClient/html/globals_func.html index 10ad14f9..bb880b92 100644 --- a/docs/MQTTClient/html/globals_func.html +++ b/docs/MQTTClient/html/globals_func.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -104,6 +104,9 @@ $(function() {
  • MQTTClient_isConnected() : MQTTClient.h
  • +
  • MQTTClient_malloc() +: MQTTClient.h +
  • MQTTClient_publish() : MQTTClient.h
  • @@ -222,9 +225,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_p.html b/docs/MQTTClient/html/globals_p.html index 0d27b955..0fb746be 100644 --- a/docs/MQTTClient/html/globals_p.html +++ b/docs/MQTTClient/html/globals_p.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -93,9 +93,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_type.html b/docs/MQTTClient/html/globals_type.html index 172b05f7..49783637 100644 --- a/docs/MQTTClient/html/globals_type.html +++ b/docs/MQTTClient/html/globals_type.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Globals @@ -30,10 +30,10 @@ - + @@ -133,9 +133,7 @@ $(function() { diff --git a/docs/MQTTClient/html/index.html b/docs/MQTTClient/html/index.html index 9957ab68..1ca8511d 100644 --- a/docs/MQTTClient/html/index.html +++ b/docs/MQTTClient/html/index.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTT Client library for C (MQTTClient) @@ -30,10 +30,10 @@ - + @@ -66,7 +66,7 @@ $(function() {
    MQTT Client library for C (MQTTClient)
    -

    An MQTT client library in C.© Copyright 2009, 2022 IBM Corp., Ian Craggs and others

    +

    An MQTT client library in C.© Copyright 2009, 2023 IBM Corp., Ian Craggs and others

    These pages describe the original more synchronous API which might be considered easier to use. Some of the calls will block. For the new totally asynchronous API where no calls block, which is especially suitable for use in windowed environments, see the MQTT C Client Asynchronous API Documentation. The MQTTClient API is not thread safe, whereas the MQTTAsync API is.

    An MQTT client application connects to MQTT-capable servers. A typical client is responsible for collecting information from a telemetry device and publishing the information to the server. It can also subscribe to topics, receive messages, and use this information to control the telemetry device.

    MQTT clients implement the published MQTT v3 protocol. You can write your own API to the MQTT protocol using the programming language and platform of your choice. This can be time-consuming and error-prone.

    @@ -118,9 +118,7 @@ Free any memory being used by the client
    diff --git a/docs/MQTTClient/html/menu.js b/docs/MQTTClient/html/menu.js index 433c15b8..2fe2214f 100644 --- a/docs/MQTTClient/html/menu.js +++ b/docs/MQTTClient/html/menu.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { function makeTree(data,relPath) { @@ -40,9 +41,9 @@ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); if (searchEnabled) { if (serverSide) { - $('#main-menu').append('
  • '); + $('#main-menu').append('
  • '); } else { - $('#main-menu').append('
  • '); + $('#main-menu').append('
  • '); } } $('#main-menu').smartmenus(); diff --git a/docs/MQTTClient/html/menudata.js b/docs/MQTTClient/html/menudata.js index 47a66d79..567b37bc 100644 --- a/docs/MQTTClient/html/menudata.js +++ b/docs/MQTTClient/html/menudata.js @@ -1,24 +1,26 @@ /* -@licstart The following is the entire license notice for the -JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. -Copyright (C) 1997-2019 by Dimitri van Heesch + The MIT License (MIT) -This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as published by -the Free Software Foundation + Copyright (C) 1997-2020 by Dimitri van Heesch -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: -You should have received a copy of the GNU General Public License along -with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. -@licend The above is the entire license notice -for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ var menudata={children:[ {text:"Main Page",url:"index.html"}, diff --git a/docs/MQTTClient/html/pages.html b/docs/MQTTClient/html/pages.html index e32868bb..e4d09246 100644 --- a/docs/MQTTClient/html/pages.html +++ b/docs/MQTTClient/html/pages.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Related Pages @@ -30,10 +30,10 @@
    - + @@ -81,9 +81,7 @@ $(function() {
    diff --git a/docs/MQTTClient/html/pubasync.html b/docs/MQTTClient/html/pubasync.html index 3191db1f..92984b74 100644 --- a/docs/MQTTClient/html/pubasync.html +++ b/docs/MQTTClient/html/pubasync.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Asynchronous publication example @@ -30,10 +30,10 @@ - + @@ -177,36 +177,34 @@ $(function() {
    exit:
    return rc;
    }
    +
    MQTTClient.h
    +
    MQTTClient_disconnect
    int MQTTClient_disconnect(MQTTClient handle, int timeout)
    +
    MQTTClient_free
    void MQTTClient_free(void *ptr)
    +
    MQTTClient_deliveryToken
    int MQTTClient_deliveryToken
    Definition: MQTTClient.h:262
    +
    MQTTClient
    void * MQTTClient
    Definition: MQTTClient.h:251
    +
    MQTTClient_create
    int MQTTClient_create(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    +
    MQTTClient_message_initializer
    #define MQTTClient_message_initializer
    Definition: MQTTClient.h:332
    +
    MQTTClient_connect
    int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
    +
    MQTTClient_setCallbacks
    int MQTTClient_setCallbacks(MQTTClient handle, void *context, MQTTClient_connectionLost *cl, MQTTClient_messageArrived *ma, MQTTClient_deliveryComplete *dc)
    +
    MQTTClient_freeMessage
    void MQTTClient_freeMessage(MQTTClient_message **msg)
    +
    MQTTCLIENT_SUCCESS
    #define MQTTCLIENT_SUCCESS
    Definition: MQTTClient.h:132
    +
    MQTTClient_publishMessage
    int MQTTClient_publishMessage(MQTTClient handle, const char *topicName, MQTTClient_message *msg, MQTTClient_deliveryToken *dt)
    +
    MQTTClient_destroy
    void MQTTClient_destroy(MQTTClient *handle)
    +
    MQTTClient_connectOptions_initializer
    #define MQTTClient_connectOptions_initializer
    Definition: MQTTClient.h:982
    +
    MQTTCLIENT_PERSISTENCE_NONE
    #define MQTTCLIENT_PERSISTENCE_NONE
    Definition: MQTTClientPersistence.h:74
    +
    MQTTClient_connectOptions
    Definition: MQTTClient.h:825
    +
    MQTTClient_connectOptions::cleansession
    int cleansession
    Definition: MQTTClient.h:870
    +
    MQTTClient_connectOptions::keepAliveInterval
    int keepAliveInterval
    Definition: MQTTClient.h:848
    +
    MQTTClient_message
    Definition: MQTTClient.h:272
    +
    MQTTClient_message::qos
    int qos
    Definition: MQTTClient.h:295
    +
    MQTTClient_message::retained
    int retained
    Definition: MQTTClient.h:314
    +
    MQTTClient_message::payload
    void * payload
    Definition: MQTTClient.h:281
    +
    MQTTClient_message::payloadlen
    int payloadlen
    Definition: MQTTClient.h:279
    -
    MQTTClient_message::retained
    int retained
    Definition: MQTTClient.h:314
    -
    MQTTClient_message_initializer
    #define MQTTClient_message_initializer
    Definition: MQTTClient.h:332
    -
    MQTTClient_connectOptions::keepAliveInterval
    int keepAliveInterval
    Definition: MQTTClient.h:848
    -
    MQTTClient_message::payloadlen
    int payloadlen
    Definition: MQTTClient.h:279
    -
    MQTTClient_freeMessage
    void MQTTClient_freeMessage(MQTTClient_message **msg)
    -
    MQTTCLIENT_PERSISTENCE_NONE
    #define MQTTCLIENT_PERSISTENCE_NONE
    Definition: MQTTClientPersistence.h:74
    -
    MQTTClient_message
    Definition: MQTTClient.h:271
    -
    MQTTClient_connectOptions_initializer
    #define MQTTClient_connectOptions_initializer
    Definition: MQTTClient.h:982
    -
    MQTTClient_message::qos
    int qos
    Definition: MQTTClient.h:295
    -
    MQTTClient_deliveryToken
    int MQTTClient_deliveryToken
    Definition: MQTTClient.h:262
    -
    MQTTClient_setCallbacks
    int MQTTClient_setCallbacks(MQTTClient handle, void *context, MQTTClient_connectionLost *cl, MQTTClient_messageArrived *ma, MQTTClient_deliveryComplete *dc)
    -
    MQTTClient_message::payload
    void * payload
    Definition: MQTTClient.h:281
    -
    MQTTClient
    void * MQTTClient
    Definition: MQTTClient.h:251
    -
    MQTTCLIENT_SUCCESS
    #define MQTTCLIENT_SUCCESS
    Definition: MQTTClient.h:132
    -
    MQTTClient_destroy
    void MQTTClient_destroy(MQTTClient *handle)
    -
    MQTTClient_connectOptions
    Definition: MQTTClient.h:824
    -
    MQTTClient_publishMessage
    int MQTTClient_publishMessage(MQTTClient handle, const char *topicName, MQTTClient_message *msg, MQTTClient_deliveryToken *dt)
    -
    MQTTClient_connect
    int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
    -
    MQTTClient_disconnect
    int MQTTClient_disconnect(MQTTClient handle, int timeout)
    -
    MQTTClient_connectOptions::cleansession
    int cleansession
    Definition: MQTTClient.h:870
    -
    MQTTClient_free
    void MQTTClient_free(void *ptr)
    -
    MQTTClient.h
    -
    MQTTClient_create
    int MQTTClient_create(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    diff --git a/docs/MQTTClient/html/pubsync.html b/docs/MQTTClient/html/pubsync.html index 0e681c8f..a0118bbe 100644 --- a/docs/MQTTClient/html/pubsync.html +++ b/docs/MQTTClient/html/pubsync.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Synchronous publication example @@ -30,10 +30,10 @@ - + @@ -122,34 +122,32 @@ $(function() {
    MQTTClient_destroy(&client);
    return rc;
    }
    +
    MQTTClient.h
    +
    MQTTClient_disconnect
    int MQTTClient_disconnect(MQTTClient handle, int timeout)
    +
    MQTTClient_deliveryToken
    int MQTTClient_deliveryToken
    Definition: MQTTClient.h:262
    +
    MQTTClient
    void * MQTTClient
    Definition: MQTTClient.h:251
    +
    MQTTClient_waitForCompletion
    int MQTTClient_waitForCompletion(MQTTClient handle, MQTTClient_deliveryToken dt, unsigned long timeout)
    +
    MQTTClient_create
    int MQTTClient_create(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    +
    MQTTClient_message_initializer
    #define MQTTClient_message_initializer
    Definition: MQTTClient.h:332
    +
    MQTTClient_connect
    int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
    +
    MQTTCLIENT_SUCCESS
    #define MQTTCLIENT_SUCCESS
    Definition: MQTTClient.h:132
    +
    MQTTClient_publishMessage
    int MQTTClient_publishMessage(MQTTClient handle, const char *topicName, MQTTClient_message *msg, MQTTClient_deliveryToken *dt)
    +
    MQTTClient_destroy
    void MQTTClient_destroy(MQTTClient *handle)
    +
    MQTTClient_connectOptions_initializer
    #define MQTTClient_connectOptions_initializer
    Definition: MQTTClient.h:982
    +
    MQTTCLIENT_PERSISTENCE_NONE
    #define MQTTCLIENT_PERSISTENCE_NONE
    Definition: MQTTClientPersistence.h:74
    +
    MQTTClient_connectOptions
    Definition: MQTTClient.h:825
    +
    MQTTClient_connectOptions::cleansession
    int cleansession
    Definition: MQTTClient.h:870
    +
    MQTTClient_connectOptions::keepAliveInterval
    int keepAliveInterval
    Definition: MQTTClient.h:848
    +
    MQTTClient_message
    Definition: MQTTClient.h:272
    +
    MQTTClient_message::qos
    int qos
    Definition: MQTTClient.h:295
    +
    MQTTClient_message::retained
    int retained
    Definition: MQTTClient.h:314
    +
    MQTTClient_message::payload
    void * payload
    Definition: MQTTClient.h:281
    +
    MQTTClient_message::payloadlen
    int payloadlen
    Definition: MQTTClient.h:279
    -
    MQTTClient_message::retained
    int retained
    Definition: MQTTClient.h:314
    -
    MQTTClient_message_initializer
    #define MQTTClient_message_initializer
    Definition: MQTTClient.h:332
    -
    MQTTClient_connectOptions::keepAliveInterval
    int keepAliveInterval
    Definition: MQTTClient.h:848
    -
    MQTTClient_message::payloadlen
    int payloadlen
    Definition: MQTTClient.h:279
    -
    MQTTCLIENT_PERSISTENCE_NONE
    #define MQTTCLIENT_PERSISTENCE_NONE
    Definition: MQTTClientPersistence.h:74
    -
    MQTTClient_message
    Definition: MQTTClient.h:271
    -
    MQTTClient_connectOptions_initializer
    #define MQTTClient_connectOptions_initializer
    Definition: MQTTClient.h:982
    -
    MQTTClient_message::qos
    int qos
    Definition: MQTTClient.h:295
    -
    MQTTClient_deliveryToken
    int MQTTClient_deliveryToken
    Definition: MQTTClient.h:262
    -
    MQTTClient_waitForCompletion
    int MQTTClient_waitForCompletion(MQTTClient handle, MQTTClient_deliveryToken dt, unsigned long timeout)
    -
    MQTTClient_message::payload
    void * payload
    Definition: MQTTClient.h:281
    -
    MQTTClient
    void * MQTTClient
    Definition: MQTTClient.h:251
    -
    MQTTCLIENT_SUCCESS
    #define MQTTCLIENT_SUCCESS
    Definition: MQTTClient.h:132
    -
    MQTTClient_destroy
    void MQTTClient_destroy(MQTTClient *handle)
    -
    MQTTClient_connectOptions
    Definition: MQTTClient.h:824
    -
    MQTTClient_publishMessage
    int MQTTClient_publishMessage(MQTTClient handle, const char *topicName, MQTTClient_message *msg, MQTTClient_deliveryToken *dt)
    -
    MQTTClient_connect
    int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
    -
    MQTTClient_disconnect
    int MQTTClient_disconnect(MQTTClient handle, int timeout)
    -
    MQTTClient_connectOptions::cleansession
    int cleansession
    Definition: MQTTClient.h:870
    -
    MQTTClient.h
    -
    MQTTClient_create
    int MQTTClient_create(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    diff --git a/docs/MQTTClient/html/qos.html b/docs/MQTTClient/html/qos.html index b7ff16a7..e1114d53 100644 --- a/docs/MQTTClient/html/qos.html +++ b/docs/MQTTClient/html/qos.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Quality of service @@ -30,10 +30,10 @@ - + @@ -78,9 +78,7 @@ $(function() { diff --git a/docs/MQTTClient/html/search/all_0.html b/docs/MQTTClient/html/search/all_0.html index 26dd244f..1ec5b2d5 100644 --- a/docs/MQTTClient/html/search/all_0.html +++ b/docs/MQTTClient/html/search/all_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_0.js b/docs/MQTTClient/html/search/all_0.js index 2afb1351..dfdd3793 100644 --- a/docs/MQTTClient/html/search/all_0.js +++ b/docs/MQTTClient/html/search/all_0.js @@ -1,7 +1,7 @@ var searchData= [ ['array_0',['array',['../struct_m_q_t_t_properties.html#a3ac4c38b423393c1553dcf8b71e7dd58',1,'MQTTProperties']]], - ['asynchronous_20vs_20synchronous_20client_20applications_1',['Asynchronous vs synchronous client applications',['../async.html',1,'']]], - ['asynchronous_20publication_20example_2',['Asynchronous publication example',['../pubasync.html',1,'']]], - ['asynchronous_20subscription_20example_3',['Asynchronous subscription example',['../subasync.html',1,'']]] + ['asynchronous_20publication_20example_1',['Asynchronous publication example',['../pubasync.html',1,'']]], + ['asynchronous_20subscription_20example_2',['Asynchronous subscription example',['../subasync.html',1,'']]], + ['asynchronous_20vs_20synchronous_20client_20applications_3',['Asynchronous vs synchronous client applications',['../async.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/all_1.html b/docs/MQTTClient/html/search/all_1.html index 8eb215b9..9f80e904 100644 --- a/docs/MQTTClient/html/search/all_1.html +++ b/docs/MQTTClient/html/search/all_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_10.html b/docs/MQTTClient/html/search/all_10.html index 6fd3a4aa..3bf11961 100644 --- a/docs/MQTTClient/html/search/all_10.html +++ b/docs/MQTTClient/html/search/all_10.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_10.js b/docs/MQTTClient/html/search/all_10.js index fef21d57..55987771 100644 --- a/docs/MQTTClient/html/search/all_10.js +++ b/docs/MQTTClient/html/search/all_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['username_298',['username',['../struct_m_q_t_t_client__connect_options.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTClient_connectOptions']]] + ['username_301',['username',['../struct_m_q_t_t_client__connect_options.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTClient_connectOptions']]] ]; diff --git a/docs/MQTTClient/html/search/all_11.html b/docs/MQTTClient/html/search/all_11.html index f78343b9..c9f79d28 100644 --- a/docs/MQTTClient/html/search/all_11.html +++ b/docs/MQTTClient/html/search/all_11.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_11.js b/docs/MQTTClient/html/search/all_11.js index 89073b93..80611c64 100644 --- a/docs/MQTTClient/html/search/all_11.js +++ b/docs/MQTTClient/html/search/all_11.js @@ -1,6 +1,6 @@ var searchData= [ - ['value_299',['value',['../struct_m_q_t_t_client__name_value.html#a8556878012feffc9e0beb86cd78f424d',1,'MQTTClient_nameValue::value()'],['../struct_m_q_t_t_property.html#a09e85ff5ad73824d6c2edc1ce4283a17',1,'MQTTProperty::value()'],['../struct_m_q_t_t_property.html#a51e698f2da26ad8f7c9e3d0b81e188ad',1,'MQTTProperty::value()']]], - ['verify_300',['verify',['../struct_m_q_t_t_client___s_s_l_options.html#a94900629685d5ed08f66fd2931f573ce',1,'MQTTClient_SSLOptions']]], - ['version_301',['version',['../struct_m_q_t_t_response.html#aad880fc4455c253781e8968f2239d56f',1,'MQTTResponse']]] + ['value_302',['value',['../struct_m_q_t_t_client__name_value.html#a8556878012feffc9e0beb86cd78f424d',1,'MQTTClient_nameValue::value()'],['../struct_m_q_t_t_property.html#a09e85ff5ad73824d6c2edc1ce4283a17',1,'MQTTProperty::value()'],['../struct_m_q_t_t_property.html#a51e698f2da26ad8f7c9e3d0b81e188ad',1,'MQTTProperty::value()']]], + ['verify_303',['verify',['../struct_m_q_t_t_client___s_s_l_options.html#a94900629685d5ed08f66fd2931f573ce',1,'MQTTClient_SSLOptions']]], + ['version_304',['version',['../struct_m_q_t_t_response.html#aad880fc4455c253781e8968f2239d56f',1,'MQTTResponse']]] ]; diff --git a/docs/MQTTClient/html/search/all_12.html b/docs/MQTTClient/html/search/all_12.html index dd9ff1d5..ab934722 100644 --- a/docs/MQTTClient/html/search/all_12.html +++ b/docs/MQTTClient/html/search/all_12.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_12.js b/docs/MQTTClient/html/search/all_12.js index 4e5237db..9ec48cef 100644 --- a/docs/MQTTClient/html/search/all_12.js +++ b/docs/MQTTClient/html/search/all_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['will_302',['will',['../struct_m_q_t_t_client__connect_options.html#a0a880e99d47eb2efe552abe5079bdc9d',1,'MQTTClient_connectOptions']]] + ['will_305',['will',['../struct_m_q_t_t_client__connect_options.html#a0a880e99d47eb2efe552abe5079bdc9d',1,'MQTTClient_connectOptions']]] ]; diff --git a/docs/MQTTClient/html/search/all_2.html b/docs/MQTTClient/html/search/all_2.html index b26d9165..02cfffc2 100644 --- a/docs/MQTTClient/html/search/all_2.html +++ b/docs/MQTTClient/html/search/all_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_3.html b/docs/MQTTClient/html/search/all_3.html index b61b96f8..39767b85 100644 --- a/docs/MQTTClient/html/search/all_3.html +++ b/docs/MQTTClient/html/search/all_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_4.html b/docs/MQTTClient/html/search/all_4.html index 06de1550..fc40463c 100644 --- a/docs/MQTTClient/html/search/all_4.html +++ b/docs/MQTTClient/html/search/all_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_5.html b/docs/MQTTClient/html/search/all_5.html index 2544c4e5..9dd9344b 100644 --- a/docs/MQTTClient/html/search/all_5.html +++ b/docs/MQTTClient/html/search/all_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_6.html b/docs/MQTTClient/html/search/all_6.html index 43f14eab..f1e516d7 100644 --- a/docs/MQTTClient/html/search/all_6.html +++ b/docs/MQTTClient/html/search/all_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_7.html b/docs/MQTTClient/html/search/all_7.html index af52f82a..8ddbf6c8 100644 --- a/docs/MQTTClient/html/search/all_7.html +++ b/docs/MQTTClient/html/search/all_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_8.html b/docs/MQTTClient/html/search/all_8.html index cf2b5df9..83c55ae2 100644 --- a/docs/MQTTClient/html/search/all_8.html +++ b/docs/MQTTClient/html/search/all_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_9.html b/docs/MQTTClient/html/search/all_9.html index 690785a5..1e263c13 100644 --- a/docs/MQTTClient/html/search/all_9.html +++ b/docs/MQTTClient/html/search/all_9.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_9.js b/docs/MQTTClient/html/search/all_9.js index b18d19e8..fc713b69 100644 --- a/docs/MQTTClient/html/search/all_9.js +++ b/docs/MQTTClient/html/search/all_9.js @@ -1,9 +1,9 @@ var searchData= [ - ['mqtt_20client_20library_20for_20c_20_28mqttclient_29_29',['MQTT Client library for C (MQTTClient)',['../index.html',1,'']]], - ['max_5fcount_30',['max_count',['../struct_m_q_t_t_properties.html#a8de324382d8fd2f5939bf3372e059383',1,'MQTTProperties']]], - ['maxinflightmessages_31',['maxInflightMessages',['../struct_m_q_t_t_client__connect_options.html#ae3f99bf4663ab7b9e9259feeba41fab2',1,'MQTTClient_connectOptions']]], - ['message_32',['message',['../struct_m_q_t_t_client__will_options.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTClient_willOptions']]], + ['max_5fcount_29',['max_count',['../struct_m_q_t_t_properties.html#a8de324382d8fd2f5939bf3372e059383',1,'MQTTProperties']]], + ['maxinflightmessages_30',['maxInflightMessages',['../struct_m_q_t_t_client__connect_options.html#ae3f99bf4663ab7b9e9259feeba41fab2',1,'MQTTClient_connectOptions']]], + ['message_31',['message',['../struct_m_q_t_t_client__will_options.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTClient_willOptions']]], + ['mqtt_20client_20library_20for_20c_20_28mqttclient_29_32',['MQTT Client library for C (MQTTClient)',['../index.html',1,'']]], ['mqtt_5fbad_5fsubscribe_33',['MQTT_BAD_SUBSCRIBE',['../_m_q_t_t_client_8h.html#ade337b363b7f4bc7c1a7b2858e0380bd',1,'MQTTClient.h']]], ['mqtt_5finvalid_5fproperty_5fid_34',['MQTT_INVALID_PROPERTY_ID',['../_m_q_t_t_properties_8h.html#afc56d2e8937a0c8f180d68ad93945945',1,'MQTTProperties.h']]], ['mqtt_5fssl_5fversion_5fdefault_35',['MQTT_SSL_VERSION_DEFAULT',['../_m_q_t_t_client_8h.html#a2549ea897af26c76198284731db9e721',1,'MQTTClient.h']]], @@ -36,184 +36,186 @@ var searchData= ['mqttclient_5fdestroy_62',['MQTTClient_destroy',['../_m_q_t_t_client_8h.html#ae700c3f5cfea3813264ce95e7c8cf498',1,'MQTTClient.h']]], ['mqttclient_5fdisconnect_63',['MQTTClient_disconnect',['../_m_q_t_t_client_8h.html#a1e4d90c13a3c0705bc4a13bfe64e6525',1,'MQTTClient.h']]], ['mqttclient_5fdisconnect5_64',['MQTTClient_disconnect5',['../_m_q_t_t_client_8h.html#a1762c469715b7f718c4e63a427e6c13c',1,'MQTTClient.h']]], - ['mqttclient_5fdisconnected_65',['MQTTCLIENT_DISCONNECTED',['../_m_q_t_t_client_8h.html#a561d053311cb492cf7226f419ee0d516',1,'MQTTCLIENT_DISCONNECTED(): MQTTClient.h'],['../_m_q_t_t_client_8h.html#a41108d4cccb67a9d6884ebae52211c46',1,'MQTTClient_disconnected(): MQTTClient.h']]], - ['mqttclient_5ffailure_66',['MQTTCLIENT_FAILURE',['../_m_q_t_t_client_8h.html#af33a6d6c0e8a6a747bf39638e0bba36b',1,'MQTTClient.h']]], - ['mqttclient_5ffree_67',['MQTTClient_free',['../_m_q_t_t_client_8h.html#a203b545c999beb6b825ec99b6aea79ab',1,'MQTTClient.h']]], - ['mqttclient_5ffreemessage_68',['MQTTClient_freeMessage',['../_m_q_t_t_client_8h.html#abd8abde4f39d3e689029de27f7a98a65',1,'MQTTClient.h']]], - ['mqttclient_5fgetpendingdeliverytokens_69',['MQTTClient_getPendingDeliveryTokens',['../_m_q_t_t_client_8h.html#a2a617c6b0492c04a4ddea592f5e53604',1,'MQTTClient.h']]], - ['mqttclient_5fgetversioninfo_70',['MQTTClient_getVersionInfo',['../_m_q_t_t_client_8h.html#abe842456c914ce9201d277a972cc085e',1,'MQTTClient.h']]], - ['mqttclient_5fglobal_5finit_71',['MQTTClient_global_init',['../_m_q_t_t_client_8h.html#a21804ede1a506d1d69a472bc30acc8ba',1,'MQTTClient.h']]], - ['mqttclient_5finit_5foptions_72',['MQTTClient_init_options',['../struct_m_q_t_t_client__init__options.html',1,'']]], - ['mqttclient_5finit_5foptions_5finitializer_73',['MQTTClient_init_options_initializer',['../_m_q_t_t_client_8h.html#ac17057c8c22c0717d3adf4e040440f73',1,'MQTTClient.h']]], - ['mqttclient_5fisconnected_74',['MQTTClient_isConnected',['../_m_q_t_t_client_8h.html#a6e8231e8c47f6f67f7ebbb5dcb4c69c0',1,'MQTTClient.h']]], - ['mqttclient_5fmax_5fmessages_5finflight_75',['MQTTCLIENT_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_client_8h.html#a8fc442fc2e9dfb422a163ab1fa02e0cb',1,'MQTTClient.h']]], - ['mqttclient_5fmessage_76',['MQTTClient_message',['../struct_m_q_t_t_client__message.html',1,'']]], - ['mqttclient_5fmessage_5finitializer_77',['MQTTClient_message_initializer',['../_m_q_t_t_client_8h.html#aa1fd995924d3df75959fcf57e87aefac',1,'MQTTClient.h']]], - ['mqttclient_5fmessagearrived_78',['MQTTClient_messageArrived',['../_m_q_t_t_client_8h.html#aa42130dd069e7e949bcab37b6dce64a5',1,'MQTTClient.h']]], - ['mqttclient_5fnamevalue_79',['MQTTClient_nameValue',['../struct_m_q_t_t_client__name_value.html',1,'']]], - ['mqttclient_5fnull_5fparameter_80',['MQTTCLIENT_NULL_PARAMETER',['../_m_q_t_t_client_8h.html#ac3232abd7f86bbba26faea0e2b132c3c',1,'MQTTClient.h']]], - ['mqttclient_5fpersistence_81',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], - ['mqttclient_5fpersistence_5fdefault_82',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5ferror_83',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fnone_84',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fuser_85',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpublish_86',['MQTTClient_publish',['../_m_q_t_t_client_8h.html#afe9c34013c3511b8ef6cd36bf703678d',1,'MQTTClient.h']]], - ['mqttclient_5fpublish5_87',['MQTTClient_publish5',['../_m_q_t_t_client_8h.html#a8148186cc7683a6bb57f621653df51df',1,'MQTTClient.h']]], - ['mqttclient_5fpublished_88',['MQTTClient_published',['../_m_q_t_t_client_8h.html#a6c3f51e50e2c47328eee1b0c920ed103',1,'MQTTClient.h']]], - ['mqttclient_5fpublishmessage_89',['MQTTClient_publishMessage',['../_m_q_t_t_client_8h.html#ace320b8a92c7087d9dd5cf242d50389d',1,'MQTTClient.h']]], - ['mqttclient_5fpublishmessage5_90',['MQTTClient_publishMessage5',['../_m_q_t_t_client_8h.html#a362042ce973c012bad6a1aa3b5984f5d',1,'MQTTClient.h']]], - ['mqttclient_5freceive_91',['MQTTClient_receive',['../_m_q_t_t_client_8h.html#a4c2df88d00a3dadd510a8cb774739366',1,'MQTTClient.h']]], - ['mqttclient_5fsetcallbacks_92',['MQTTClient_setCallbacks',['../_m_q_t_t_client_8h.html#aad27d07782991a4937ebf2f39a021f83',1,'MQTTClient.h']]], - ['mqttclient_5fsetcommandtimeout_93',['MQTTClient_setCommandTimeout',['../_m_q_t_t_client_8h.html#a96067a2fb74d2a61c7e93015629548e0',1,'MQTTClient.h']]], - ['mqttclient_5fsetdisconnected_94',['MQTTClient_setDisconnected',['../_m_q_t_t_client_8h.html#a8adea083a162735d5c7592160088eea0',1,'MQTTClient.h']]], - ['mqttclient_5fsetpublished_95',['MQTTClient_setPublished',['../_m_q_t_t_client_8h.html#a9f13911351a3de6b1ebdabd4cb4116ba',1,'MQTTClient.h']]], - ['mqttclient_5fsettracecallback_96',['MQTTClient_setTraceCallback',['../_m_q_t_t_client_8h.html#a22870f94aa4cb1827626612f1ded7c69',1,'MQTTClient.h']]], - ['mqttclient_5fsettracelevel_97',['MQTTClient_setTraceLevel',['../_m_q_t_t_client_8h.html#a4dfa35d29db54b10b15b8ac2d9a778be',1,'MQTTClient.h']]], - ['mqttclient_5fssl_5fnot_5fsupported_98',['MQTTCLIENT_SSL_NOT_SUPPORTED',['../_m_q_t_t_client_8h.html#a1c67fc83ba1a8f26236aa49b127bdb61',1,'MQTTClient.h']]], - ['mqttclient_5fssloptions_99',['MQTTClient_SSLOptions',['../struct_m_q_t_t_client___s_s_l_options.html',1,'']]], - ['mqttclient_5fssloptions_5finitializer_100',['MQTTClient_SSLOptions_initializer',['../_m_q_t_t_client_8h.html#ab9b2a2c6b52dbb2ac842ad99a9ce6d99',1,'MQTTClient.h']]], - ['mqttclient_5fstrerror_101',['MQTTClient_strerror',['../_m_q_t_t_client_8h.html#a9defda2979f6fedaae64fd85f5c2f617',1,'MQTTClient.h']]], - ['mqttclient_5fsubscribe_102',['MQTTClient_subscribe',['../_m_q_t_t_client_8h.html#a9c1c28258f0d5c6a44ff53a98618f5f3',1,'MQTTClient.h']]], - ['mqttclient_5fsubscribe5_103',['MQTTClient_subscribe5',['../_m_q_t_t_client_8h.html#af35ab7375435f7b6388c5ff4610dad3d',1,'MQTTClient.h']]], - ['mqttclient_5fsubscribemany_104',['MQTTClient_subscribeMany',['../_m_q_t_t_client_8h.html#a92fa1c13f3db8399e042fbdbdfb692b3',1,'MQTTClient.h']]], - ['mqttclient_5fsubscribemany5_105',['MQTTClient_subscribeMany5',['../_m_q_t_t_client_8h.html#a5390c2402f135c12826ffbf6fc261f7c',1,'MQTTClient.h']]], - ['mqttclient_5fsuccess_106',['MQTTCLIENT_SUCCESS',['../_m_q_t_t_client_8h.html#acba095704d79e5a1996389fa26203f73',1,'MQTTClient.h']]], - ['mqttclient_5ftoken_107',['MQTTClient_token',['../_m_q_t_t_client_8h.html#a8b2beb5227708f8127b666f5a7fc41b3',1,'MQTTClient.h']]], - ['mqttclient_5ftopicname_5ftruncated_108',['MQTTCLIENT_TOPICNAME_TRUNCATED',['../_m_q_t_t_client_8h.html#a29afebfce0bdf6cda1e37abc0c4b6690',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5ferror_109',['MQTTCLIENT_TRACE_ERROR',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba6eefffc98c1ba698224ba351f12e6a91',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5ffatal_110',['MQTTCLIENT_TRACE_FATAL',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba35626cc4876d074c4c21f8c4f54fdf38',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5flevels_111',['MQTTCLIENT_TRACE_LEVELS',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09b',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5fmaximum_112',['MQTTCLIENT_TRACE_MAXIMUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba38a4c3c4e2fc99711793ee2815aee40c',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5fmedium_113',['MQTTCLIENT_TRACE_MEDIUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba4bb7e7221b59e9be4515f2182c03ea99',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5fminimum_114',['MQTTCLIENT_TRACE_MINIMUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09bacf029d9a231bd07e5e1a6f3bd0b6004e',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5fprotocol_115',['MQTTCLIENT_TRACE_PROTOCOL',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba29f21f77cf34ab2467520d7738fd8eb1',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5fsevere_116',['MQTTCLIENT_TRACE_SEVERE',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09baf060569bdbb4015cfce028937b4cfa69',1,'MQTTClient.h']]], - ['mqttclient_5ftracecallback_117',['MQTTClient_traceCallback',['../_m_q_t_t_client_8h.html#afa5758290a1162e5135bca97bbfd5774',1,'MQTTClient.h']]], - ['mqttclient_5funsubscribe_118',['MQTTClient_unsubscribe',['../_m_q_t_t_client_8h.html#aa8731be3dbc6a25f41f037f8bbbb054b',1,'MQTTClient.h']]], - ['mqttclient_5funsubscribe5_119',['MQTTClient_unsubscribe5',['../_m_q_t_t_client_8h.html#a58356c13867f18df60fd4c7ec9457c48',1,'MQTTClient.h']]], - ['mqttclient_5funsubscribemany_120',['MQTTClient_unsubscribeMany',['../_m_q_t_t_client_8h.html#a50abbce720d50b9f84b97ff9fa1f546d',1,'MQTTClient.h']]], - ['mqttclient_5funsubscribemany5_121',['MQTTClient_unsubscribeMany5',['../_m_q_t_t_client_8h.html#a46bdb532d2153110ccffb2f0748d1ba5',1,'MQTTClient.h']]], - ['mqttclient_5fwaitforcompletion_122',['MQTTClient_waitForCompletion',['../_m_q_t_t_client_8h.html#a83807ec81fe8c3941e368ab329d43067',1,'MQTTClient.h']]], - ['mqttclient_5fwilloptions_123',['MQTTClient_willOptions',['../struct_m_q_t_t_client__will_options.html',1,'']]], - ['mqttclient_5fwilloptions_5finitializer_124',['MQTTClient_willOptions_initializer',['../_m_q_t_t_client_8h.html#aae0811659c59f5dad0467544f91645eb',1,'MQTTClient.h']]], - ['mqttclient_5fwrong_5fmqtt_5fversion_125',['MQTTCLIENT_WRONG_MQTT_VERSION',['../_m_q_t_t_client_8h.html#ae9070d21de569f999a9575049cdd6da1',1,'MQTTClient.h']]], - ['mqttclient_5fyield_126',['MQTTClient_yield',['../_m_q_t_t_client_8h.html#a8ad3d29864a9ca08202b0832e0f6678e',1,'MQTTClient.h']]], - ['mqttclientpersistence_2eh_127',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], - ['mqttlenstring_128',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], - ['mqttpersistence_5fafterread_129',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], - ['mqttpersistence_5fbeforewrite_130',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], - ['mqttproperties_131',['MQTTProperties',['../struct_m_q_t_t_properties.html',1,'MQTTProperties'],['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties(): MQTTProperties.h']]], - ['mqttproperties_2eh_132',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], - ['mqttproperties_5fadd_133',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], - ['mqttproperties_5fcopy_134',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], - ['mqttproperties_5ffree_135',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalue_136',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalueat_137',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetproperty_138',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetpropertyat_139',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], - ['mqttproperties_5fhasproperty_140',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], - ['mqttproperties_5finitializer_141',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], - ['mqttproperties_5flen_142',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], - ['mqttproperties_5fpropertycount_143',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], - ['mqttproperties_5fread_144',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], - ['mqttproperties_5fwrite_145',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], - ['mqttproperty_146',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], - ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_147',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fdata_148',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fmethod_149',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcontent_5ftype_150',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcorrelation_5fdata_151',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_152',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fqos_153',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_154',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_155',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freason_5fstring_156',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freceive_5fmaximum_157',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_158',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_159',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5finformation_160',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5ftopic_161',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fretain_5favailable_162',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5fkeep_5falive_163',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5freference_164',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_165',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_166',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifier_167',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_168',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_169',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_170',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fuser_5fproperty_171',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_172',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_173',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], - ['mqttproperty_5fgettype_174',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbinary_5fdata_175',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbyte_176',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_177',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_178',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_179',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_180',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_181',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], - ['mqttpropertycodes_182',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], - ['mqttpropertyname_183',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], - ['mqttpropertytypes_184',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], - ['mqttreasoncode_5fadministrative_5faction_185',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fauthentication_5fmethod_186',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_187',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbanned_188',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_189',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fconnection_5frate_5fexceeded_190',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fcontinue_5fauthentication_191',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_192',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f0_193',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f1_194',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f2_195',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fimplementation_5fspecific_5ferror_196',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fkeep_5falive_5ftimeout_197',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmalformed_5fpacket_198',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmaximum_5fconnect_5ftime_199',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_200',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fmatching_5fsubscribers_201',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fsubscription_5ffound_202',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnormal_5fdisconnection_203',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnot_5fauthorized_204',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_205',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_206',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5ftoo_5flarge_207',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpayload_5fformat_5finvalid_208',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fprotocol_5ferror_209',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fqos_5fnot_5fsupported_210',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fquota_5fexceeded_211',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fre_5fauthenticate_212',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_213',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fretain_5fnot_5fsupported_214',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fbusy_215',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fmoved_216',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fshutting_5fdown_217',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5funavailable_218',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsession_5ftaken_5fover_219',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_220',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_221',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsuccess_222',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5falias_5finvalid_223',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5ffilter_5finvalid_224',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5fname_5finvalid_225',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftostring_226',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funspecified_5ferror_227',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funsupported_5fprotocol_5fversion_228',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fuse_5fanother_5fserver_229',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_230',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncodes_231',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]], - ['mqttreasoncodes_2eh_232',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], - ['mqttresponse_233',['MQTTResponse',['../struct_m_q_t_t_response.html',1,'MQTTResponse'],['../_m_q_t_t_client_8h.html#a0d31d490adbe677902b99eca127bee56',1,'MQTTResponse(): MQTTClient.h']]], - ['mqttresponse_5ffree_234',['MQTTResponse_free',['../_m_q_t_t_client_8h.html#a01bd2c5f98ec5c0636a106db33f2b01b',1,'MQTTClient.h']]], - ['mqttresponse_5finitializer_235',['MQTTResponse_initializer',['../_m_q_t_t_client_8h.html#a17f171200136bcfa933eb50ef21531a7',1,'MQTTClient.h']]], - ['mqttsubscribe_5foptions_236',['MQTTSubscribe_options',['../struct_m_q_t_t_subscribe__options.html',1,'MQTTSubscribe_options'],['../_m_q_t_t_subscribe_opts_8h.html#aa68db3eaed272ae1aaea294401079d8a',1,'MQTTSubscribe_options(): MQTTSubscribeOpts.h']]], - ['mqttsubscribe_5foptions_5finitializer_237',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], - ['mqttsubscribeopts_2eh_238',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]], - ['mqttversion_239',['MQTTVersion',['../struct_m_q_t_t_client__create_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTClient_createOptions::MQTTVersion()'],['../struct_m_q_t_t_client__connect_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTClient_connectOptions::MQTTVersion()']]], - ['mqttversion_5f3_5f1_240',['MQTTVERSION_3_1',['../_m_q_t_t_client_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTClient.h']]], - ['mqttversion_5f3_5f1_5f1_241',['MQTTVERSION_3_1_1',['../_m_q_t_t_client_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTClient.h']]], - ['mqttversion_5f5_242',['MQTTVERSION_5',['../_m_q_t_t_client_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTClient.h']]], - ['mqttversion_5fdefault_243',['MQTTVERSION_DEFAULT',['../_m_q_t_t_client_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTClient.h']]], - ['msgid_244',['msgid',['../struct_m_q_t_t_client__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTClient_message']]] + ['mqttclient_5fdisconnected_65',['MQTTCLIENT_DISCONNECTED',['../_m_q_t_t_client_8h.html#a561d053311cb492cf7226f419ee0d516',1,'MQTTClient.h']]], + ['mqttclient_5fdisconnected_66',['MQTTClient_disconnected',['../_m_q_t_t_client_8h.html#a41108d4cccb67a9d6884ebae52211c46',1,'MQTTClient.h']]], + ['mqttclient_5ffailure_67',['MQTTCLIENT_FAILURE',['../_m_q_t_t_client_8h.html#af33a6d6c0e8a6a747bf39638e0bba36b',1,'MQTTClient.h']]], + ['mqttclient_5ffree_68',['MQTTClient_free',['../_m_q_t_t_client_8h.html#a203b545c999beb6b825ec99b6aea79ab',1,'MQTTClient.h']]], + ['mqttclient_5ffreemessage_69',['MQTTClient_freeMessage',['../_m_q_t_t_client_8h.html#abd8abde4f39d3e689029de27f7a98a65',1,'MQTTClient.h']]], + ['mqttclient_5fgetpendingdeliverytokens_70',['MQTTClient_getPendingDeliveryTokens',['../_m_q_t_t_client_8h.html#a2a617c6b0492c04a4ddea592f5e53604',1,'MQTTClient.h']]], + ['mqttclient_5fgetversioninfo_71',['MQTTClient_getVersionInfo',['../_m_q_t_t_client_8h.html#abe842456c914ce9201d277a972cc085e',1,'MQTTClient.h']]], + ['mqttclient_5fglobal_5finit_72',['MQTTClient_global_init',['../_m_q_t_t_client_8h.html#a21804ede1a506d1d69a472bc30acc8ba',1,'MQTTClient.h']]], + ['mqttclient_5finit_5foptions_73',['MQTTClient_init_options',['../struct_m_q_t_t_client__init__options.html',1,'']]], + ['mqttclient_5finit_5foptions_5finitializer_74',['MQTTClient_init_options_initializer',['../_m_q_t_t_client_8h.html#ac17057c8c22c0717d3adf4e040440f73',1,'MQTTClient.h']]], + ['mqttclient_5fisconnected_75',['MQTTClient_isConnected',['../_m_q_t_t_client_8h.html#a6e8231e8c47f6f67f7ebbb5dcb4c69c0',1,'MQTTClient.h']]], + ['mqttclient_5fmalloc_76',['MQTTClient_malloc',['../_m_q_t_t_client_8h.html#a9a6a07529e252574db1f95d40ccc0784',1,'MQTTClient.h']]], + ['mqttclient_5fmax_5fmessages_5finflight_77',['MQTTCLIENT_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_client_8h.html#a8fc442fc2e9dfb422a163ab1fa02e0cb',1,'MQTTClient.h']]], + ['mqttclient_5fmessage_78',['MQTTClient_message',['../struct_m_q_t_t_client__message.html',1,'']]], + ['mqttclient_5fmessage_5finitializer_79',['MQTTClient_message_initializer',['../_m_q_t_t_client_8h.html#aa1fd995924d3df75959fcf57e87aefac',1,'MQTTClient.h']]], + ['mqttclient_5fmessagearrived_80',['MQTTClient_messageArrived',['../_m_q_t_t_client_8h.html#aa42130dd069e7e949bcab37b6dce64a5',1,'MQTTClient.h']]], + ['mqttclient_5fnamevalue_81',['MQTTClient_nameValue',['../struct_m_q_t_t_client__name_value.html',1,'']]], + ['mqttclient_5fnull_5fparameter_82',['MQTTCLIENT_NULL_PARAMETER',['../_m_q_t_t_client_8h.html#ac3232abd7f86bbba26faea0e2b132c3c',1,'MQTTClient.h']]], + ['mqttclient_5fpersistence_83',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], + ['mqttclient_5fpersistence_5fdefault_84',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5ferror_85',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fnone_86',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fuser_87',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpublish_88',['MQTTClient_publish',['../_m_q_t_t_client_8h.html#afe9c34013c3511b8ef6cd36bf703678d',1,'MQTTClient.h']]], + ['mqttclient_5fpublish5_89',['MQTTClient_publish5',['../_m_q_t_t_client_8h.html#a8148186cc7683a6bb57f621653df51df',1,'MQTTClient.h']]], + ['mqttclient_5fpublished_90',['MQTTClient_published',['../_m_q_t_t_client_8h.html#a6c3f51e50e2c47328eee1b0c920ed103',1,'MQTTClient.h']]], + ['mqttclient_5fpublishmessage_91',['MQTTClient_publishMessage',['../_m_q_t_t_client_8h.html#ace320b8a92c7087d9dd5cf242d50389d',1,'MQTTClient.h']]], + ['mqttclient_5fpublishmessage5_92',['MQTTClient_publishMessage5',['../_m_q_t_t_client_8h.html#a362042ce973c012bad6a1aa3b5984f5d',1,'MQTTClient.h']]], + ['mqttclient_5freceive_93',['MQTTClient_receive',['../_m_q_t_t_client_8h.html#a4c2df88d00a3dadd510a8cb774739366',1,'MQTTClient.h']]], + ['mqttclient_5fsetcallbacks_94',['MQTTClient_setCallbacks',['../_m_q_t_t_client_8h.html#aad27d07782991a4937ebf2f39a021f83',1,'MQTTClient.h']]], + ['mqttclient_5fsetcommandtimeout_95',['MQTTClient_setCommandTimeout',['../_m_q_t_t_client_8h.html#a96067a2fb74d2a61c7e93015629548e0',1,'MQTTClient.h']]], + ['mqttclient_5fsetdisconnected_96',['MQTTClient_setDisconnected',['../_m_q_t_t_client_8h.html#a8adea083a162735d5c7592160088eea0',1,'MQTTClient.h']]], + ['mqttclient_5fsetpublished_97',['MQTTClient_setPublished',['../_m_q_t_t_client_8h.html#a9f13911351a3de6b1ebdabd4cb4116ba',1,'MQTTClient.h']]], + ['mqttclient_5fsettracecallback_98',['MQTTClient_setTraceCallback',['../_m_q_t_t_client_8h.html#a22870f94aa4cb1827626612f1ded7c69',1,'MQTTClient.h']]], + ['mqttclient_5fsettracelevel_99',['MQTTClient_setTraceLevel',['../_m_q_t_t_client_8h.html#a4dfa35d29db54b10b15b8ac2d9a778be',1,'MQTTClient.h']]], + ['mqttclient_5fssl_5fnot_5fsupported_100',['MQTTCLIENT_SSL_NOT_SUPPORTED',['../_m_q_t_t_client_8h.html#a1c67fc83ba1a8f26236aa49b127bdb61',1,'MQTTClient.h']]], + ['mqttclient_5fssloptions_101',['MQTTClient_SSLOptions',['../struct_m_q_t_t_client___s_s_l_options.html',1,'']]], + ['mqttclient_5fssloptions_5finitializer_102',['MQTTClient_SSLOptions_initializer',['../_m_q_t_t_client_8h.html#ab9b2a2c6b52dbb2ac842ad99a9ce6d99',1,'MQTTClient.h']]], + ['mqttclient_5fstrerror_103',['MQTTClient_strerror',['../_m_q_t_t_client_8h.html#a9defda2979f6fedaae64fd85f5c2f617',1,'MQTTClient.h']]], + ['mqttclient_5fsubscribe_104',['MQTTClient_subscribe',['../_m_q_t_t_client_8h.html#a9c1c28258f0d5c6a44ff53a98618f5f3',1,'MQTTClient.h']]], + ['mqttclient_5fsubscribe5_105',['MQTTClient_subscribe5',['../_m_q_t_t_client_8h.html#af35ab7375435f7b6388c5ff4610dad3d',1,'MQTTClient.h']]], + ['mqttclient_5fsubscribemany_106',['MQTTClient_subscribeMany',['../_m_q_t_t_client_8h.html#a92fa1c13f3db8399e042fbdbdfb692b3',1,'MQTTClient.h']]], + ['mqttclient_5fsubscribemany5_107',['MQTTClient_subscribeMany5',['../_m_q_t_t_client_8h.html#a5390c2402f135c12826ffbf6fc261f7c',1,'MQTTClient.h']]], + ['mqttclient_5fsuccess_108',['MQTTCLIENT_SUCCESS',['../_m_q_t_t_client_8h.html#acba095704d79e5a1996389fa26203f73',1,'MQTTClient.h']]], + ['mqttclient_5ftoken_109',['MQTTClient_token',['../_m_q_t_t_client_8h.html#a8b2beb5227708f8127b666f5a7fc41b3',1,'MQTTClient.h']]], + ['mqttclient_5ftopicname_5ftruncated_110',['MQTTCLIENT_TOPICNAME_TRUNCATED',['../_m_q_t_t_client_8h.html#a29afebfce0bdf6cda1e37abc0c4b6690',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5ferror_111',['MQTTCLIENT_TRACE_ERROR',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba6eefffc98c1ba698224ba351f12e6a91',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5ffatal_112',['MQTTCLIENT_TRACE_FATAL',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba35626cc4876d074c4c21f8c4f54fdf38',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5flevels_113',['MQTTCLIENT_TRACE_LEVELS',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09b',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5fmaximum_114',['MQTTCLIENT_TRACE_MAXIMUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba38a4c3c4e2fc99711793ee2815aee40c',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5fmedium_115',['MQTTCLIENT_TRACE_MEDIUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba4bb7e7221b59e9be4515f2182c03ea99',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5fminimum_116',['MQTTCLIENT_TRACE_MINIMUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09bacf029d9a231bd07e5e1a6f3bd0b6004e',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5fprotocol_117',['MQTTCLIENT_TRACE_PROTOCOL',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba29f21f77cf34ab2467520d7738fd8eb1',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5fsevere_118',['MQTTCLIENT_TRACE_SEVERE',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09baf060569bdbb4015cfce028937b4cfa69',1,'MQTTClient.h']]], + ['mqttclient_5ftracecallback_119',['MQTTClient_traceCallback',['../_m_q_t_t_client_8h.html#afa5758290a1162e5135bca97bbfd5774',1,'MQTTClient.h']]], + ['mqttclient_5funsubscribe_120',['MQTTClient_unsubscribe',['../_m_q_t_t_client_8h.html#aa8731be3dbc6a25f41f037f8bbbb054b',1,'MQTTClient.h']]], + ['mqttclient_5funsubscribe5_121',['MQTTClient_unsubscribe5',['../_m_q_t_t_client_8h.html#a58356c13867f18df60fd4c7ec9457c48',1,'MQTTClient.h']]], + ['mqttclient_5funsubscribemany_122',['MQTTClient_unsubscribeMany',['../_m_q_t_t_client_8h.html#a50abbce720d50b9f84b97ff9fa1f546d',1,'MQTTClient.h']]], + ['mqttclient_5funsubscribemany5_123',['MQTTClient_unsubscribeMany5',['../_m_q_t_t_client_8h.html#a46bdb532d2153110ccffb2f0748d1ba5',1,'MQTTClient.h']]], + ['mqttclient_5fwaitforcompletion_124',['MQTTClient_waitForCompletion',['../_m_q_t_t_client_8h.html#a83807ec81fe8c3941e368ab329d43067',1,'MQTTClient.h']]], + ['mqttclient_5fwilloptions_125',['MQTTClient_willOptions',['../struct_m_q_t_t_client__will_options.html',1,'']]], + ['mqttclient_5fwilloptions_5finitializer_126',['MQTTClient_willOptions_initializer',['../_m_q_t_t_client_8h.html#aae0811659c59f5dad0467544f91645eb',1,'MQTTClient.h']]], + ['mqttclient_5fwrong_5fmqtt_5fversion_127',['MQTTCLIENT_WRONG_MQTT_VERSION',['../_m_q_t_t_client_8h.html#ae9070d21de569f999a9575049cdd6da1',1,'MQTTClient.h']]], + ['mqttclient_5fyield_128',['MQTTClient_yield',['../_m_q_t_t_client_8h.html#a8ad3d29864a9ca08202b0832e0f6678e',1,'MQTTClient.h']]], + ['mqttclientpersistence_2eh_129',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], + ['mqttlenstring_130',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], + ['mqttpersistence_5fafterread_131',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], + ['mqttpersistence_5fbeforewrite_132',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], + ['mqttproperties_133',['MQTTProperties',['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties(): MQTTProperties.h'],['../struct_m_q_t_t_properties.html',1,'MQTTProperties']]], + ['mqttproperties_2eh_134',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], + ['mqttproperties_5fadd_135',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], + ['mqttproperties_5fcopy_136',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], + ['mqttproperties_5ffree_137',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalue_138',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalueat_139',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetproperty_140',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetpropertyat_141',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], + ['mqttproperties_5fhasproperty_142',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], + ['mqttproperties_5finitializer_143',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], + ['mqttproperties_5flen_144',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], + ['mqttproperties_5fpropertycount_145',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], + ['mqttproperties_5fread_146',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], + ['mqttproperties_5fwrite_147',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], + ['mqttproperty_148',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], + ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_149',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fdata_150',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fmethod_151',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcontent_5ftype_152',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcorrelation_5fdata_153',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_154',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fqos_155',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_156',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_157',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freason_5fstring_158',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freceive_5fmaximum_159',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_160',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_161',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5finformation_162',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5ftopic_163',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fretain_5favailable_164',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5fkeep_5falive_165',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5freference_166',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_167',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_168',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifier_169',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_170',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_171',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_172',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fuser_5fproperty_173',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_174',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_175',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], + ['mqttproperty_5fgettype_176',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbinary_5fdata_177',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbyte_178',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_179',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_180',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_181',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_182',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_183',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], + ['mqttpropertycodes_184',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], + ['mqttpropertyname_185',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], + ['mqttpropertytypes_186',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], + ['mqttreasoncode_5fadministrative_5faction_187',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fauthentication_5fmethod_188',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_189',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbanned_190',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_191',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fconnection_5frate_5fexceeded_192',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fcontinue_5fauthentication_193',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_194',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f0_195',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f1_196',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f2_197',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fimplementation_5fspecific_5ferror_198',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fkeep_5falive_5ftimeout_199',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmalformed_5fpacket_200',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmaximum_5fconnect_5ftime_201',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_202',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fmatching_5fsubscribers_203',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fsubscription_5ffound_204',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnormal_5fdisconnection_205',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnot_5fauthorized_206',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_207',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_208',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5ftoo_5flarge_209',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpayload_5fformat_5finvalid_210',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fprotocol_5ferror_211',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fqos_5fnot_5fsupported_212',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fquota_5fexceeded_213',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fre_5fauthenticate_214',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_215',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fretain_5fnot_5fsupported_216',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fbusy_217',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fmoved_218',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fshutting_5fdown_219',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5funavailable_220',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsession_5ftaken_5fover_221',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_222',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_223',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsuccess_224',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5falias_5finvalid_225',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5ffilter_5finvalid_226',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5fname_5finvalid_227',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftostring_228',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funspecified_5ferror_229',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funsupported_5fprotocol_5fversion_230',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fuse_5fanother_5fserver_231',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_232',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncodes_233',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]], + ['mqttreasoncodes_2eh_234',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], + ['mqttresponse_235',['MQTTResponse',['../struct_m_q_t_t_response.html',1,'MQTTResponse'],['../_m_q_t_t_client_8h.html#a0d31d490adbe677902b99eca127bee56',1,'MQTTResponse(): MQTTClient.h']]], + ['mqttresponse_5ffree_236',['MQTTResponse_free',['../_m_q_t_t_client_8h.html#a01bd2c5f98ec5c0636a106db33f2b01b',1,'MQTTClient.h']]], + ['mqttresponse_5finitializer_237',['MQTTResponse_initializer',['../_m_q_t_t_client_8h.html#a17f171200136bcfa933eb50ef21531a7',1,'MQTTClient.h']]], + ['mqttsubscribe_5foptions_238',['MQTTSubscribe_options',['../struct_m_q_t_t_subscribe__options.html',1,'MQTTSubscribe_options'],['../_m_q_t_t_subscribe_opts_8h.html#aa68db3eaed272ae1aaea294401079d8a',1,'MQTTSubscribe_options(): MQTTSubscribeOpts.h']]], + ['mqttsubscribe_5foptions_5finitializer_239',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], + ['mqttsubscribeopts_2eh_240',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]], + ['mqttversion_241',['MQTTVersion',['../struct_m_q_t_t_client__create_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTClient_createOptions::MQTTVersion()'],['../struct_m_q_t_t_client__connect_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTClient_connectOptions::MQTTVersion()']]], + ['mqttversion_5f3_5f1_242',['MQTTVERSION_3_1',['../_m_q_t_t_client_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTClient.h']]], + ['mqttversion_5f3_5f1_5f1_243',['MQTTVERSION_3_1_1',['../_m_q_t_t_client_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTClient.h']]], + ['mqttversion_5f5_244',['MQTTVERSION_5',['../_m_q_t_t_client_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTClient.h']]], + ['mqttversion_5fdefault_245',['MQTTVERSION_DEFAULT',['../_m_q_t_t_client_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTClient.h']]], + ['msgid_246',['msgid',['../struct_m_q_t_t_client__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTClient_message']]] ]; diff --git a/docs/MQTTClient/html/search/all_a.html b/docs/MQTTClient/html/search/all_a.html index f2f3d3a3..3a6cac10 100644 --- a/docs/MQTTClient/html/search/all_a.html +++ b/docs/MQTTClient/html/search/all_a.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_a.js b/docs/MQTTClient/html/search/all_a.js index fd074989..6fb02662 100644 --- a/docs/MQTTClient/html/search/all_a.js +++ b/docs/MQTTClient/html/search/all_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['name_245',['name',['../struct_m_q_t_t_client__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTClient_nameValue']]], - ['nolocal_246',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] + ['name_247',['name',['../struct_m_q_t_t_client__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTClient_nameValue']]], + ['nolocal_248',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] ]; diff --git a/docs/MQTTClient/html/search/all_b.html b/docs/MQTTClient/html/search/all_b.html index 14f34036..130deb4e 100644 --- a/docs/MQTTClient/html/search/all_b.html +++ b/docs/MQTTClient/html/search/all_b.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_b.js b/docs/MQTTClient/html/search/all_b.js index dea3b441..ffa634f4 100644 --- a/docs/MQTTClient/html/search/all_b.js +++ b/docs/MQTTClient/html/search/all_b.js @@ -1,27 +1,27 @@ var searchData= [ - ['password_247',['password',['../struct_m_q_t_t_client__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTClient_connectOptions']]], - ['payload_248',['payload',['../struct_m_q_t_t_client__message.html#a9eff55064941fb604452abb0050ea99d',1,'MQTTClient_message::payload()'],['../struct_m_q_t_t_client__will_options.html#a0e9356b973a918c25981982fe84e35d7',1,'MQTTClient_willOptions::payload()']]], - ['payloadlen_249',['payloadlen',['../struct_m_q_t_t_client__message.html#aa3cb44feb3ae6d11b3a4cad2d94cb33a',1,'MQTTClient_message']]], - ['pclear_250',['pclear',['../struct_m_q_t_t_client__persistence.html#abc192dc88113c7d933b29d3561badbf5',1,'MQTTClient_persistence']]], - ['pclose_251',['pclose',['../struct_m_q_t_t_client__persistence.html#a7e50506912d2ec0e014cc25ec28fb402',1,'MQTTClient_persistence']]], - ['pcontainskey_252',['pcontainskey',['../struct_m_q_t_t_client__persistence.html#ac103711576267f791325f2b70b6dc49d',1,'MQTTClient_persistence']]], - ['persistence_5fclear_253',['Persistence_clear',['../_m_q_t_t_client_persistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], - ['persistence_5fclose_254',['Persistence_close',['../_m_q_t_t_client_persistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], - ['persistence_5fcontainskey_255',['Persistence_containskey',['../_m_q_t_t_client_persistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], - ['persistence_5fget_256',['Persistence_get',['../_m_q_t_t_client_persistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], - ['persistence_5fkeys_257',['Persistence_keys',['../_m_q_t_t_client_persistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], - ['persistence_5fopen_258',['Persistence_open',['../_m_q_t_t_client_persistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], - ['persistence_5fput_259',['Persistence_put',['../_m_q_t_t_client_persistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], - ['persistence_5fremove_260',['Persistence_remove',['../_m_q_t_t_client_persistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]], - ['pget_261',['pget',['../struct_m_q_t_t_client__persistence.html#a49155000b82a28ac3b3cb878f3a092d4',1,'MQTTClient_persistence']]], - ['pkeys_262',['pkeys',['../struct_m_q_t_t_client__persistence.html#a407e86a809e4b0b098a8c158f53b9606',1,'MQTTClient_persistence']]], - ['popen_263',['popen',['../struct_m_q_t_t_client__persistence.html#a1bae211b32415e6b349d5ae71599f9f4',1,'MQTTClient_persistence']]], - ['pput_264',['pput',['../struct_m_q_t_t_client__persistence.html#a4114d9b9971cee18d7e4b9dd5736a608',1,'MQTTClient_persistence']]], - ['premove_265',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], - ['privatekey_266',['privateKey',['../struct_m_q_t_t_client___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTClient_SSLOptions']]], - ['privatekeypassword_267',['privateKeyPassword',['../struct_m_q_t_t_client___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTClient_SSLOptions']]], - ['properties_268',['properties',['../struct_m_q_t_t_client__message.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTClient_message::properties()'],['../struct_m_q_t_t_response.html#a72e9294467b8329a78bc840fe6c5b230',1,'MQTTResponse::properties()']]], - ['protos_269',['protos',['../struct_m_q_t_t_client___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTClient_SSLOptions']]], - ['protos_5flen_270',['protos_len',['../struct_m_q_t_t_client___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTClient_SSLOptions']]] + ['password_249',['password',['../struct_m_q_t_t_client__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTClient_connectOptions']]], + ['payload_250',['payload',['../struct_m_q_t_t_client__message.html#a9eff55064941fb604452abb0050ea99d',1,'MQTTClient_message::payload()'],['../struct_m_q_t_t_client__will_options.html#a0e9356b973a918c25981982fe84e35d7',1,'MQTTClient_willOptions::payload()']]], + ['payloadlen_251',['payloadlen',['../struct_m_q_t_t_client__message.html#aa3cb44feb3ae6d11b3a4cad2d94cb33a',1,'MQTTClient_message']]], + ['pclear_252',['pclear',['../struct_m_q_t_t_client__persistence.html#abc192dc88113c7d933b29d3561badbf5',1,'MQTTClient_persistence']]], + ['pclose_253',['pclose',['../struct_m_q_t_t_client__persistence.html#a7e50506912d2ec0e014cc25ec28fb402',1,'MQTTClient_persistence']]], + ['pcontainskey_254',['pcontainskey',['../struct_m_q_t_t_client__persistence.html#ac103711576267f791325f2b70b6dc49d',1,'MQTTClient_persistence']]], + ['persistence_5fclear_255',['Persistence_clear',['../_m_q_t_t_client_persistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], + ['persistence_5fclose_256',['Persistence_close',['../_m_q_t_t_client_persistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], + ['persistence_5fcontainskey_257',['Persistence_containskey',['../_m_q_t_t_client_persistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], + ['persistence_5fget_258',['Persistence_get',['../_m_q_t_t_client_persistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], + ['persistence_5fkeys_259',['Persistence_keys',['../_m_q_t_t_client_persistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], + ['persistence_5fopen_260',['Persistence_open',['../_m_q_t_t_client_persistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], + ['persistence_5fput_261',['Persistence_put',['../_m_q_t_t_client_persistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], + ['persistence_5fremove_262',['Persistence_remove',['../_m_q_t_t_client_persistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]], + ['pget_263',['pget',['../struct_m_q_t_t_client__persistence.html#a49155000b82a28ac3b3cb878f3a092d4',1,'MQTTClient_persistence']]], + ['pkeys_264',['pkeys',['../struct_m_q_t_t_client__persistence.html#a407e86a809e4b0b098a8c158f53b9606',1,'MQTTClient_persistence']]], + ['popen_265',['popen',['../struct_m_q_t_t_client__persistence.html#a1bae211b32415e6b349d5ae71599f9f4',1,'MQTTClient_persistence']]], + ['pput_266',['pput',['../struct_m_q_t_t_client__persistence.html#a4114d9b9971cee18d7e4b9dd5736a608',1,'MQTTClient_persistence']]], + ['premove_267',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], + ['privatekey_268',['privateKey',['../struct_m_q_t_t_client___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTClient_SSLOptions']]], + ['privatekeypassword_269',['privateKeyPassword',['../struct_m_q_t_t_client___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTClient_SSLOptions']]], + ['properties_270',['properties',['../struct_m_q_t_t_response.html#a72e9294467b8329a78bc840fe6c5b230',1,'MQTTResponse::properties()'],['../struct_m_q_t_t_client__message.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTClient_message::properties()']]], + ['protos_271',['protos',['../struct_m_q_t_t_client___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTClient_SSLOptions']]], + ['protos_5flen_272',['protos_len',['../struct_m_q_t_t_client___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTClient_SSLOptions']]] ]; diff --git a/docs/MQTTClient/html/search/all_c.html b/docs/MQTTClient/html/search/all_c.html index da60ab8d..3dd5af06 100644 --- a/docs/MQTTClient/html/search/all_c.html +++ b/docs/MQTTClient/html/search/all_c.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_c.js b/docs/MQTTClient/html/search/all_c.js index d974c6e3..0249599f 100644 --- a/docs/MQTTClient/html/search/all_c.js +++ b/docs/MQTTClient/html/search/all_c.js @@ -1,4 +1,5 @@ var searchData= [ - ['qos_271',['qos',['../struct_m_q_t_t_client__message.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTClient_message::qos()'],['../struct_m_q_t_t_client__will_options.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTClient_willOptions::qos()'],['../qos.html',1,'(Global Namespace)']]] + ['qos_273',['qos',['../struct_m_q_t_t_client__message.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTClient_message::qos()'],['../struct_m_q_t_t_client__will_options.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTClient_willOptions::qos()']]], + ['quality_20of_20service_274',['Quality of service',['../qos.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/all_d.html b/docs/MQTTClient/html/search/all_d.html index bc376fec..af7f2f0f 100644 --- a/docs/MQTTClient/html/search/all_d.html +++ b/docs/MQTTClient/html/search/all_d.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_d.js b/docs/MQTTClient/html/search/all_d.js index 4a0ee888..f218bbed 100644 --- a/docs/MQTTClient/html/search/all_d.js +++ b/docs/MQTTClient/html/search/all_d.js @@ -1,12 +1,12 @@ var searchData= [ - ['reasoncode_272',['reasonCode',['../struct_m_q_t_t_response.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTResponse']]], - ['reasoncodecount_273',['reasonCodeCount',['../struct_m_q_t_t_response.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTResponse']]], - ['reasoncodes_274',['reasonCodes',['../struct_m_q_t_t_response.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTResponse']]], - ['reliable_275',['reliable',['../struct_m_q_t_t_client__connect_options.html#a9f1cdffc99659fd4e2d20e6de3c64df0',1,'MQTTClient_connectOptions']]], - ['retainaspublished_276',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], - ['retained_277',['retained',['../struct_m_q_t_t_client__message.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTClient_message::retained()'],['../struct_m_q_t_t_client__will_options.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTClient_willOptions::retained()']]], - ['retainhandling_278',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], - ['retryinterval_279',['retryInterval',['../struct_m_q_t_t_client__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTClient_connectOptions']]], - ['returned_280',['returned',['../struct_m_q_t_t_client__connect_options.html#afbca347de18f7a8c57de1f16d3dadde6',1,'MQTTClient_connectOptions']]] + ['reasoncode_275',['reasonCode',['../struct_m_q_t_t_response.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTResponse']]], + ['reasoncodecount_276',['reasonCodeCount',['../struct_m_q_t_t_response.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTResponse']]], + ['reasoncodes_277',['reasonCodes',['../struct_m_q_t_t_response.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTResponse']]], + ['reliable_278',['reliable',['../struct_m_q_t_t_client__connect_options.html#a9f1cdffc99659fd4e2d20e6de3c64df0',1,'MQTTClient_connectOptions']]], + ['retainaspublished_279',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], + ['retained_280',['retained',['../struct_m_q_t_t_client__message.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTClient_message::retained()'],['../struct_m_q_t_t_client__will_options.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTClient_willOptions::retained()']]], + ['retainhandling_281',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], + ['retryinterval_282',['retryInterval',['../struct_m_q_t_t_client__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTClient_connectOptions']]], + ['returned_283',['returned',['../struct_m_q_t_t_client__connect_options.html#afbca347de18f7a8c57de1f16d3dadde6',1,'MQTTClient_connectOptions']]] ]; diff --git a/docs/MQTTClient/html/search/all_e.html b/docs/MQTTClient/html/search/all_e.html index 2e3c74dc..e25df423 100644 --- a/docs/MQTTClient/html/search/all_e.html +++ b/docs/MQTTClient/html/search/all_e.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_e.js b/docs/MQTTClient/html/search/all_e.js index db8a7e37..097c29db 100644 --- a/docs/MQTTClient/html/search/all_e.js +++ b/docs/MQTTClient/html/search/all_e.js @@ -1,17 +1,17 @@ var searchData= [ - ['synchronous_20publication_20example_281',['Synchronous publication example',['../pubsync.html',1,'']]], - ['serveruri_282',['serverURI',['../struct_m_q_t_t_client__connect_options.html#a313446ca7679b36652722ffe53d05228',1,'MQTTClient_connectOptions']]], - ['serveruricount_283',['serverURIcount',['../struct_m_q_t_t_client__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTClient_connectOptions']]], - ['serveruris_284',['serverURIs',['../struct_m_q_t_t_client__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTClient_connectOptions']]], - ['sessionpresent_285',['sessionPresent',['../struct_m_q_t_t_client__connect_options.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTClient_connectOptions']]], - ['ssl_286',['ssl',['../struct_m_q_t_t_client__connect_options.html#a8a0b0f0fc7c675312dc232e2458078c7',1,'MQTTClient_connectOptions']]], - ['ssl_5ferror_5fcb_287',['ssl_error_cb',['../struct_m_q_t_t_client___s_s_l_options.html#a76c7b40e2e258d2f898b53165ada2b70',1,'MQTTClient_SSLOptions']]], - ['ssl_5ferror_5fcontext_288',['ssl_error_context',['../struct_m_q_t_t_client___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTClient_SSLOptions']]], - ['ssl_5fpsk_5fcb_289',['ssl_psk_cb',['../struct_m_q_t_t_client___s_s_l_options.html#a83c1245259a491ea9daf872ce04b5e46',1,'MQTTClient_SSLOptions']]], - ['ssl_5fpsk_5fcontext_290',['ssl_psk_context',['../struct_m_q_t_t_client___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTClient_SSLOptions']]], - ['sslversion_291',['sslVersion',['../struct_m_q_t_t_client___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTClient_SSLOptions']]], - ['struct_5fid_292',['struct_id',['../struct_m_q_t_t_client__init__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_init_options::struct_id()'],['../struct_m_q_t_t_client__message.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_message::struct_id()'],['../struct_m_q_t_t_client__create_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_createOptions::struct_id()'],['../struct_m_q_t_t_client__will_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_willOptions::struct_id()'],['../struct_m_q_t_t_client___s_s_l_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_SSLOptions::struct_id()'],['../struct_m_q_t_t_client__connect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_connectOptions::struct_id()'],['../struct_m_q_t_t_subscribe__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTSubscribe_options::struct_id()']]], - ['struct_5fversion_293',['struct_version',['../struct_m_q_t_t_client__init__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_init_options::struct_version()'],['../struct_m_q_t_t_client__message.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_message::struct_version()'],['../struct_m_q_t_t_client__create_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_createOptions::struct_version()'],['../struct_m_q_t_t_client__will_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_willOptions::struct_version()'],['../struct_m_q_t_t_client___s_s_l_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_SSLOptions::struct_version()'],['../struct_m_q_t_t_client__connect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_connectOptions::struct_version()'],['../struct_m_q_t_t_subscribe__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTSubscribe_options::struct_version()']]], - ['subscription_20wildcards_294',['Subscription wildcards',['../wildcard.html',1,'']]] + ['serveruri_284',['serverURI',['../struct_m_q_t_t_client__connect_options.html#a313446ca7679b36652722ffe53d05228',1,'MQTTClient_connectOptions']]], + ['serveruricount_285',['serverURIcount',['../struct_m_q_t_t_client__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTClient_connectOptions']]], + ['serveruris_286',['serverURIs',['../struct_m_q_t_t_client__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTClient_connectOptions']]], + ['sessionpresent_287',['sessionPresent',['../struct_m_q_t_t_client__connect_options.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTClient_connectOptions']]], + ['ssl_288',['ssl',['../struct_m_q_t_t_client__connect_options.html#a8a0b0f0fc7c675312dc232e2458078c7',1,'MQTTClient_connectOptions']]], + ['ssl_5ferror_5fcb_289',['ssl_error_cb',['../struct_m_q_t_t_client___s_s_l_options.html#a21b6ca8a73ba197e65f6a93365d39c04',1,'MQTTClient_SSLOptions']]], + ['ssl_5ferror_5fcontext_290',['ssl_error_context',['../struct_m_q_t_t_client___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTClient_SSLOptions']]], + ['ssl_5fpsk_5fcb_291',['ssl_psk_cb',['../struct_m_q_t_t_client___s_s_l_options.html#a94317cdaf352f9ae496976f8a30f8fee',1,'MQTTClient_SSLOptions']]], + ['ssl_5fpsk_5fcontext_292',['ssl_psk_context',['../struct_m_q_t_t_client___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTClient_SSLOptions']]], + ['sslversion_293',['sslVersion',['../struct_m_q_t_t_client___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTClient_SSLOptions']]], + ['struct_5fid_294',['struct_id',['../struct_m_q_t_t_client__will_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_willOptions::struct_id()'],['../struct_m_q_t_t_subscribe__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTSubscribe_options::struct_id()'],['../struct_m_q_t_t_client__connect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_connectOptions::struct_id()'],['../struct_m_q_t_t_client___s_s_l_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_SSLOptions::struct_id()'],['../struct_m_q_t_t_client__create_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_createOptions::struct_id()'],['../struct_m_q_t_t_client__message.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_message::struct_id()'],['../struct_m_q_t_t_client__init__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_init_options::struct_id()']]], + ['struct_5fversion_295',['struct_version',['../struct_m_q_t_t_client__init__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_init_options::struct_version()'],['../struct_m_q_t_t_client__message.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_message::struct_version()'],['../struct_m_q_t_t_client__create_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_createOptions::struct_version()'],['../struct_m_q_t_t_client__will_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_willOptions::struct_version()'],['../struct_m_q_t_t_client___s_s_l_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_SSLOptions::struct_version()'],['../struct_m_q_t_t_client__connect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_connectOptions::struct_version()'],['../struct_m_q_t_t_subscribe__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTSubscribe_options::struct_version()']]], + ['subscription_20wildcards_296',['Subscription wildcards',['../wildcard.html',1,'']]], + ['synchronous_20publication_20example_297',['Synchronous publication example',['../pubsync.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/all_f.html b/docs/MQTTClient/html/search/all_f.html index 246f8ab1..b23da6ce 100644 --- a/docs/MQTTClient/html/search/all_f.html +++ b/docs/MQTTClient/html/search/all_f.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/all_f.js b/docs/MQTTClient/html/search/all_f.js index aa0a91b8..e2e9f3a3 100644 --- a/docs/MQTTClient/html/search/all_f.js +++ b/docs/MQTTClient/html/search/all_f.js @@ -1,6 +1,6 @@ var searchData= [ - ['topicname_295',['topicName',['../struct_m_q_t_t_client__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTClient_willOptions']]], - ['tracing_296',['Tracing',['../tracing.html',1,'']]], - ['truststore_297',['trustStore',['../struct_m_q_t_t_client___s_s_l_options.html#a032835d4c4a1c1e19b53c330a673a6e0',1,'MQTTClient_SSLOptions']]] + ['topicname_298',['topicName',['../struct_m_q_t_t_client__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTClient_willOptions']]], + ['tracing_299',['Tracing',['../tracing.html',1,'']]], + ['truststore_300',['trustStore',['../struct_m_q_t_t_client___s_s_l_options.html#a032835d4c4a1c1e19b53c330a673a6e0',1,'MQTTClient_SSLOptions']]] ]; diff --git a/docs/MQTTClient/html/search/classes_0.html b/docs/MQTTClient/html/search/classes_0.html index f7e4c14e..af8159ee 100644 --- a/docs/MQTTClient/html/search/classes_0.html +++ b/docs/MQTTClient/html/search/classes_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/classes_0.js b/docs/MQTTClient/html/search/classes_0.js index 90a0f9ab..92c77d87 100644 --- a/docs/MQTTClient/html/search/classes_0.js +++ b/docs/MQTTClient/html/search/classes_0.js @@ -1,16 +1,16 @@ var searchData= [ - ['mqttclient_5fconnectoptions_303',['MQTTClient_connectOptions',['../struct_m_q_t_t_client__connect_options.html',1,'']]], - ['mqttclient_5fcreateoptions_304',['MQTTClient_createOptions',['../struct_m_q_t_t_client__create_options.html',1,'']]], - ['mqttclient_5finit_5foptions_305',['MQTTClient_init_options',['../struct_m_q_t_t_client__init__options.html',1,'']]], - ['mqttclient_5fmessage_306',['MQTTClient_message',['../struct_m_q_t_t_client__message.html',1,'']]], - ['mqttclient_5fnamevalue_307',['MQTTClient_nameValue',['../struct_m_q_t_t_client__name_value.html',1,'']]], - ['mqttclient_5fpersistence_308',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], - ['mqttclient_5fssloptions_309',['MQTTClient_SSLOptions',['../struct_m_q_t_t_client___s_s_l_options.html',1,'']]], - ['mqttclient_5fwilloptions_310',['MQTTClient_willOptions',['../struct_m_q_t_t_client__will_options.html',1,'']]], - ['mqttlenstring_311',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], - ['mqttproperties_312',['MQTTProperties',['../struct_m_q_t_t_properties.html',1,'']]], - ['mqttproperty_313',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], - ['mqttresponse_314',['MQTTResponse',['../struct_m_q_t_t_response.html',1,'']]], - ['mqttsubscribe_5foptions_315',['MQTTSubscribe_options',['../struct_m_q_t_t_subscribe__options.html',1,'']]] + ['mqttclient_5fconnectoptions_306',['MQTTClient_connectOptions',['../struct_m_q_t_t_client__connect_options.html',1,'']]], + ['mqttclient_5fcreateoptions_307',['MQTTClient_createOptions',['../struct_m_q_t_t_client__create_options.html',1,'']]], + ['mqttclient_5finit_5foptions_308',['MQTTClient_init_options',['../struct_m_q_t_t_client__init__options.html',1,'']]], + ['mqttclient_5fmessage_309',['MQTTClient_message',['../struct_m_q_t_t_client__message.html',1,'']]], + ['mqttclient_5fnamevalue_310',['MQTTClient_nameValue',['../struct_m_q_t_t_client__name_value.html',1,'']]], + ['mqttclient_5fpersistence_311',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], + ['mqttclient_5fssloptions_312',['MQTTClient_SSLOptions',['../struct_m_q_t_t_client___s_s_l_options.html',1,'']]], + ['mqttclient_5fwilloptions_313',['MQTTClient_willOptions',['../struct_m_q_t_t_client__will_options.html',1,'']]], + ['mqttlenstring_314',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], + ['mqttproperties_315',['MQTTProperties',['../struct_m_q_t_t_properties.html',1,'']]], + ['mqttproperty_316',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], + ['mqttresponse_317',['MQTTResponse',['../struct_m_q_t_t_response.html',1,'']]], + ['mqttsubscribe_5foptions_318',['MQTTSubscribe_options',['../struct_m_q_t_t_subscribe__options.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/close.png b/docs/MQTTClient/html/search/close.png deleted file mode 100644 index 9342d3df..00000000 Binary files a/docs/MQTTClient/html/search/close.png and /dev/null differ diff --git a/docs/MQTTClient/html/search/close.svg b/docs/MQTTClient/html/search/close.svg new file mode 100644 index 00000000..a933eea1 --- /dev/null +++ b/docs/MQTTClient/html/search/close.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/docs/MQTTClient/html/search/defines_0.html b/docs/MQTTClient/html/search/defines_0.html index 2deb369f..15cc3de3 100644 --- a/docs/MQTTClient/html/search/defines_0.html +++ b/docs/MQTTClient/html/search/defines_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/defines_0.js b/docs/MQTTClient/html/search/defines_0.js index b29f76e9..7c7b8e17 100644 --- a/docs/MQTTClient/html/search/defines_0.js +++ b/docs/MQTTClient/html/search/defines_0.js @@ -1,44 +1,44 @@ var searchData= [ - ['mqtt_5fbad_5fsubscribe_561',['MQTT_BAD_SUBSCRIBE',['../_m_q_t_t_client_8h.html#ade337b363b7f4bc7c1a7b2858e0380bd',1,'MQTTClient.h']]], - ['mqtt_5finvalid_5fproperty_5fid_562',['MQTT_INVALID_PROPERTY_ID',['../_m_q_t_t_properties_8h.html#afc56d2e8937a0c8f180d68ad93945945',1,'MQTTProperties.h']]], - ['mqtt_5fssl_5fversion_5fdefault_563',['MQTT_SSL_VERSION_DEFAULT',['../_m_q_t_t_client_8h.html#a2549ea897af26c76198284731db9e721',1,'MQTTClient.h']]], - ['mqtt_5fssl_5fversion_5ftls_5f1_5f0_564',['MQTT_SSL_VERSION_TLS_1_0',['../_m_q_t_t_client_8h.html#a7e5da3d6f0d2b53409bbfcf6e56f3d2d',1,'MQTTClient.h']]], - ['mqtt_5fssl_5fversion_5ftls_5f1_5f1_565',['MQTT_SSL_VERSION_TLS_1_1',['../_m_q_t_t_client_8h.html#abdff87efa3f2ee473a1591e10638b537',1,'MQTTClient.h']]], - ['mqtt_5fssl_5fversion_5ftls_5f1_5f2_566',['MQTT_SSL_VERSION_TLS_1_2',['../_m_q_t_t_client_8h.html#a3a94dbdeafbb73c73a068e7c2085fbab',1,'MQTTClient.h']]], - ['mqttclient_5f0_5flen_5fwill_5ftopic_567',['MQTTCLIENT_0_LEN_WILL_TOPIC',['../_m_q_t_t_client_8h.html#aacf90ba5292e25122e6fd5ec2a38efe5',1,'MQTTClient.h']]], - ['mqttclient_5fbad_5fmqtt_5foption_568',['MQTTCLIENT_BAD_MQTT_OPTION',['../_m_q_t_t_client_8h.html#a1babaca56ffae802fa1e246a2649927e',1,'MQTTClient.h']]], - ['mqttclient_5fbad_5fmqtt_5fversion_569',['MQTTCLIENT_BAD_MQTT_VERSION',['../_m_q_t_t_client_8h.html#aab84cecd25638896eb45b8f5ffd82bf7',1,'MQTTClient.h']]], - ['mqttclient_5fbad_5fprotocol_570',['MQTTCLIENT_BAD_PROTOCOL',['../_m_q_t_t_client_8h.html#a1d0cb25b450136f036a238546487344a',1,'MQTTClient.h']]], - ['mqttclient_5fbad_5fqos_571',['MQTTCLIENT_BAD_QOS',['../_m_q_t_t_client_8h.html#a51cc8ca032acf4ae14f83996524b8cdc',1,'MQTTClient.h']]], - ['mqttclient_5fbad_5fstructure_572',['MQTTCLIENT_BAD_STRUCTURE',['../_m_q_t_t_client_8h.html#a747615d8064e3fe024ae5565ec63e1ce',1,'MQTTClient.h']]], - ['mqttclient_5fbad_5futf8_5fstring_573',['MQTTCLIENT_BAD_UTF8_STRING',['../_m_q_t_t_client_8h.html#a678a4744192de9c8dca220d9965809dd',1,'MQTTClient.h']]], - ['mqttclient_5fconnectoptions_5finitializer_574',['MQTTClient_connectOptions_initializer',['../_m_q_t_t_client_8h.html#aefd7c865f2641c8155b763fdf3061c25',1,'MQTTClient.h']]], - ['mqttclient_5fconnectoptions_5finitializer5_575',['MQTTClient_connectOptions_initializer5',['../_m_q_t_t_client_8h.html#a1f0c7608262ac9c00cb94e9c8f9fc984',1,'MQTTClient.h']]], - ['mqttclient_5fconnectoptions_5finitializer5_5fws_576',['MQTTClient_connectOptions_initializer5_ws',['../_m_q_t_t_client_8h.html#a8c37c9f77f0b67e2520c8f91acf1afea',1,'MQTTClient.h']]], - ['mqttclient_5fconnectoptions_5finitializer_5fws_577',['MQTTClient_connectOptions_initializer_ws',['../_m_q_t_t_client_8h.html#a0a98fda162a78ee8c8cbd7d9d39494f4',1,'MQTTClient.h']]], - ['mqttclient_5fcreateoptions_5finitializer_578',['MQTTClient_createOptions_initializer',['../_m_q_t_t_client_8h.html#a763e477a5aceb6aff279111c7693e691',1,'MQTTClient.h']]], - ['mqttclient_5fdisconnected_579',['MQTTCLIENT_DISCONNECTED',['../_m_q_t_t_client_8h.html#a561d053311cb492cf7226f419ee0d516',1,'MQTTClient.h']]], - ['mqttclient_5ffailure_580',['MQTTCLIENT_FAILURE',['../_m_q_t_t_client_8h.html#af33a6d6c0e8a6a747bf39638e0bba36b',1,'MQTTClient.h']]], - ['mqttclient_5finit_5foptions_5finitializer_581',['MQTTClient_init_options_initializer',['../_m_q_t_t_client_8h.html#ac17057c8c22c0717d3adf4e040440f73',1,'MQTTClient.h']]], - ['mqttclient_5fmax_5fmessages_5finflight_582',['MQTTCLIENT_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_client_8h.html#a8fc442fc2e9dfb422a163ab1fa02e0cb',1,'MQTTClient.h']]], - ['mqttclient_5fmessage_5finitializer_583',['MQTTClient_message_initializer',['../_m_q_t_t_client_8h.html#aa1fd995924d3df75959fcf57e87aefac',1,'MQTTClient.h']]], - ['mqttclient_5fnull_5fparameter_584',['MQTTCLIENT_NULL_PARAMETER',['../_m_q_t_t_client_8h.html#ac3232abd7f86bbba26faea0e2b132c3c',1,'MQTTClient.h']]], - ['mqttclient_5fpersistence_5fdefault_585',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5ferror_586',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fnone_587',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fuser_588',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fssl_5fnot_5fsupported_589',['MQTTCLIENT_SSL_NOT_SUPPORTED',['../_m_q_t_t_client_8h.html#a1c67fc83ba1a8f26236aa49b127bdb61',1,'MQTTClient.h']]], - ['mqttclient_5fssloptions_5finitializer_590',['MQTTClient_SSLOptions_initializer',['../_m_q_t_t_client_8h.html#ab9b2a2c6b52dbb2ac842ad99a9ce6d99',1,'MQTTClient.h']]], - ['mqttclient_5fsuccess_591',['MQTTCLIENT_SUCCESS',['../_m_q_t_t_client_8h.html#acba095704d79e5a1996389fa26203f73',1,'MQTTClient.h']]], - ['mqttclient_5ftopicname_5ftruncated_592',['MQTTCLIENT_TOPICNAME_TRUNCATED',['../_m_q_t_t_client_8h.html#a29afebfce0bdf6cda1e37abc0c4b6690',1,'MQTTClient.h']]], - ['mqttclient_5fwilloptions_5finitializer_593',['MQTTClient_willOptions_initializer',['../_m_q_t_t_client_8h.html#aae0811659c59f5dad0467544f91645eb',1,'MQTTClient.h']]], - ['mqttclient_5fwrong_5fmqtt_5fversion_594',['MQTTCLIENT_WRONG_MQTT_VERSION',['../_m_q_t_t_client_8h.html#ae9070d21de569f999a9575049cdd6da1',1,'MQTTClient.h']]], - ['mqttproperties_5finitializer_595',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], - ['mqttresponse_5finitializer_596',['MQTTResponse_initializer',['../_m_q_t_t_client_8h.html#a17f171200136bcfa933eb50ef21531a7',1,'MQTTClient.h']]], - ['mqttsubscribe_5foptions_5finitializer_597',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], - ['mqttversion_5f3_5f1_598',['MQTTVERSION_3_1',['../_m_q_t_t_client_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTClient.h']]], - ['mqttversion_5f3_5f1_5f1_599',['MQTTVERSION_3_1_1',['../_m_q_t_t_client_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTClient.h']]], - ['mqttversion_5f5_600',['MQTTVERSION_5',['../_m_q_t_t_client_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTClient.h']]], - ['mqttversion_5fdefault_601',['MQTTVERSION_DEFAULT',['../_m_q_t_t_client_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTClient.h']]] + ['mqtt_5fbad_5fsubscribe_565',['MQTT_BAD_SUBSCRIBE',['../_m_q_t_t_client_8h.html#ade337b363b7f4bc7c1a7b2858e0380bd',1,'MQTTClient.h']]], + ['mqtt_5finvalid_5fproperty_5fid_566',['MQTT_INVALID_PROPERTY_ID',['../_m_q_t_t_properties_8h.html#afc56d2e8937a0c8f180d68ad93945945',1,'MQTTProperties.h']]], + ['mqtt_5fssl_5fversion_5fdefault_567',['MQTT_SSL_VERSION_DEFAULT',['../_m_q_t_t_client_8h.html#a2549ea897af26c76198284731db9e721',1,'MQTTClient.h']]], + ['mqtt_5fssl_5fversion_5ftls_5f1_5f0_568',['MQTT_SSL_VERSION_TLS_1_0',['../_m_q_t_t_client_8h.html#a7e5da3d6f0d2b53409bbfcf6e56f3d2d',1,'MQTTClient.h']]], + ['mqtt_5fssl_5fversion_5ftls_5f1_5f1_569',['MQTT_SSL_VERSION_TLS_1_1',['../_m_q_t_t_client_8h.html#abdff87efa3f2ee473a1591e10638b537',1,'MQTTClient.h']]], + ['mqtt_5fssl_5fversion_5ftls_5f1_5f2_570',['MQTT_SSL_VERSION_TLS_1_2',['../_m_q_t_t_client_8h.html#a3a94dbdeafbb73c73a068e7c2085fbab',1,'MQTTClient.h']]], + ['mqttclient_5f0_5flen_5fwill_5ftopic_571',['MQTTCLIENT_0_LEN_WILL_TOPIC',['../_m_q_t_t_client_8h.html#aacf90ba5292e25122e6fd5ec2a38efe5',1,'MQTTClient.h']]], + ['mqttclient_5fbad_5fmqtt_5foption_572',['MQTTCLIENT_BAD_MQTT_OPTION',['../_m_q_t_t_client_8h.html#a1babaca56ffae802fa1e246a2649927e',1,'MQTTClient.h']]], + ['mqttclient_5fbad_5fmqtt_5fversion_573',['MQTTCLIENT_BAD_MQTT_VERSION',['../_m_q_t_t_client_8h.html#aab84cecd25638896eb45b8f5ffd82bf7',1,'MQTTClient.h']]], + ['mqttclient_5fbad_5fprotocol_574',['MQTTCLIENT_BAD_PROTOCOL',['../_m_q_t_t_client_8h.html#a1d0cb25b450136f036a238546487344a',1,'MQTTClient.h']]], + ['mqttclient_5fbad_5fqos_575',['MQTTCLIENT_BAD_QOS',['../_m_q_t_t_client_8h.html#a51cc8ca032acf4ae14f83996524b8cdc',1,'MQTTClient.h']]], + ['mqttclient_5fbad_5fstructure_576',['MQTTCLIENT_BAD_STRUCTURE',['../_m_q_t_t_client_8h.html#a747615d8064e3fe024ae5565ec63e1ce',1,'MQTTClient.h']]], + ['mqttclient_5fbad_5futf8_5fstring_577',['MQTTCLIENT_BAD_UTF8_STRING',['../_m_q_t_t_client_8h.html#a678a4744192de9c8dca220d9965809dd',1,'MQTTClient.h']]], + ['mqttclient_5fconnectoptions_5finitializer_578',['MQTTClient_connectOptions_initializer',['../_m_q_t_t_client_8h.html#aefd7c865f2641c8155b763fdf3061c25',1,'MQTTClient.h']]], + ['mqttclient_5fconnectoptions_5finitializer5_579',['MQTTClient_connectOptions_initializer5',['../_m_q_t_t_client_8h.html#a1f0c7608262ac9c00cb94e9c8f9fc984',1,'MQTTClient.h']]], + ['mqttclient_5fconnectoptions_5finitializer5_5fws_580',['MQTTClient_connectOptions_initializer5_ws',['../_m_q_t_t_client_8h.html#a8c37c9f77f0b67e2520c8f91acf1afea',1,'MQTTClient.h']]], + ['mqttclient_5fconnectoptions_5finitializer_5fws_581',['MQTTClient_connectOptions_initializer_ws',['../_m_q_t_t_client_8h.html#a0a98fda162a78ee8c8cbd7d9d39494f4',1,'MQTTClient.h']]], + ['mqttclient_5fcreateoptions_5finitializer_582',['MQTTClient_createOptions_initializer',['../_m_q_t_t_client_8h.html#a763e477a5aceb6aff279111c7693e691',1,'MQTTClient.h']]], + ['mqttclient_5fdisconnected_583',['MQTTCLIENT_DISCONNECTED',['../_m_q_t_t_client_8h.html#a561d053311cb492cf7226f419ee0d516',1,'MQTTClient.h']]], + ['mqttclient_5ffailure_584',['MQTTCLIENT_FAILURE',['../_m_q_t_t_client_8h.html#af33a6d6c0e8a6a747bf39638e0bba36b',1,'MQTTClient.h']]], + ['mqttclient_5finit_5foptions_5finitializer_585',['MQTTClient_init_options_initializer',['../_m_q_t_t_client_8h.html#ac17057c8c22c0717d3adf4e040440f73',1,'MQTTClient.h']]], + ['mqttclient_5fmax_5fmessages_5finflight_586',['MQTTCLIENT_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_client_8h.html#a8fc442fc2e9dfb422a163ab1fa02e0cb',1,'MQTTClient.h']]], + ['mqttclient_5fmessage_5finitializer_587',['MQTTClient_message_initializer',['../_m_q_t_t_client_8h.html#aa1fd995924d3df75959fcf57e87aefac',1,'MQTTClient.h']]], + ['mqttclient_5fnull_5fparameter_588',['MQTTCLIENT_NULL_PARAMETER',['../_m_q_t_t_client_8h.html#ac3232abd7f86bbba26faea0e2b132c3c',1,'MQTTClient.h']]], + ['mqttclient_5fpersistence_5fdefault_589',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5ferror_590',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fnone_591',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fuser_592',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fssl_5fnot_5fsupported_593',['MQTTCLIENT_SSL_NOT_SUPPORTED',['../_m_q_t_t_client_8h.html#a1c67fc83ba1a8f26236aa49b127bdb61',1,'MQTTClient.h']]], + ['mqttclient_5fssloptions_5finitializer_594',['MQTTClient_SSLOptions_initializer',['../_m_q_t_t_client_8h.html#ab9b2a2c6b52dbb2ac842ad99a9ce6d99',1,'MQTTClient.h']]], + ['mqttclient_5fsuccess_595',['MQTTCLIENT_SUCCESS',['../_m_q_t_t_client_8h.html#acba095704d79e5a1996389fa26203f73',1,'MQTTClient.h']]], + ['mqttclient_5ftopicname_5ftruncated_596',['MQTTCLIENT_TOPICNAME_TRUNCATED',['../_m_q_t_t_client_8h.html#a29afebfce0bdf6cda1e37abc0c4b6690',1,'MQTTClient.h']]], + ['mqttclient_5fwilloptions_5finitializer_597',['MQTTClient_willOptions_initializer',['../_m_q_t_t_client_8h.html#aae0811659c59f5dad0467544f91645eb',1,'MQTTClient.h']]], + ['mqttclient_5fwrong_5fmqtt_5fversion_598',['MQTTCLIENT_WRONG_MQTT_VERSION',['../_m_q_t_t_client_8h.html#ae9070d21de569f999a9575049cdd6da1',1,'MQTTClient.h']]], + ['mqttproperties_5finitializer_599',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], + ['mqttresponse_5finitializer_600',['MQTTResponse_initializer',['../_m_q_t_t_client_8h.html#a17f171200136bcfa933eb50ef21531a7',1,'MQTTClient.h']]], + ['mqttsubscribe_5foptions_5finitializer_601',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], + ['mqttversion_5f3_5f1_602',['MQTTVERSION_3_1',['../_m_q_t_t_client_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTClient.h']]], + ['mqttversion_5f3_5f1_5f1_603',['MQTTVERSION_3_1_1',['../_m_q_t_t_client_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTClient.h']]], + ['mqttversion_5f5_604',['MQTTVERSION_5',['../_m_q_t_t_client_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTClient.h']]], + ['mqttversion_5fdefault_605',['MQTTVERSION_DEFAULT',['../_m_q_t_t_client_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTClient.h']]] ]; diff --git a/docs/MQTTClient/html/search/enums_0.html b/docs/MQTTClient/html/search/enums_0.html index 9669700a..141fff57 100644 --- a/docs/MQTTClient/html/search/enums_0.html +++ b/docs/MQTTClient/html/search/enums_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/enums_0.js b/docs/MQTTClient/html/search/enums_0.js index e01dbe40..37a10dac 100644 --- a/docs/MQTTClient/html/search/enums_0.js +++ b/docs/MQTTClient/html/search/enums_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['mqttclient_5ftrace_5flevels_471',['MQTTCLIENT_TRACE_LEVELS',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09b',1,'MQTTClient.h']]], - ['mqttpropertycodes_472',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], - ['mqttpropertytypes_473',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], - ['mqttreasoncodes_474',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]] + ['mqttclient_5ftrace_5flevels_475',['MQTTCLIENT_TRACE_LEVELS',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09b',1,'MQTTClient.h']]], + ['mqttpropertycodes_476',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], + ['mqttpropertytypes_477',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], + ['mqttreasoncodes_478',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]] ]; diff --git a/docs/MQTTClient/html/search/enumvalues_0.html b/docs/MQTTClient/html/search/enumvalues_0.html index 92862489..0d131d95 100644 --- a/docs/MQTTClient/html/search/enumvalues_0.html +++ b/docs/MQTTClient/html/search/enumvalues_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/enumvalues_0.js b/docs/MQTTClient/html/search/enumvalues_0.js index 963ffd23..dc7c6ebb 100644 --- a/docs/MQTTClient/html/search/enumvalues_0.js +++ b/docs/MQTTClient/html/search/enumvalues_0.js @@ -1,89 +1,89 @@ var searchData= [ - ['mqttclient_5ftrace_5ferror_475',['MQTTCLIENT_TRACE_ERROR',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba6eefffc98c1ba698224ba351f12e6a91',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5ffatal_476',['MQTTCLIENT_TRACE_FATAL',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba35626cc4876d074c4c21f8c4f54fdf38',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5fmaximum_477',['MQTTCLIENT_TRACE_MAXIMUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba38a4c3c4e2fc99711793ee2815aee40c',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5fmedium_478',['MQTTCLIENT_TRACE_MEDIUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba4bb7e7221b59e9be4515f2182c03ea99',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5fminimum_479',['MQTTCLIENT_TRACE_MINIMUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09bacf029d9a231bd07e5e1a6f3bd0b6004e',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5fprotocol_480',['MQTTCLIENT_TRACE_PROTOCOL',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba29f21f77cf34ab2467520d7738fd8eb1',1,'MQTTClient.h']]], - ['mqttclient_5ftrace_5fsevere_481',['MQTTCLIENT_TRACE_SEVERE',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09baf060569bdbb4015cfce028937b4cfa69',1,'MQTTClient.h']]], - ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_482',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fdata_483',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fmethod_484',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcontent_5ftype_485',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcorrelation_5fdata_486',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_487',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fqos_488',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_489',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_490',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freason_5fstring_491',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freceive_5fmaximum_492',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_493',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_494',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5finformation_495',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5ftopic_496',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fretain_5favailable_497',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5fkeep_5falive_498',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5freference_499',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_500',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_501',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifier_502',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_503',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_504',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_505',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fuser_5fproperty_506',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_507',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_508',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbinary_5fdata_509',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbyte_510',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_511',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_512',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_513',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_514',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_515',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], - ['mqttreasoncode_5fadministrative_5faction_516',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fauthentication_5fmethod_517',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_518',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbanned_519',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_520',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fconnection_5frate_5fexceeded_521',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fcontinue_5fauthentication_522',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_523',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f0_524',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f1_525',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f2_526',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fimplementation_5fspecific_5ferror_527',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fkeep_5falive_5ftimeout_528',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmalformed_5fpacket_529',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmaximum_5fconnect_5ftime_530',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_531',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fmatching_5fsubscribers_532',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fsubscription_5ffound_533',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnormal_5fdisconnection_534',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnot_5fauthorized_535',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_536',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_537',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5ftoo_5flarge_538',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpayload_5fformat_5finvalid_539',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fprotocol_5ferror_540',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fqos_5fnot_5fsupported_541',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fquota_5fexceeded_542',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fre_5fauthenticate_543',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_544',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fretain_5fnot_5fsupported_545',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fbusy_546',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fmoved_547',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fshutting_5fdown_548',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5funavailable_549',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsession_5ftaken_5fover_550',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_551',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_552',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsuccess_553',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5falias_5finvalid_554',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5ffilter_5finvalid_555',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5fname_5finvalid_556',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funspecified_5ferror_557',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funsupported_5fprotocol_5fversion_558',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fuse_5fanother_5fserver_559',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_560',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]] + ['mqttclient_5ftrace_5ferror_479',['MQTTCLIENT_TRACE_ERROR',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba6eefffc98c1ba698224ba351f12e6a91',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5ffatal_480',['MQTTCLIENT_TRACE_FATAL',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba35626cc4876d074c4c21f8c4f54fdf38',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5fmaximum_481',['MQTTCLIENT_TRACE_MAXIMUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba38a4c3c4e2fc99711793ee2815aee40c',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5fmedium_482',['MQTTCLIENT_TRACE_MEDIUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba4bb7e7221b59e9be4515f2182c03ea99',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5fminimum_483',['MQTTCLIENT_TRACE_MINIMUM',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09bacf029d9a231bd07e5e1a6f3bd0b6004e',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5fprotocol_484',['MQTTCLIENT_TRACE_PROTOCOL',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09ba29f21f77cf34ab2467520d7738fd8eb1',1,'MQTTClient.h']]], + ['mqttclient_5ftrace_5fsevere_485',['MQTTCLIENT_TRACE_SEVERE',['../_m_q_t_t_client_8h.html#aa0ae95caa9c16d152b5036b1bac2e09baf060569bdbb4015cfce028937b4cfa69',1,'MQTTClient.h']]], + ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_486',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fdata_487',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fmethod_488',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcontent_5ftype_489',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcorrelation_5fdata_490',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_491',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fqos_492',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_493',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_494',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freason_5fstring_495',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freceive_5fmaximum_496',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_497',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_498',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5finformation_499',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5ftopic_500',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fretain_5favailable_501',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5fkeep_5falive_502',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5freference_503',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_504',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_505',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifier_506',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_507',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_508',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_509',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fuser_5fproperty_510',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_511',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_512',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbinary_5fdata_513',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbyte_514',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_515',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_516',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_517',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_518',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_519',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], + ['mqttreasoncode_5fadministrative_5faction_520',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fauthentication_5fmethod_521',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_522',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbanned_523',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_524',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fconnection_5frate_5fexceeded_525',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fcontinue_5fauthentication_526',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_527',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f0_528',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f1_529',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f2_530',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fimplementation_5fspecific_5ferror_531',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fkeep_5falive_5ftimeout_532',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmalformed_5fpacket_533',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmaximum_5fconnect_5ftime_534',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_535',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fmatching_5fsubscribers_536',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fsubscription_5ffound_537',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnormal_5fdisconnection_538',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnot_5fauthorized_539',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_540',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_541',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5ftoo_5flarge_542',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpayload_5fformat_5finvalid_543',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fprotocol_5ferror_544',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fqos_5fnot_5fsupported_545',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fquota_5fexceeded_546',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fre_5fauthenticate_547',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_548',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fretain_5fnot_5fsupported_549',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fbusy_550',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fmoved_551',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fshutting_5fdown_552',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5funavailable_553',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsession_5ftaken_5fover_554',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_555',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_556',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsuccess_557',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5falias_5finvalid_558',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5ffilter_5finvalid_559',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5fname_5finvalid_560',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funspecified_5ferror_561',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funsupported_5fprotocol_5fversion_562',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fuse_5fanother_5fserver_563',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_564',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]] ]; diff --git a/docs/MQTTClient/html/search/files_0.html b/docs/MQTTClient/html/search/files_0.html index 737608e1..9498842a 100644 --- a/docs/MQTTClient/html/search/files_0.html +++ b/docs/MQTTClient/html/search/files_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/files_0.js b/docs/MQTTClient/html/search/files_0.js index 162e4288..cc26d971 100644 --- a/docs/MQTTClient/html/search/files_0.js +++ b/docs/MQTTClient/html/search/files_0.js @@ -1,8 +1,8 @@ var searchData= [ - ['mqttclient_2eh_316',['MQTTClient.h',['../_m_q_t_t_client_8h.html',1,'']]], - ['mqttclientpersistence_2eh_317',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], - ['mqttproperties_2eh_318',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], - ['mqttreasoncodes_2eh_319',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], - ['mqttsubscribeopts_2eh_320',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]] + ['mqttclient_2eh_319',['MQTTClient.h',['../_m_q_t_t_client_8h.html',1,'']]], + ['mqttclientpersistence_2eh_320',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], + ['mqttproperties_2eh_321',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], + ['mqttreasoncodes_2eh_322',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], + ['mqttsubscribeopts_2eh_323',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/functions_0.html b/docs/MQTTClient/html/search/functions_0.html index e17c7111..eb4c5014 100644 --- a/docs/MQTTClient/html/search/functions_0.html +++ b/docs/MQTTClient/html/search/functions_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/functions_0.js b/docs/MQTTClient/html/search/functions_0.js index 592f0cb0..6273a922 100644 --- a/docs/MQTTClient/html/search/functions_0.js +++ b/docs/MQTTClient/html/search/functions_0.js @@ -1,54 +1,55 @@ var searchData= [ - ['mqttclient_5fconnect_321',['MQTTClient_connect',['../_m_q_t_t_client_8h.html#aaa8ae61cd65c9dc0846df10122d7bd4e',1,'MQTTClient.h']]], - ['mqttclient_5fconnect5_322',['MQTTClient_connect5',['../_m_q_t_t_client_8h.html#aa777f80cb3eec5610f976aff30b8c0d6',1,'MQTTClient.h']]], - ['mqttclient_5fcreate_323',['MQTTClient_create',['../_m_q_t_t_client_8h.html#a9a0518d9ca924d12c1329dbe3de5f2b6',1,'MQTTClient.h']]], - ['mqttclient_5fcreatewithoptions_324',['MQTTClient_createWithOptions',['../_m_q_t_t_client_8h.html#ade24f717a9b39d38b081e1d5e0db1661',1,'MQTTClient.h']]], - ['mqttclient_5fdestroy_325',['MQTTClient_destroy',['../_m_q_t_t_client_8h.html#ae700c3f5cfea3813264ce95e7c8cf498',1,'MQTTClient.h']]], - ['mqttclient_5fdisconnect_326',['MQTTClient_disconnect',['../_m_q_t_t_client_8h.html#a1e4d90c13a3c0705bc4a13bfe64e6525',1,'MQTTClient.h']]], - ['mqttclient_5fdisconnect5_327',['MQTTClient_disconnect5',['../_m_q_t_t_client_8h.html#a1762c469715b7f718c4e63a427e6c13c',1,'MQTTClient.h']]], - ['mqttclient_5ffree_328',['MQTTClient_free',['../_m_q_t_t_client_8h.html#a203b545c999beb6b825ec99b6aea79ab',1,'MQTTClient.h']]], - ['mqttclient_5ffreemessage_329',['MQTTClient_freeMessage',['../_m_q_t_t_client_8h.html#abd8abde4f39d3e689029de27f7a98a65',1,'MQTTClient.h']]], - ['mqttclient_5fgetpendingdeliverytokens_330',['MQTTClient_getPendingDeliveryTokens',['../_m_q_t_t_client_8h.html#a2a617c6b0492c04a4ddea592f5e53604',1,'MQTTClient.h']]], - ['mqttclient_5fgetversioninfo_331',['MQTTClient_getVersionInfo',['../_m_q_t_t_client_8h.html#abe842456c914ce9201d277a972cc085e',1,'MQTTClient.h']]], - ['mqttclient_5fglobal_5finit_332',['MQTTClient_global_init',['../_m_q_t_t_client_8h.html#a21804ede1a506d1d69a472bc30acc8ba',1,'MQTTClient.h']]], - ['mqttclient_5fisconnected_333',['MQTTClient_isConnected',['../_m_q_t_t_client_8h.html#a6e8231e8c47f6f67f7ebbb5dcb4c69c0',1,'MQTTClient.h']]], - ['mqttclient_5fpublish_334',['MQTTClient_publish',['../_m_q_t_t_client_8h.html#afe9c34013c3511b8ef6cd36bf703678d',1,'MQTTClient.h']]], - ['mqttclient_5fpublish5_335',['MQTTClient_publish5',['../_m_q_t_t_client_8h.html#a8148186cc7683a6bb57f621653df51df',1,'MQTTClient.h']]], - ['mqttclient_5fpublishmessage_336',['MQTTClient_publishMessage',['../_m_q_t_t_client_8h.html#ace320b8a92c7087d9dd5cf242d50389d',1,'MQTTClient.h']]], - ['mqttclient_5fpublishmessage5_337',['MQTTClient_publishMessage5',['../_m_q_t_t_client_8h.html#a362042ce973c012bad6a1aa3b5984f5d',1,'MQTTClient.h']]], - ['mqttclient_5freceive_338',['MQTTClient_receive',['../_m_q_t_t_client_8h.html#a4c2df88d00a3dadd510a8cb774739366',1,'MQTTClient.h']]], - ['mqttclient_5fsetcallbacks_339',['MQTTClient_setCallbacks',['../_m_q_t_t_client_8h.html#aad27d07782991a4937ebf2f39a021f83',1,'MQTTClient.h']]], - ['mqttclient_5fsetcommandtimeout_340',['MQTTClient_setCommandTimeout',['../_m_q_t_t_client_8h.html#a96067a2fb74d2a61c7e93015629548e0',1,'MQTTClient.h']]], - ['mqttclient_5fsetdisconnected_341',['MQTTClient_setDisconnected',['../_m_q_t_t_client_8h.html#a8adea083a162735d5c7592160088eea0',1,'MQTTClient.h']]], - ['mqttclient_5fsetpublished_342',['MQTTClient_setPublished',['../_m_q_t_t_client_8h.html#a9f13911351a3de6b1ebdabd4cb4116ba',1,'MQTTClient.h']]], - ['mqttclient_5fsettracecallback_343',['MQTTClient_setTraceCallback',['../_m_q_t_t_client_8h.html#a22870f94aa4cb1827626612f1ded7c69',1,'MQTTClient.h']]], - ['mqttclient_5fsettracelevel_344',['MQTTClient_setTraceLevel',['../_m_q_t_t_client_8h.html#a4dfa35d29db54b10b15b8ac2d9a778be',1,'MQTTClient.h']]], - ['mqttclient_5fstrerror_345',['MQTTClient_strerror',['../_m_q_t_t_client_8h.html#a9defda2979f6fedaae64fd85f5c2f617',1,'MQTTClient.h']]], - ['mqttclient_5fsubscribe_346',['MQTTClient_subscribe',['../_m_q_t_t_client_8h.html#a9c1c28258f0d5c6a44ff53a98618f5f3',1,'MQTTClient.h']]], - ['mqttclient_5fsubscribe5_347',['MQTTClient_subscribe5',['../_m_q_t_t_client_8h.html#af35ab7375435f7b6388c5ff4610dad3d',1,'MQTTClient.h']]], - ['mqttclient_5fsubscribemany_348',['MQTTClient_subscribeMany',['../_m_q_t_t_client_8h.html#a92fa1c13f3db8399e042fbdbdfb692b3',1,'MQTTClient.h']]], - ['mqttclient_5fsubscribemany5_349',['MQTTClient_subscribeMany5',['../_m_q_t_t_client_8h.html#a5390c2402f135c12826ffbf6fc261f7c',1,'MQTTClient.h']]], - ['mqttclient_5funsubscribe_350',['MQTTClient_unsubscribe',['../_m_q_t_t_client_8h.html#aa8731be3dbc6a25f41f037f8bbbb054b',1,'MQTTClient.h']]], - ['mqttclient_5funsubscribe5_351',['MQTTClient_unsubscribe5',['../_m_q_t_t_client_8h.html#a58356c13867f18df60fd4c7ec9457c48',1,'MQTTClient.h']]], - ['mqttclient_5funsubscribemany_352',['MQTTClient_unsubscribeMany',['../_m_q_t_t_client_8h.html#a50abbce720d50b9f84b97ff9fa1f546d',1,'MQTTClient.h']]], - ['mqttclient_5funsubscribemany5_353',['MQTTClient_unsubscribeMany5',['../_m_q_t_t_client_8h.html#a46bdb532d2153110ccffb2f0748d1ba5',1,'MQTTClient.h']]], - ['mqttclient_5fwaitforcompletion_354',['MQTTClient_waitForCompletion',['../_m_q_t_t_client_8h.html#a83807ec81fe8c3941e368ab329d43067',1,'MQTTClient.h']]], - ['mqttclient_5fyield_355',['MQTTClient_yield',['../_m_q_t_t_client_8h.html#a8ad3d29864a9ca08202b0832e0f6678e',1,'MQTTClient.h']]], - ['mqttproperties_5fadd_356',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], - ['mqttproperties_5fcopy_357',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], - ['mqttproperties_5ffree_358',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalue_359',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalueat_360',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetproperty_361',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetpropertyat_362',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], - ['mqttproperties_5fhasproperty_363',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], - ['mqttproperties_5flen_364',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], - ['mqttproperties_5fpropertycount_365',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], - ['mqttproperties_5fread_366',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], - ['mqttproperties_5fwrite_367',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], - ['mqttproperty_5fgettype_368',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], - ['mqttpropertyname_369',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], - ['mqttreasoncode_5ftostring_370',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]], - ['mqttresponse_5ffree_371',['MQTTResponse_free',['../_m_q_t_t_client_8h.html#a01bd2c5f98ec5c0636a106db33f2b01b',1,'MQTTClient.h']]] + ['mqttclient_5fconnect_324',['MQTTClient_connect',['../_m_q_t_t_client_8h.html#aaa8ae61cd65c9dc0846df10122d7bd4e',1,'MQTTClient.h']]], + ['mqttclient_5fconnect5_325',['MQTTClient_connect5',['../_m_q_t_t_client_8h.html#aa777f80cb3eec5610f976aff30b8c0d6',1,'MQTTClient.h']]], + ['mqttclient_5fcreate_326',['MQTTClient_create',['../_m_q_t_t_client_8h.html#a9a0518d9ca924d12c1329dbe3de5f2b6',1,'MQTTClient.h']]], + ['mqttclient_5fcreatewithoptions_327',['MQTTClient_createWithOptions',['../_m_q_t_t_client_8h.html#ade24f717a9b39d38b081e1d5e0db1661',1,'MQTTClient.h']]], + ['mqttclient_5fdestroy_328',['MQTTClient_destroy',['../_m_q_t_t_client_8h.html#ae700c3f5cfea3813264ce95e7c8cf498',1,'MQTTClient.h']]], + ['mqttclient_5fdisconnect_329',['MQTTClient_disconnect',['../_m_q_t_t_client_8h.html#a1e4d90c13a3c0705bc4a13bfe64e6525',1,'MQTTClient.h']]], + ['mqttclient_5fdisconnect5_330',['MQTTClient_disconnect5',['../_m_q_t_t_client_8h.html#a1762c469715b7f718c4e63a427e6c13c',1,'MQTTClient.h']]], + ['mqttclient_5ffree_331',['MQTTClient_free',['../_m_q_t_t_client_8h.html#a203b545c999beb6b825ec99b6aea79ab',1,'MQTTClient.h']]], + ['mqttclient_5ffreemessage_332',['MQTTClient_freeMessage',['../_m_q_t_t_client_8h.html#abd8abde4f39d3e689029de27f7a98a65',1,'MQTTClient.h']]], + ['mqttclient_5fgetpendingdeliverytokens_333',['MQTTClient_getPendingDeliveryTokens',['../_m_q_t_t_client_8h.html#a2a617c6b0492c04a4ddea592f5e53604',1,'MQTTClient.h']]], + ['mqttclient_5fgetversioninfo_334',['MQTTClient_getVersionInfo',['../_m_q_t_t_client_8h.html#abe842456c914ce9201d277a972cc085e',1,'MQTTClient.h']]], + ['mqttclient_5fglobal_5finit_335',['MQTTClient_global_init',['../_m_q_t_t_client_8h.html#a21804ede1a506d1d69a472bc30acc8ba',1,'MQTTClient.h']]], + ['mqttclient_5fisconnected_336',['MQTTClient_isConnected',['../_m_q_t_t_client_8h.html#a6e8231e8c47f6f67f7ebbb5dcb4c69c0',1,'MQTTClient.h']]], + ['mqttclient_5fmalloc_337',['MQTTClient_malloc',['../_m_q_t_t_client_8h.html#a9a6a07529e252574db1f95d40ccc0784',1,'MQTTClient.h']]], + ['mqttclient_5fpublish_338',['MQTTClient_publish',['../_m_q_t_t_client_8h.html#afe9c34013c3511b8ef6cd36bf703678d',1,'MQTTClient.h']]], + ['mqttclient_5fpublish5_339',['MQTTClient_publish5',['../_m_q_t_t_client_8h.html#a8148186cc7683a6bb57f621653df51df',1,'MQTTClient.h']]], + ['mqttclient_5fpublishmessage_340',['MQTTClient_publishMessage',['../_m_q_t_t_client_8h.html#ace320b8a92c7087d9dd5cf242d50389d',1,'MQTTClient.h']]], + ['mqttclient_5fpublishmessage5_341',['MQTTClient_publishMessage5',['../_m_q_t_t_client_8h.html#a362042ce973c012bad6a1aa3b5984f5d',1,'MQTTClient.h']]], + ['mqttclient_5freceive_342',['MQTTClient_receive',['../_m_q_t_t_client_8h.html#a4c2df88d00a3dadd510a8cb774739366',1,'MQTTClient.h']]], + ['mqttclient_5fsetcallbacks_343',['MQTTClient_setCallbacks',['../_m_q_t_t_client_8h.html#aad27d07782991a4937ebf2f39a021f83',1,'MQTTClient.h']]], + ['mqttclient_5fsetcommandtimeout_344',['MQTTClient_setCommandTimeout',['../_m_q_t_t_client_8h.html#a96067a2fb74d2a61c7e93015629548e0',1,'MQTTClient.h']]], + ['mqttclient_5fsetdisconnected_345',['MQTTClient_setDisconnected',['../_m_q_t_t_client_8h.html#a8adea083a162735d5c7592160088eea0',1,'MQTTClient.h']]], + ['mqttclient_5fsetpublished_346',['MQTTClient_setPublished',['../_m_q_t_t_client_8h.html#a9f13911351a3de6b1ebdabd4cb4116ba',1,'MQTTClient.h']]], + ['mqttclient_5fsettracecallback_347',['MQTTClient_setTraceCallback',['../_m_q_t_t_client_8h.html#a22870f94aa4cb1827626612f1ded7c69',1,'MQTTClient.h']]], + ['mqttclient_5fsettracelevel_348',['MQTTClient_setTraceLevel',['../_m_q_t_t_client_8h.html#a4dfa35d29db54b10b15b8ac2d9a778be',1,'MQTTClient.h']]], + ['mqttclient_5fstrerror_349',['MQTTClient_strerror',['../_m_q_t_t_client_8h.html#a9defda2979f6fedaae64fd85f5c2f617',1,'MQTTClient.h']]], + ['mqttclient_5fsubscribe_350',['MQTTClient_subscribe',['../_m_q_t_t_client_8h.html#a9c1c28258f0d5c6a44ff53a98618f5f3',1,'MQTTClient.h']]], + ['mqttclient_5fsubscribe5_351',['MQTTClient_subscribe5',['../_m_q_t_t_client_8h.html#af35ab7375435f7b6388c5ff4610dad3d',1,'MQTTClient.h']]], + ['mqttclient_5fsubscribemany_352',['MQTTClient_subscribeMany',['../_m_q_t_t_client_8h.html#a92fa1c13f3db8399e042fbdbdfb692b3',1,'MQTTClient.h']]], + ['mqttclient_5fsubscribemany5_353',['MQTTClient_subscribeMany5',['../_m_q_t_t_client_8h.html#a5390c2402f135c12826ffbf6fc261f7c',1,'MQTTClient.h']]], + ['mqttclient_5funsubscribe_354',['MQTTClient_unsubscribe',['../_m_q_t_t_client_8h.html#aa8731be3dbc6a25f41f037f8bbbb054b',1,'MQTTClient.h']]], + ['mqttclient_5funsubscribe5_355',['MQTTClient_unsubscribe5',['../_m_q_t_t_client_8h.html#a58356c13867f18df60fd4c7ec9457c48',1,'MQTTClient.h']]], + ['mqttclient_5funsubscribemany_356',['MQTTClient_unsubscribeMany',['../_m_q_t_t_client_8h.html#a50abbce720d50b9f84b97ff9fa1f546d',1,'MQTTClient.h']]], + ['mqttclient_5funsubscribemany5_357',['MQTTClient_unsubscribeMany5',['../_m_q_t_t_client_8h.html#a46bdb532d2153110ccffb2f0748d1ba5',1,'MQTTClient.h']]], + ['mqttclient_5fwaitforcompletion_358',['MQTTClient_waitForCompletion',['../_m_q_t_t_client_8h.html#a83807ec81fe8c3941e368ab329d43067',1,'MQTTClient.h']]], + ['mqttclient_5fyield_359',['MQTTClient_yield',['../_m_q_t_t_client_8h.html#a8ad3d29864a9ca08202b0832e0f6678e',1,'MQTTClient.h']]], + ['mqttproperties_5fadd_360',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], + ['mqttproperties_5fcopy_361',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], + ['mqttproperties_5ffree_362',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalue_363',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalueat_364',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetproperty_365',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetpropertyat_366',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], + ['mqttproperties_5fhasproperty_367',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], + ['mqttproperties_5flen_368',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], + ['mqttproperties_5fpropertycount_369',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], + ['mqttproperties_5fread_370',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], + ['mqttproperties_5fwrite_371',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], + ['mqttproperty_5fgettype_372',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], + ['mqttpropertyname_373',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], + ['mqttreasoncode_5ftostring_374',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]], + ['mqttresponse_5ffree_375',['MQTTResponse_free',['../_m_q_t_t_client_8h.html#a01bd2c5f98ec5c0636a106db33f2b01b',1,'MQTTClient.h']]] ]; diff --git a/docs/MQTTClient/html/search/mag_sel.png b/docs/MQTTClient/html/search/mag_sel.png deleted file mode 100644 index 39c0ed52..00000000 Binary files a/docs/MQTTClient/html/search/mag_sel.png and /dev/null differ diff --git a/docs/MQTTClient/html/search/mag_sel.svg b/docs/MQTTClient/html/search/mag_sel.svg new file mode 100644 index 00000000..03626f64 --- /dev/null +++ b/docs/MQTTClient/html/search/mag_sel.svg @@ -0,0 +1,74 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/docs/MQTTClient/html/search/nomatches.html b/docs/MQTTClient/html/search/nomatches.html index 43773208..2b9360b6 100644 --- a/docs/MQTTClient/html/search/nomatches.html +++ b/docs/MQTTClient/html/search/nomatches.html @@ -1,5 +1,6 @@ - + + diff --git a/docs/MQTTClient/html/search/pages_0.html b/docs/MQTTClient/html/search/pages_0.html index 9a6a29ad..8517b48f 100644 --- a/docs/MQTTClient/html/search/pages_0.html +++ b/docs/MQTTClient/html/search/pages_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/pages_0.js b/docs/MQTTClient/html/search/pages_0.js index afc857c6..c868194a 100644 --- a/docs/MQTTClient/html/search/pages_0.js +++ b/docs/MQTTClient/html/search/pages_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['asynchronous_20vs_20synchronous_20client_20applications_602',['Asynchronous vs synchronous client applications',['../async.html',1,'']]], - ['asynchronous_20publication_20example_603',['Asynchronous publication example',['../pubasync.html',1,'']]], - ['asynchronous_20subscription_20example_604',['Asynchronous subscription example',['../subasync.html',1,'']]] + ['asynchronous_20publication_20example_606',['Asynchronous publication example',['../pubasync.html',1,'']]], + ['asynchronous_20subscription_20example_607',['Asynchronous subscription example',['../subasync.html',1,'']]], + ['asynchronous_20vs_20synchronous_20client_20applications_608',['Asynchronous vs synchronous client applications',['../async.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/pages_1.html b/docs/MQTTClient/html/search/pages_1.html index 132ee038..a0fb6796 100644 --- a/docs/MQTTClient/html/search/pages_1.html +++ b/docs/MQTTClient/html/search/pages_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/pages_1.js b/docs/MQTTClient/html/search/pages_1.js index 711c2aa1..a0d6e9a9 100644 --- a/docs/MQTTClient/html/search/pages_1.js +++ b/docs/MQTTClient/html/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['callbacks_605',['Callbacks',['../callbacks.html',1,'']]] + ['callbacks_609',['Callbacks',['../callbacks.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/pages_2.html b/docs/MQTTClient/html/search/pages_2.html index 6109d470..084edfd0 100644 --- a/docs/MQTTClient/html/search/pages_2.html +++ b/docs/MQTTClient/html/search/pages_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/pages_2.js b/docs/MQTTClient/html/search/pages_2.js index 03d713e1..44d33e92 100644 --- a/docs/MQTTClient/html/search/pages_2.js +++ b/docs/MQTTClient/html/search/pages_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['mqtt_20client_20library_20for_20c_20_28mqttclient_29_606',['MQTT Client library for C (MQTTClient)',['../index.html',1,'']]] + ['mqtt_20client_20library_20for_20c_20_28mqttclient_29_610',['MQTT Client library for C (MQTTClient)',['../index.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/pages_3.html b/docs/MQTTClient/html/search/pages_3.html index 54e8ba9e..c0b45b0f 100644 --- a/docs/MQTTClient/html/search/pages_3.html +++ b/docs/MQTTClient/html/search/pages_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/pages_3.js b/docs/MQTTClient/html/search/pages_3.js index 149d7566..b9c13cc2 100644 --- a/docs/MQTTClient/html/search/pages_3.js +++ b/docs/MQTTClient/html/search/pages_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['quality_20of_20service_607',['Quality of service',['../qos.html',1,'']]] + ['quality_20of_20service_611',['Quality of service',['../qos.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/pages_4.html b/docs/MQTTClient/html/search/pages_4.html index 1ab6c5a9..0f05c2e7 100644 --- a/docs/MQTTClient/html/search/pages_4.html +++ b/docs/MQTTClient/html/search/pages_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/pages_4.js b/docs/MQTTClient/html/search/pages_4.js index a69c8559..20178a5f 100644 --- a/docs/MQTTClient/html/search/pages_4.js +++ b/docs/MQTTClient/html/search/pages_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['synchronous_20publication_20example_608',['Synchronous publication example',['../pubsync.html',1,'']]], - ['subscription_20wildcards_609',['Subscription wildcards',['../wildcard.html',1,'']]] + ['subscription_20wildcards_612',['Subscription wildcards',['../wildcard.html',1,'']]], + ['synchronous_20publication_20example_613',['Synchronous publication example',['../pubsync.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/pages_5.html b/docs/MQTTClient/html/search/pages_5.html index b0317638..27e2b6c7 100644 --- a/docs/MQTTClient/html/search/pages_5.html +++ b/docs/MQTTClient/html/search/pages_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/pages_5.js b/docs/MQTTClient/html/search/pages_5.js index ae930b00..dc926329 100644 --- a/docs/MQTTClient/html/search/pages_5.js +++ b/docs/MQTTClient/html/search/pages_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['tracing_610',['Tracing',['../tracing.html',1,'']]] + ['tracing_614',['Tracing',['../tracing.html',1,'']]] ]; diff --git a/docs/MQTTClient/html/search/search.css b/docs/MQTTClient/html/search/search.css index 3cf9df94..9074198f 100644 --- a/docs/MQTTClient/html/search/search.css +++ b/docs/MQTTClient/html/search/search.css @@ -1,98 +1,82 @@ /*---------------- Search Box */ -#FSearchBox { - float: left; -} - #MSearchBox { white-space : nowrap; - float: none; - margin-top: 8px; - right: 0px; - width: 170px; - height: 24px; + background: white; + border-radius: 0.65em; + box-shadow: inset 0.5px 0.5px 3px 0px #555; z-index: 102; } -#MSearchBox .left -{ - display:block; - position:absolute; - left:10px; - width:20px; - height:19px; - background:url('search_l.png') no-repeat; - background-position:right; +#MSearchBox .left { + display: inline-block; + vertical-align: middle; + height: 1.4em; } #MSearchSelect { - display:block; - position:absolute; - width:20px; - height:19px; -} - -.left #MSearchSelect { - left:4px; -} - -.right #MSearchSelect { - right:5px; + display: inline-block; + vertical-align: middle; + height: 1.4em; + padding: 0 0 0 0.3em; + margin: 0; } #MSearchField { - display:block; - position:absolute; - height:19px; - background:url('search_m.png') repeat-x; + display: inline-block; + vertical-align: middle; + width: 7.5em; + height: 1.1em; + margin: 0 0.15em; + padding: 0; + line-height: 1em; border:none; - width:115px; - margin-left:20px; - padding-left:4px; color: #909090; outline: none; - font: 9pt Arial, Verdana, sans-serif; + font-family: Arial, Verdana, sans-serif; -webkit-border-radius: 0px; + border-radius: 0px; + background: none; } -#FSearchBox #MSearchField { - margin-left:15px; -} #MSearchBox .right { - display:block; - position:absolute; - right:10px; - top:8px; - width:20px; - height:19px; - background:url('search_r.png') no-repeat; - background-position:left; + display: inline-block; + vertical-align: middle; + width: 1.4em; + height: 1.4em; } #MSearchClose { display: none; - position: absolute; - top: 4px; + font-size: inherit; background : none; border: none; - margin: 0px 4px 0px 0px; - padding: 0px 0px; + margin: 0; + padding: 0; outline: none; + } -.left #MSearchClose { - left: 6px; -} - -.right #MSearchClose { - right: 2px; +#MSearchCloseImg { + height: 1.4em; + padding: 0.3em; + margin: 0; } .MSearchBoxActive #MSearchField { color: #000000; } +#main-menu > li:last-child { + /* This
  • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + /*---------------- Search filter selection */ #MSearchSelectWindow { @@ -220,19 +204,21 @@ a.SRScope:focus, a.SRScope:active { span.SRScope { padding-left: 4px; + font-family: Arial, Verdana, sans-serif; } .SRPage .SRStatus { padding: 2px 5px; font-size: 8pt; font-style: italic; + font-family: Arial, Verdana, sans-serif; } .SRResult { display: none; } -DIV.searchresults { +div.searchresults { margin-left: 10px; margin-right: 10px; } diff --git a/docs/MQTTClient/html/search/search.js b/docs/MQTTClient/html/search/search.js index a554ab9c..fb226f73 100644 --- a/docs/MQTTClient/html/search/search.js +++ b/docs/MQTTClient/html/search/search.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function convertToId(search) { @@ -79,9 +80,10 @@ function getYPos(item) storing this instance. Is needed to be able to set timeouts. resultPath - path to use for external files */ -function SearchBox(name, resultsPath, inFrame, label) +function SearchBox(name, resultsPath, inFrame, label, extension) { if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); } + if (!extension || extension == "") { extension = ".html"; } // ---------- Instance variables this.name = name; @@ -96,6 +98,7 @@ function SearchBox(name, resultsPath, inFrame, label) this.searchActive = false; this.insideFrame = inFrame; this.searchLabel = label; + this.extension = extension; // ----------- DOM Elements @@ -200,10 +203,9 @@ function SearchBox(name, resultsPath, inFrame, label) } return; } - else if (window.frames.MSearchResults.searchResults) + else { - var elem = window.frames.MSearchResults.searchResults.NavNext(0); - if (elem) elem.focus(); + window.frames.MSearchResults.postMessage("take_focus", "*"); } } else if (e.keyCode==27) // Escape out of the search field @@ -347,13 +349,13 @@ function SearchBox(name, resultsPath, inFrame, label) if (idx!=-1) { var hexCode=idx.toString(16); - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + this.extension; resultsPageWithSearch = resultsPage+'?'+escape(searchValue); hasResultsPage = true; } else // nothing available for this search term { - resultsPage = this.resultsPath + '/nomatches.html'; + resultsPage = this.resultsPath + '/nomatches' + this.extension; resultsPageWithSearch = resultsPage; hasResultsPage = false; } @@ -364,7 +366,7 @@ function SearchBox(name, resultsPath, inFrame, label) if (domPopupSearchResultsWindow.style.display!='block') { var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline'; + this.DOMSearchClose().style.display = 'inline-block'; if (this.insideFrame) { var domPopupSearchResults = this.DOMPopupSearchResults(); @@ -439,12 +441,12 @@ function SearchResults(name) while (element && element!=parentElement) { - if (element.nodeName == 'DIV' && element.className == 'SRChildren') + if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') { return element; } - if (element.nodeName == 'DIV' && element.hasChildNodes()) + if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) { element = element.firstChild; } diff --git a/docs/MQTTClient/html/search/typedefs_0.html b/docs/MQTTClient/html/search/typedefs_0.html index 376db479..a4684c4a 100644 --- a/docs/MQTTClient/html/search/typedefs_0.html +++ b/docs/MQTTClient/html/search/typedefs_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/typedefs_0.js b/docs/MQTTClient/html/search/typedefs_0.js index f2296307..b6722186 100644 --- a/docs/MQTTClient/html/search/typedefs_0.js +++ b/docs/MQTTClient/html/search/typedefs_0.js @@ -1,17 +1,17 @@ var searchData= [ - ['mqttclient_449',['MQTTClient',['../_m_q_t_t_client_8h.html#a7649e3913f9a216424d296f88a969c59',1,'MQTTClient.h']]], - ['mqttclient_5fconnectionlost_450',['MQTTClient_connectionLost',['../_m_q_t_t_client_8h.html#a6bb253f16754e7cc81798c9fda0e36cf',1,'MQTTClient.h']]], - ['mqttclient_5fdeliverycomplete_451',['MQTTClient_deliveryComplete',['../_m_q_t_t_client_8h.html#abef83794d8252551ed248cde6eb845a6',1,'MQTTClient.h']]], - ['mqttclient_5fdeliverytoken_452',['MQTTClient_deliveryToken',['../_m_q_t_t_client_8h.html#a73e49030fd8b7074aa1aa45669b7fe8d',1,'MQTTClient.h']]], - ['mqttclient_5fdisconnected_453',['MQTTClient_disconnected',['../_m_q_t_t_client_8h.html#a41108d4cccb67a9d6884ebae52211c46',1,'MQTTClient.h']]], - ['mqttclient_5fmessagearrived_454',['MQTTClient_messageArrived',['../_m_q_t_t_client_8h.html#aa42130dd069e7e949bcab37b6dce64a5',1,'MQTTClient.h']]], - ['mqttclient_5fpublished_455',['MQTTClient_published',['../_m_q_t_t_client_8h.html#a6c3f51e50e2c47328eee1b0c920ed103',1,'MQTTClient.h']]], - ['mqttclient_5ftoken_456',['MQTTClient_token',['../_m_q_t_t_client_8h.html#a8b2beb5227708f8127b666f5a7fc41b3',1,'MQTTClient.h']]], - ['mqttclient_5ftracecallback_457',['MQTTClient_traceCallback',['../_m_q_t_t_client_8h.html#afa5758290a1162e5135bca97bbfd5774',1,'MQTTClient.h']]], - ['mqttpersistence_5fafterread_458',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], - ['mqttpersistence_5fbeforewrite_459',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], - ['mqttproperties_460',['MQTTProperties',['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties.h']]], - ['mqttresponse_461',['MQTTResponse',['../_m_q_t_t_client_8h.html#a0d31d490adbe677902b99eca127bee56',1,'MQTTClient.h']]], - ['mqttsubscribe_5foptions_462',['MQTTSubscribe_options',['../_m_q_t_t_subscribe_opts_8h.html#aa68db3eaed272ae1aaea294401079d8a',1,'MQTTSubscribeOpts.h']]] + ['mqttclient_453',['MQTTClient',['../_m_q_t_t_client_8h.html#a7649e3913f9a216424d296f88a969c59',1,'MQTTClient.h']]], + ['mqttclient_5fconnectionlost_454',['MQTTClient_connectionLost',['../_m_q_t_t_client_8h.html#a6bb253f16754e7cc81798c9fda0e36cf',1,'MQTTClient.h']]], + ['mqttclient_5fdeliverycomplete_455',['MQTTClient_deliveryComplete',['../_m_q_t_t_client_8h.html#abef83794d8252551ed248cde6eb845a6',1,'MQTTClient.h']]], + ['mqttclient_5fdeliverytoken_456',['MQTTClient_deliveryToken',['../_m_q_t_t_client_8h.html#a73e49030fd8b7074aa1aa45669b7fe8d',1,'MQTTClient.h']]], + ['mqttclient_5fdisconnected_457',['MQTTClient_disconnected',['../_m_q_t_t_client_8h.html#a41108d4cccb67a9d6884ebae52211c46',1,'MQTTClient.h']]], + ['mqttclient_5fmessagearrived_458',['MQTTClient_messageArrived',['../_m_q_t_t_client_8h.html#aa42130dd069e7e949bcab37b6dce64a5',1,'MQTTClient.h']]], + ['mqttclient_5fpublished_459',['MQTTClient_published',['../_m_q_t_t_client_8h.html#a6c3f51e50e2c47328eee1b0c920ed103',1,'MQTTClient.h']]], + ['mqttclient_5ftoken_460',['MQTTClient_token',['../_m_q_t_t_client_8h.html#a8b2beb5227708f8127b666f5a7fc41b3',1,'MQTTClient.h']]], + ['mqttclient_5ftracecallback_461',['MQTTClient_traceCallback',['../_m_q_t_t_client_8h.html#afa5758290a1162e5135bca97bbfd5774',1,'MQTTClient.h']]], + ['mqttpersistence_5fafterread_462',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], + ['mqttpersistence_5fbeforewrite_463',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], + ['mqttproperties_464',['MQTTProperties',['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties.h']]], + ['mqttresponse_465',['MQTTResponse',['../_m_q_t_t_client_8h.html#a0d31d490adbe677902b99eca127bee56',1,'MQTTClient.h']]], + ['mqttsubscribe_5foptions_466',['MQTTSubscribe_options',['../_m_q_t_t_subscribe_opts_8h.html#aa68db3eaed272ae1aaea294401079d8a',1,'MQTTSubscribeOpts.h']]] ]; diff --git a/docs/MQTTClient/html/search/typedefs_1.html b/docs/MQTTClient/html/search/typedefs_1.html index 9b8bf72f..46cf01e6 100644 --- a/docs/MQTTClient/html/search/typedefs_1.html +++ b/docs/MQTTClient/html/search/typedefs_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/typedefs_1.js b/docs/MQTTClient/html/search/typedefs_1.js index fb54824b..951139af 100644 --- a/docs/MQTTClient/html/search/typedefs_1.js +++ b/docs/MQTTClient/html/search/typedefs_1.js @@ -1,11 +1,11 @@ var searchData= [ - ['persistence_5fclear_463',['Persistence_clear',['../_m_q_t_t_client_persistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], - ['persistence_5fclose_464',['Persistence_close',['../_m_q_t_t_client_persistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], - ['persistence_5fcontainskey_465',['Persistence_containskey',['../_m_q_t_t_client_persistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], - ['persistence_5fget_466',['Persistence_get',['../_m_q_t_t_client_persistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], - ['persistence_5fkeys_467',['Persistence_keys',['../_m_q_t_t_client_persistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], - ['persistence_5fopen_468',['Persistence_open',['../_m_q_t_t_client_persistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], - ['persistence_5fput_469',['Persistence_put',['../_m_q_t_t_client_persistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], - ['persistence_5fremove_470',['Persistence_remove',['../_m_q_t_t_client_persistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]] + ['persistence_5fclear_467',['Persistence_clear',['../_m_q_t_t_client_persistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], + ['persistence_5fclose_468',['Persistence_close',['../_m_q_t_t_client_persistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], + ['persistence_5fcontainskey_469',['Persistence_containskey',['../_m_q_t_t_client_persistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], + ['persistence_5fget_470',['Persistence_get',['../_m_q_t_t_client_persistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], + ['persistence_5fkeys_471',['Persistence_keys',['../_m_q_t_t_client_persistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], + ['persistence_5fopen_472',['Persistence_open',['../_m_q_t_t_client_persistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], + ['persistence_5fput_473',['Persistence_put',['../_m_q_t_t_client_persistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], + ['persistence_5fremove_474',['Persistence_remove',['../_m_q_t_t_client_persistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]] ]; diff --git a/docs/MQTTClient/html/search/variables_0.html b/docs/MQTTClient/html/search/variables_0.html index bf3eba5c..1e477c08 100644 --- a/docs/MQTTClient/html/search/variables_0.html +++ b/docs/MQTTClient/html/search/variables_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_0.js b/docs/MQTTClient/html/search/variables_0.js index dfabb735..45f2029d 100644 --- a/docs/MQTTClient/html/search/variables_0.js +++ b/docs/MQTTClient/html/search/variables_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['array_372',['array',['../struct_m_q_t_t_properties.html#a3ac4c38b423393c1553dcf8b71e7dd58',1,'MQTTProperties']]] + ['array_376',['array',['../struct_m_q_t_t_properties.html#a3ac4c38b423393c1553dcf8b71e7dd58',1,'MQTTProperties']]] ]; diff --git a/docs/MQTTClient/html/search/variables_1.html b/docs/MQTTClient/html/search/variables_1.html index 49fe59a1..ea73d9a4 100644 --- a/docs/MQTTClient/html/search/variables_1.html +++ b/docs/MQTTClient/html/search/variables_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_1.js b/docs/MQTTClient/html/search/variables_1.js index 406b3903..5c2d1421 100644 --- a/docs/MQTTClient/html/search/variables_1.js +++ b/docs/MQTTClient/html/search/variables_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['binarypwd_373',['binarypwd',['../struct_m_q_t_t_client__connect_options.html#ae7280d284792990b5d8f6f29d4e0b113',1,'MQTTClient_connectOptions']]], - ['byte_374',['byte',['../struct_m_q_t_t_property.html#a1581cde4f73c9a797ae1e7afcc1bb3de',1,'MQTTProperty']]] + ['binarypwd_377',['binarypwd',['../struct_m_q_t_t_client__connect_options.html#ae7280d284792990b5d8f6f29d4e0b113',1,'MQTTClient_connectOptions']]], + ['byte_378',['byte',['../struct_m_q_t_t_property.html#a1581cde4f73c9a797ae1e7afcc1bb3de',1,'MQTTProperty']]] ]; diff --git a/docs/MQTTClient/html/search/variables_10.html b/docs/MQTTClient/html/search/variables_10.html index 92982ac5..dc9920b6 100644 --- a/docs/MQTTClient/html/search/variables_10.html +++ b/docs/MQTTClient/html/search/variables_10.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_10.js b/docs/MQTTClient/html/search/variables_10.js index a2023faa..a71ad35c 100644 --- a/docs/MQTTClient/html/search/variables_10.js +++ b/docs/MQTTClient/html/search/variables_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['username_444',['username',['../struct_m_q_t_t_client__connect_options.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTClient_connectOptions']]] + ['username_448',['username',['../struct_m_q_t_t_client__connect_options.html#aba2dfcdfda80edcb531a5a7115d3e043',1,'MQTTClient_connectOptions']]] ]; diff --git a/docs/MQTTClient/html/search/variables_11.html b/docs/MQTTClient/html/search/variables_11.html index 94f1a8cf..704bcb18 100644 --- a/docs/MQTTClient/html/search/variables_11.html +++ b/docs/MQTTClient/html/search/variables_11.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_11.js b/docs/MQTTClient/html/search/variables_11.js index f46fbf36..cf99f93c 100644 --- a/docs/MQTTClient/html/search/variables_11.js +++ b/docs/MQTTClient/html/search/variables_11.js @@ -1,6 +1,6 @@ var searchData= [ - ['value_445',['value',['../struct_m_q_t_t_client__name_value.html#a8556878012feffc9e0beb86cd78f424d',1,'MQTTClient_nameValue::value()'],['../struct_m_q_t_t_property.html#a09e85ff5ad73824d6c2edc1ce4283a17',1,'MQTTProperty::value()'],['../struct_m_q_t_t_property.html#a51e698f2da26ad8f7c9e3d0b81e188ad',1,'MQTTProperty::value()']]], - ['verify_446',['verify',['../struct_m_q_t_t_client___s_s_l_options.html#a94900629685d5ed08f66fd2931f573ce',1,'MQTTClient_SSLOptions']]], - ['version_447',['version',['../struct_m_q_t_t_response.html#aad880fc4455c253781e8968f2239d56f',1,'MQTTResponse']]] + ['value_449',['value',['../struct_m_q_t_t_client__name_value.html#a8556878012feffc9e0beb86cd78f424d',1,'MQTTClient_nameValue::value()'],['../struct_m_q_t_t_property.html#a09e85ff5ad73824d6c2edc1ce4283a17',1,'MQTTProperty::value()'],['../struct_m_q_t_t_property.html#a51e698f2da26ad8f7c9e3d0b81e188ad',1,'MQTTProperty::value()']]], + ['verify_450',['verify',['../struct_m_q_t_t_client___s_s_l_options.html#a94900629685d5ed08f66fd2931f573ce',1,'MQTTClient_SSLOptions']]], + ['version_451',['version',['../struct_m_q_t_t_response.html#aad880fc4455c253781e8968f2239d56f',1,'MQTTResponse']]] ]; diff --git a/docs/MQTTClient/html/search/variables_12.html b/docs/MQTTClient/html/search/variables_12.html index 61c013a4..a3a32eb8 100644 --- a/docs/MQTTClient/html/search/variables_12.html +++ b/docs/MQTTClient/html/search/variables_12.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_12.js b/docs/MQTTClient/html/search/variables_12.js index 7388182d..baf8ff5d 100644 --- a/docs/MQTTClient/html/search/variables_12.js +++ b/docs/MQTTClient/html/search/variables_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['will_448',['will',['../struct_m_q_t_t_client__connect_options.html#a0a880e99d47eb2efe552abe5079bdc9d',1,'MQTTClient_connectOptions']]] + ['will_452',['will',['../struct_m_q_t_t_client__connect_options.html#a0a880e99d47eb2efe552abe5079bdc9d',1,'MQTTClient_connectOptions']]] ]; diff --git a/docs/MQTTClient/html/search/variables_2.html b/docs/MQTTClient/html/search/variables_2.html index 0c8a18cf..0580462e 100644 --- a/docs/MQTTClient/html/search/variables_2.html +++ b/docs/MQTTClient/html/search/variables_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_2.js b/docs/MQTTClient/html/search/variables_2.js index 3662dcd3..31417dac 100644 --- a/docs/MQTTClient/html/search/variables_2.js +++ b/docs/MQTTClient/html/search/variables_2.js @@ -1,9 +1,9 @@ var searchData= [ - ['capath_375',['CApath',['../struct_m_q_t_t_client___s_s_l_options.html#a3078b3c824cc9753a57898072445c34d',1,'MQTTClient_SSLOptions']]], - ['cleansession_376',['cleansession',['../struct_m_q_t_t_client__connect_options.html#a036c36a2a4d3a3ffae9ab4dd8b3e7f7b',1,'MQTTClient_connectOptions']]], - ['cleanstart_377',['cleanstart',['../struct_m_q_t_t_client__connect_options.html#acdcb75a5d5981da027bce83849140f7b',1,'MQTTClient_connectOptions']]], - ['connecttimeout_378',['connectTimeout',['../struct_m_q_t_t_client__connect_options.html#a38c6aa24b36d981c49405db425c24db0',1,'MQTTClient_connectOptions']]], - ['context_379',['context',['../struct_m_q_t_t_client__persistence.html#ae376f130b17d169ee51be68077a89ed0',1,'MQTTClient_persistence']]], - ['count_380',['count',['../struct_m_q_t_t_properties.html#ad43c3812e6d13e0518d9f8b8f463ffcf',1,'MQTTProperties']]] + ['capath_379',['CApath',['../struct_m_q_t_t_client___s_s_l_options.html#a3078b3c824cc9753a57898072445c34d',1,'MQTTClient_SSLOptions']]], + ['cleansession_380',['cleansession',['../struct_m_q_t_t_client__connect_options.html#a036c36a2a4d3a3ffae9ab4dd8b3e7f7b',1,'MQTTClient_connectOptions']]], + ['cleanstart_381',['cleanstart',['../struct_m_q_t_t_client__connect_options.html#acdcb75a5d5981da027bce83849140f7b',1,'MQTTClient_connectOptions']]], + ['connecttimeout_382',['connectTimeout',['../struct_m_q_t_t_client__connect_options.html#a38c6aa24b36d981c49405db425c24db0',1,'MQTTClient_connectOptions']]], + ['context_383',['context',['../struct_m_q_t_t_client__persistence.html#ae376f130b17d169ee51be68077a89ed0',1,'MQTTClient_persistence']]], + ['count_384',['count',['../struct_m_q_t_t_properties.html#ad43c3812e6d13e0518d9f8b8f463ffcf',1,'MQTTProperties']]] ]; diff --git a/docs/MQTTClient/html/search/variables_3.html b/docs/MQTTClient/html/search/variables_3.html index 19a31fc2..0d69e761 100644 --- a/docs/MQTTClient/html/search/variables_3.html +++ b/docs/MQTTClient/html/search/variables_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_3.js b/docs/MQTTClient/html/search/variables_3.js index afa2386e..89c7bf23 100644 --- a/docs/MQTTClient/html/search/variables_3.js +++ b/docs/MQTTClient/html/search/variables_3.js @@ -1,7 +1,7 @@ var searchData= [ - ['data_381',['data',['../struct_m_q_t_t_client__will_options.html#a0d49d74db4c035719c3867723cf7e779',1,'MQTTClient_willOptions::data()'],['../struct_m_q_t_t_client__connect_options.html#a0d49d74db4c035719c3867723cf7e779',1,'MQTTClient_connectOptions::data()'],['../struct_m_q_t_t_len_string.html#a91a70b77df95bd8b0830b49a094c2acb',1,'MQTTLenString::data()'],['../struct_m_q_t_t_property.html#aa43ebcb9f97210421431a671384ef159',1,'MQTTProperty::data()']]], - ['disabledefaulttruststore_382',['disableDefaultTrustStore',['../struct_m_q_t_t_client___s_s_l_options.html#a0826fcae7c2816e04772c61542c6846b',1,'MQTTClient_SSLOptions']]], - ['do_5fopenssl_5finit_383',['do_openssl_init',['../struct_m_q_t_t_client__init__options.html#a5929146596391e2838ef95feb89776da',1,'MQTTClient_init_options']]], - ['dup_384',['dup',['../struct_m_q_t_t_client__message.html#adc4cf3f551bb367858644559d69cfdf5',1,'MQTTClient_message']]] + ['data_385',['data',['../struct_m_q_t_t_client__will_options.html#a0d49d74db4c035719c3867723cf7e779',1,'MQTTClient_willOptions::data()'],['../struct_m_q_t_t_client__connect_options.html#a0d49d74db4c035719c3867723cf7e779',1,'MQTTClient_connectOptions::data()'],['../struct_m_q_t_t_len_string.html#a91a70b77df95bd8b0830b49a094c2acb',1,'MQTTLenString::data()'],['../struct_m_q_t_t_property.html#aa43ebcb9f97210421431a671384ef159',1,'MQTTProperty::data()']]], + ['disabledefaulttruststore_386',['disableDefaultTrustStore',['../struct_m_q_t_t_client___s_s_l_options.html#a0826fcae7c2816e04772c61542c6846b',1,'MQTTClient_SSLOptions']]], + ['do_5fopenssl_5finit_387',['do_openssl_init',['../struct_m_q_t_t_client__init__options.html#a5929146596391e2838ef95feb89776da',1,'MQTTClient_init_options']]], + ['dup_388',['dup',['../struct_m_q_t_t_client__message.html#adc4cf3f551bb367858644559d69cfdf5',1,'MQTTClient_message']]] ]; diff --git a/docs/MQTTClient/html/search/variables_4.html b/docs/MQTTClient/html/search/variables_4.html index bdc37be7..a4b6506b 100644 --- a/docs/MQTTClient/html/search/variables_4.html +++ b/docs/MQTTClient/html/search/variables_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_4.js b/docs/MQTTClient/html/search/variables_4.js index 629a99b7..4a87f570 100644 --- a/docs/MQTTClient/html/search/variables_4.js +++ b/docs/MQTTClient/html/search/variables_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['enabledciphersuites_385',['enabledCipherSuites',['../struct_m_q_t_t_client___s_s_l_options.html#aa683926d52134077f27d6dc67bda13ab',1,'MQTTClient_SSLOptions']]], - ['enableservercertauth_386',['enableServerCertAuth',['../struct_m_q_t_t_client___s_s_l_options.html#a75f6c13b7634e15f96dd9f17db6cf0be',1,'MQTTClient_SSLOptions']]] + ['enabledciphersuites_389',['enabledCipherSuites',['../struct_m_q_t_t_client___s_s_l_options.html#aa683926d52134077f27d6dc67bda13ab',1,'MQTTClient_SSLOptions']]], + ['enableservercertauth_390',['enableServerCertAuth',['../struct_m_q_t_t_client___s_s_l_options.html#a75f6c13b7634e15f96dd9f17db6cf0be',1,'MQTTClient_SSLOptions']]] ]; diff --git a/docs/MQTTClient/html/search/variables_5.html b/docs/MQTTClient/html/search/variables_5.html index 6aa2249b..7e345d16 100644 --- a/docs/MQTTClient/html/search/variables_5.html +++ b/docs/MQTTClient/html/search/variables_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_5.js b/docs/MQTTClient/html/search/variables_5.js index 29740d86..7858ebed 100644 --- a/docs/MQTTClient/html/search/variables_5.js +++ b/docs/MQTTClient/html/search/variables_5.js @@ -1,6 +1,6 @@ var searchData= [ - ['httpheaders_387',['httpHeaders',['../struct_m_q_t_t_client__connect_options.html#a018eec60631f40c01e6dcb727bffd33f',1,'MQTTClient_connectOptions']]], - ['httpproxy_388',['httpProxy',['../struct_m_q_t_t_client__connect_options.html#add124780ab2de397a96780576c2f112c',1,'MQTTClient_connectOptions']]], - ['httpsproxy_389',['httpsProxy',['../struct_m_q_t_t_client__connect_options.html#a388b78d8a75658928238f700f207ad92',1,'MQTTClient_connectOptions']]] + ['httpheaders_391',['httpHeaders',['../struct_m_q_t_t_client__connect_options.html#a018eec60631f40c01e6dcb727bffd33f',1,'MQTTClient_connectOptions']]], + ['httpproxy_392',['httpProxy',['../struct_m_q_t_t_client__connect_options.html#add124780ab2de397a96780576c2f112c',1,'MQTTClient_connectOptions']]], + ['httpsproxy_393',['httpsProxy',['../struct_m_q_t_t_client__connect_options.html#a388b78d8a75658928238f700f207ad92',1,'MQTTClient_connectOptions']]] ]; diff --git a/docs/MQTTClient/html/search/variables_6.html b/docs/MQTTClient/html/search/variables_6.html index ce4a9063..7d48e75e 100644 --- a/docs/MQTTClient/html/search/variables_6.html +++ b/docs/MQTTClient/html/search/variables_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_6.js b/docs/MQTTClient/html/search/variables_6.js index 4ddd7d98..3aedaf29 100644 --- a/docs/MQTTClient/html/search/variables_6.js +++ b/docs/MQTTClient/html/search/variables_6.js @@ -1,6 +1,6 @@ var searchData= [ - ['identifier_390',['identifier',['../struct_m_q_t_t_property.html#a2ff04e8cc70fbaa9bcb9a4fb3d510882',1,'MQTTProperty']]], - ['integer2_391',['integer2',['../struct_m_q_t_t_property.html#a0289ec2e0df8789139386b0ddf5c71c3',1,'MQTTProperty']]], - ['integer4_392',['integer4',['../struct_m_q_t_t_property.html#a813425ef31abb5ef0091e3043e8a366b',1,'MQTTProperty']]] + ['identifier_394',['identifier',['../struct_m_q_t_t_property.html#a2ff04e8cc70fbaa9bcb9a4fb3d510882',1,'MQTTProperty']]], + ['integer2_395',['integer2',['../struct_m_q_t_t_property.html#a0289ec2e0df8789139386b0ddf5c71c3',1,'MQTTProperty']]], + ['integer4_396',['integer4',['../struct_m_q_t_t_property.html#a813425ef31abb5ef0091e3043e8a366b',1,'MQTTProperty']]] ]; diff --git a/docs/MQTTClient/html/search/variables_7.html b/docs/MQTTClient/html/search/variables_7.html index 39ffd474..5c263409 100644 --- a/docs/MQTTClient/html/search/variables_7.html +++ b/docs/MQTTClient/html/search/variables_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_7.js b/docs/MQTTClient/html/search/variables_7.js index 0de95d39..bf8137ee 100644 --- a/docs/MQTTClient/html/search/variables_7.js +++ b/docs/MQTTClient/html/search/variables_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['keepaliveinterval_393',['keepAliveInterval',['../struct_m_q_t_t_client__connect_options.html#ac8dd0930672a9c7d71fc645aa1f0521d',1,'MQTTClient_connectOptions']]], - ['keystore_394',['keyStore',['../struct_m_q_t_t_client___s_s_l_options.html#a32b476382955289ce427112b59f21c3e',1,'MQTTClient_SSLOptions']]] + ['keepaliveinterval_397',['keepAliveInterval',['../struct_m_q_t_t_client__connect_options.html#ac8dd0930672a9c7d71fc645aa1f0521d',1,'MQTTClient_connectOptions']]], + ['keystore_398',['keyStore',['../struct_m_q_t_t_client___s_s_l_options.html#a32b476382955289ce427112b59f21c3e',1,'MQTTClient_SSLOptions']]] ]; diff --git a/docs/MQTTClient/html/search/variables_8.html b/docs/MQTTClient/html/search/variables_8.html index 37a2eddf..dc9ec54a 100644 --- a/docs/MQTTClient/html/search/variables_8.html +++ b/docs/MQTTClient/html/search/variables_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_8.js b/docs/MQTTClient/html/search/variables_8.js index 77430cea..8e9afd83 100644 --- a/docs/MQTTClient/html/search/variables_8.js +++ b/docs/MQTTClient/html/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['len_395',['len',['../struct_m_q_t_t_client__will_options.html#afed088663f8704004425cdae2120b9b3',1,'MQTTClient_willOptions::len()'],['../struct_m_q_t_t_client__connect_options.html#afed088663f8704004425cdae2120b9b3',1,'MQTTClient_connectOptions::len()'],['../struct_m_q_t_t_len_string.html#afed088663f8704004425cdae2120b9b3',1,'MQTTLenString::len()']]], - ['length_396',['length',['../struct_m_q_t_t_properties.html#a9f59b34b1f25fe00023291b678246bcc',1,'MQTTProperties']]] + ['len_399',['len',['../struct_m_q_t_t_client__will_options.html#afed088663f8704004425cdae2120b9b3',1,'MQTTClient_willOptions::len()'],['../struct_m_q_t_t_client__connect_options.html#afed088663f8704004425cdae2120b9b3',1,'MQTTClient_connectOptions::len()'],['../struct_m_q_t_t_len_string.html#afed088663f8704004425cdae2120b9b3',1,'MQTTLenString::len()']]], + ['length_400',['length',['../struct_m_q_t_t_properties.html#a9f59b34b1f25fe00023291b678246bcc',1,'MQTTProperties']]] ]; diff --git a/docs/MQTTClient/html/search/variables_9.html b/docs/MQTTClient/html/search/variables_9.html index 21e5a4f3..7b014750 100644 --- a/docs/MQTTClient/html/search/variables_9.html +++ b/docs/MQTTClient/html/search/variables_9.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_9.js b/docs/MQTTClient/html/search/variables_9.js index b478bac1..685189cc 100644 --- a/docs/MQTTClient/html/search/variables_9.js +++ b/docs/MQTTClient/html/search/variables_9.js @@ -1,8 +1,8 @@ var searchData= [ - ['max_5fcount_397',['max_count',['../struct_m_q_t_t_properties.html#a8de324382d8fd2f5939bf3372e059383',1,'MQTTProperties']]], - ['maxinflightmessages_398',['maxInflightMessages',['../struct_m_q_t_t_client__connect_options.html#ae3f99bf4663ab7b9e9259feeba41fab2',1,'MQTTClient_connectOptions']]], - ['message_399',['message',['../struct_m_q_t_t_client__will_options.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTClient_willOptions']]], - ['mqttversion_400',['MQTTVersion',['../struct_m_q_t_t_client__create_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTClient_createOptions::MQTTVersion()'],['../struct_m_q_t_t_client__connect_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTClient_connectOptions::MQTTVersion()']]], - ['msgid_401',['msgid',['../struct_m_q_t_t_client__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTClient_message']]] + ['max_5fcount_401',['max_count',['../struct_m_q_t_t_properties.html#a8de324382d8fd2f5939bf3372e059383',1,'MQTTProperties']]], + ['maxinflightmessages_402',['maxInflightMessages',['../struct_m_q_t_t_client__connect_options.html#ae3f99bf4663ab7b9e9259feeba41fab2',1,'MQTTClient_connectOptions']]], + ['message_403',['message',['../struct_m_q_t_t_client__will_options.html#a254bf0858da09c96a48daf64404eb4f8',1,'MQTTClient_willOptions']]], + ['mqttversion_404',['MQTTVersion',['../struct_m_q_t_t_client__create_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTClient_createOptions::MQTTVersion()'],['../struct_m_q_t_t_client__connect_options.html#a12d546fd0ccf4e1091b18e1b735c7240',1,'MQTTClient_connectOptions::MQTTVersion()']]], + ['msgid_405',['msgid',['../struct_m_q_t_t_client__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTClient_message']]] ]; diff --git a/docs/MQTTClient/html/search/variables_a.html b/docs/MQTTClient/html/search/variables_a.html index 1f650553..52a724d1 100644 --- a/docs/MQTTClient/html/search/variables_a.html +++ b/docs/MQTTClient/html/search/variables_a.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_a.js b/docs/MQTTClient/html/search/variables_a.js index aff4aae2..07aad611 100644 --- a/docs/MQTTClient/html/search/variables_a.js +++ b/docs/MQTTClient/html/search/variables_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['name_402',['name',['../struct_m_q_t_t_client__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTClient_nameValue']]], - ['nolocal_403',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] + ['name_406',['name',['../struct_m_q_t_t_client__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTClient_nameValue']]], + ['nolocal_407',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] ]; diff --git a/docs/MQTTClient/html/search/variables_b.html b/docs/MQTTClient/html/search/variables_b.html index c02d066f..f376b27a 100644 --- a/docs/MQTTClient/html/search/variables_b.html +++ b/docs/MQTTClient/html/search/variables_b.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_b.js b/docs/MQTTClient/html/search/variables_b.js index c10e823b..37763294 100644 --- a/docs/MQTTClient/html/search/variables_b.js +++ b/docs/MQTTClient/html/search/variables_b.js @@ -1,19 +1,19 @@ var searchData= [ - ['password_404',['password',['../struct_m_q_t_t_client__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTClient_connectOptions']]], - ['payload_405',['payload',['../struct_m_q_t_t_client__message.html#a9eff55064941fb604452abb0050ea99d',1,'MQTTClient_message::payload()'],['../struct_m_q_t_t_client__will_options.html#a0e9356b973a918c25981982fe84e35d7',1,'MQTTClient_willOptions::payload()']]], - ['payloadlen_406',['payloadlen',['../struct_m_q_t_t_client__message.html#aa3cb44feb3ae6d11b3a4cad2d94cb33a',1,'MQTTClient_message']]], - ['pclear_407',['pclear',['../struct_m_q_t_t_client__persistence.html#abc192dc88113c7d933b29d3561badbf5',1,'MQTTClient_persistence']]], - ['pclose_408',['pclose',['../struct_m_q_t_t_client__persistence.html#a7e50506912d2ec0e014cc25ec28fb402',1,'MQTTClient_persistence']]], - ['pcontainskey_409',['pcontainskey',['../struct_m_q_t_t_client__persistence.html#ac103711576267f791325f2b70b6dc49d',1,'MQTTClient_persistence']]], - ['pget_410',['pget',['../struct_m_q_t_t_client__persistence.html#a49155000b82a28ac3b3cb878f3a092d4',1,'MQTTClient_persistence']]], - ['pkeys_411',['pkeys',['../struct_m_q_t_t_client__persistence.html#a407e86a809e4b0b098a8c158f53b9606',1,'MQTTClient_persistence']]], - ['popen_412',['popen',['../struct_m_q_t_t_client__persistence.html#a1bae211b32415e6b349d5ae71599f9f4',1,'MQTTClient_persistence']]], - ['pput_413',['pput',['../struct_m_q_t_t_client__persistence.html#a4114d9b9971cee18d7e4b9dd5736a608',1,'MQTTClient_persistence']]], - ['premove_414',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], - ['privatekey_415',['privateKey',['../struct_m_q_t_t_client___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTClient_SSLOptions']]], - ['privatekeypassword_416',['privateKeyPassword',['../struct_m_q_t_t_client___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTClient_SSLOptions']]], - ['properties_417',['properties',['../struct_m_q_t_t_client__message.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTClient_message::properties()'],['../struct_m_q_t_t_response.html#a72e9294467b8329a78bc840fe6c5b230',1,'MQTTResponse::properties()']]], - ['protos_418',['protos',['../struct_m_q_t_t_client___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTClient_SSLOptions']]], - ['protos_5flen_419',['protos_len',['../struct_m_q_t_t_client___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTClient_SSLOptions']]] + ['password_408',['password',['../struct_m_q_t_t_client__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTClient_connectOptions']]], + ['payload_409',['payload',['../struct_m_q_t_t_client__message.html#a9eff55064941fb604452abb0050ea99d',1,'MQTTClient_message::payload()'],['../struct_m_q_t_t_client__will_options.html#a0e9356b973a918c25981982fe84e35d7',1,'MQTTClient_willOptions::payload()']]], + ['payloadlen_410',['payloadlen',['../struct_m_q_t_t_client__message.html#aa3cb44feb3ae6d11b3a4cad2d94cb33a',1,'MQTTClient_message']]], + ['pclear_411',['pclear',['../struct_m_q_t_t_client__persistence.html#abc192dc88113c7d933b29d3561badbf5',1,'MQTTClient_persistence']]], + ['pclose_412',['pclose',['../struct_m_q_t_t_client__persistence.html#a7e50506912d2ec0e014cc25ec28fb402',1,'MQTTClient_persistence']]], + ['pcontainskey_413',['pcontainskey',['../struct_m_q_t_t_client__persistence.html#ac103711576267f791325f2b70b6dc49d',1,'MQTTClient_persistence']]], + ['pget_414',['pget',['../struct_m_q_t_t_client__persistence.html#a49155000b82a28ac3b3cb878f3a092d4',1,'MQTTClient_persistence']]], + ['pkeys_415',['pkeys',['../struct_m_q_t_t_client__persistence.html#a407e86a809e4b0b098a8c158f53b9606',1,'MQTTClient_persistence']]], + ['popen_416',['popen',['../struct_m_q_t_t_client__persistence.html#a1bae211b32415e6b349d5ae71599f9f4',1,'MQTTClient_persistence']]], + ['pput_417',['pput',['../struct_m_q_t_t_client__persistence.html#a4114d9b9971cee18d7e4b9dd5736a608',1,'MQTTClient_persistence']]], + ['premove_418',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], + ['privatekey_419',['privateKey',['../struct_m_q_t_t_client___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTClient_SSLOptions']]], + ['privatekeypassword_420',['privateKeyPassword',['../struct_m_q_t_t_client___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTClient_SSLOptions']]], + ['properties_421',['properties',['../struct_m_q_t_t_client__message.html#a1594008402f7307e4de8fa6131656dde',1,'MQTTClient_message::properties()'],['../struct_m_q_t_t_response.html#a72e9294467b8329a78bc840fe6c5b230',1,'MQTTResponse::properties()']]], + ['protos_422',['protos',['../struct_m_q_t_t_client___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTClient_SSLOptions']]], + ['protos_5flen_423',['protos_len',['../struct_m_q_t_t_client___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTClient_SSLOptions']]] ]; diff --git a/docs/MQTTClient/html/search/variables_c.html b/docs/MQTTClient/html/search/variables_c.html index 4b866c6c..6019eba9 100644 --- a/docs/MQTTClient/html/search/variables_c.html +++ b/docs/MQTTClient/html/search/variables_c.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_c.js b/docs/MQTTClient/html/search/variables_c.js index 1f4afa6b..3b31e86d 100644 --- a/docs/MQTTClient/html/search/variables_c.js +++ b/docs/MQTTClient/html/search/variables_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['qos_420',['qos',['../struct_m_q_t_t_client__message.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTClient_message::qos()'],['../struct_m_q_t_t_client__will_options.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTClient_willOptions::qos()']]] + ['qos_424',['qos',['../struct_m_q_t_t_client__message.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTClient_message::qos()'],['../struct_m_q_t_t_client__will_options.html#a35738099155a0e4f54050da474bab2e7',1,'MQTTClient_willOptions::qos()']]] ]; diff --git a/docs/MQTTClient/html/search/variables_d.html b/docs/MQTTClient/html/search/variables_d.html index 84d878b8..f61ae751 100644 --- a/docs/MQTTClient/html/search/variables_d.html +++ b/docs/MQTTClient/html/search/variables_d.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_d.js b/docs/MQTTClient/html/search/variables_d.js index cd5d352f..a30ad268 100644 --- a/docs/MQTTClient/html/search/variables_d.js +++ b/docs/MQTTClient/html/search/variables_d.js @@ -1,12 +1,12 @@ var searchData= [ - ['reasoncode_421',['reasonCode',['../struct_m_q_t_t_response.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTResponse']]], - ['reasoncodecount_422',['reasonCodeCount',['../struct_m_q_t_t_response.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTResponse']]], - ['reasoncodes_423',['reasonCodes',['../struct_m_q_t_t_response.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTResponse']]], - ['reliable_424',['reliable',['../struct_m_q_t_t_client__connect_options.html#a9f1cdffc99659fd4e2d20e6de3c64df0',1,'MQTTClient_connectOptions']]], - ['retainaspublished_425',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], - ['retained_426',['retained',['../struct_m_q_t_t_client__message.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTClient_message::retained()'],['../struct_m_q_t_t_client__will_options.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTClient_willOptions::retained()']]], - ['retainhandling_427',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], - ['retryinterval_428',['retryInterval',['../struct_m_q_t_t_client__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTClient_connectOptions']]], - ['returned_429',['returned',['../struct_m_q_t_t_client__connect_options.html#afbca347de18f7a8c57de1f16d3dadde6',1,'MQTTClient_connectOptions']]] + ['reasoncode_425',['reasonCode',['../struct_m_q_t_t_response.html#a580d8a8ecb285f5a86c2a3865438f8ee',1,'MQTTResponse']]], + ['reasoncodecount_426',['reasonCodeCount',['../struct_m_q_t_t_response.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTResponse']]], + ['reasoncodes_427',['reasonCodes',['../struct_m_q_t_t_response.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTResponse']]], + ['reliable_428',['reliable',['../struct_m_q_t_t_client__connect_options.html#a9f1cdffc99659fd4e2d20e6de3c64df0',1,'MQTTClient_connectOptions']]], + ['retainaspublished_429',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], + ['retained_430',['retained',['../struct_m_q_t_t_client__message.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTClient_message::retained()'],['../struct_m_q_t_t_client__will_options.html#a6a4904c112507a43e7dc8495b62cc0fc',1,'MQTTClient_willOptions::retained()']]], + ['retainhandling_431',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], + ['retryinterval_432',['retryInterval',['../struct_m_q_t_t_client__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTClient_connectOptions']]], + ['returned_433',['returned',['../struct_m_q_t_t_client__connect_options.html#afbca347de18f7a8c57de1f16d3dadde6',1,'MQTTClient_connectOptions']]] ]; diff --git a/docs/MQTTClient/html/search/variables_e.html b/docs/MQTTClient/html/search/variables_e.html index b0d9b7b2..7bfd3721 100644 --- a/docs/MQTTClient/html/search/variables_e.html +++ b/docs/MQTTClient/html/search/variables_e.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_e.js b/docs/MQTTClient/html/search/variables_e.js index 4080c6ee..44605d76 100644 --- a/docs/MQTTClient/html/search/variables_e.js +++ b/docs/MQTTClient/html/search/variables_e.js @@ -1,15 +1,15 @@ var searchData= [ - ['serveruri_430',['serverURI',['../struct_m_q_t_t_client__connect_options.html#a313446ca7679b36652722ffe53d05228',1,'MQTTClient_connectOptions']]], - ['serveruricount_431',['serverURIcount',['../struct_m_q_t_t_client__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTClient_connectOptions']]], - ['serveruris_432',['serverURIs',['../struct_m_q_t_t_client__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTClient_connectOptions']]], - ['sessionpresent_433',['sessionPresent',['../struct_m_q_t_t_client__connect_options.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTClient_connectOptions']]], - ['ssl_434',['ssl',['../struct_m_q_t_t_client__connect_options.html#a8a0b0f0fc7c675312dc232e2458078c7',1,'MQTTClient_connectOptions']]], - ['ssl_5ferror_5fcb_435',['ssl_error_cb',['../struct_m_q_t_t_client___s_s_l_options.html#a76c7b40e2e258d2f898b53165ada2b70',1,'MQTTClient_SSLOptions']]], - ['ssl_5ferror_5fcontext_436',['ssl_error_context',['../struct_m_q_t_t_client___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTClient_SSLOptions']]], - ['ssl_5fpsk_5fcb_437',['ssl_psk_cb',['../struct_m_q_t_t_client___s_s_l_options.html#a83c1245259a491ea9daf872ce04b5e46',1,'MQTTClient_SSLOptions']]], - ['ssl_5fpsk_5fcontext_438',['ssl_psk_context',['../struct_m_q_t_t_client___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTClient_SSLOptions']]], - ['sslversion_439',['sslVersion',['../struct_m_q_t_t_client___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTClient_SSLOptions']]], - ['struct_5fid_440',['struct_id',['../struct_m_q_t_t_client__init__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_init_options::struct_id()'],['../struct_m_q_t_t_client__message.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_message::struct_id()'],['../struct_m_q_t_t_client__create_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_createOptions::struct_id()'],['../struct_m_q_t_t_client__will_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_willOptions::struct_id()'],['../struct_m_q_t_t_client___s_s_l_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_SSLOptions::struct_id()'],['../struct_m_q_t_t_client__connect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_connectOptions::struct_id()'],['../struct_m_q_t_t_subscribe__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTSubscribe_options::struct_id()']]], - ['struct_5fversion_441',['struct_version',['../struct_m_q_t_t_client__init__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_init_options::struct_version()'],['../struct_m_q_t_t_client__message.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_message::struct_version()'],['../struct_m_q_t_t_client__create_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_createOptions::struct_version()'],['../struct_m_q_t_t_client__will_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_willOptions::struct_version()'],['../struct_m_q_t_t_client___s_s_l_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_SSLOptions::struct_version()'],['../struct_m_q_t_t_client__connect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_connectOptions::struct_version()'],['../struct_m_q_t_t_subscribe__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTSubscribe_options::struct_version()']]] + ['serveruri_434',['serverURI',['../struct_m_q_t_t_client__connect_options.html#a313446ca7679b36652722ffe53d05228',1,'MQTTClient_connectOptions']]], + ['serveruricount_435',['serverURIcount',['../struct_m_q_t_t_client__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTClient_connectOptions']]], + ['serveruris_436',['serverURIs',['../struct_m_q_t_t_client__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTClient_connectOptions']]], + ['sessionpresent_437',['sessionPresent',['../struct_m_q_t_t_client__connect_options.html#a44baf2cb9a0bbcec3ed2eace43f832d1',1,'MQTTClient_connectOptions']]], + ['ssl_438',['ssl',['../struct_m_q_t_t_client__connect_options.html#a8a0b0f0fc7c675312dc232e2458078c7',1,'MQTTClient_connectOptions']]], + ['ssl_5ferror_5fcb_439',['ssl_error_cb',['../struct_m_q_t_t_client___s_s_l_options.html#a21b6ca8a73ba197e65f6a93365d39c04',1,'MQTTClient_SSLOptions']]], + ['ssl_5ferror_5fcontext_440',['ssl_error_context',['../struct_m_q_t_t_client___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTClient_SSLOptions']]], + ['ssl_5fpsk_5fcb_441',['ssl_psk_cb',['../struct_m_q_t_t_client___s_s_l_options.html#a94317cdaf352f9ae496976f8a30f8fee',1,'MQTTClient_SSLOptions']]], + ['ssl_5fpsk_5fcontext_442',['ssl_psk_context',['../struct_m_q_t_t_client___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTClient_SSLOptions']]], + ['sslversion_443',['sslVersion',['../struct_m_q_t_t_client___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTClient_SSLOptions']]], + ['struct_5fid_444',['struct_id',['../struct_m_q_t_t_client__create_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_createOptions::struct_id()'],['../struct_m_q_t_t_subscribe__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTSubscribe_options::struct_id()'],['../struct_m_q_t_t_client__connect_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_connectOptions::struct_id()'],['../struct_m_q_t_t_client___s_s_l_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_SSLOptions::struct_id()'],['../struct_m_q_t_t_client__will_options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_willOptions::struct_id()'],['../struct_m_q_t_t_client__message.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_message::struct_id()'],['../struct_m_q_t_t_client__init__options.html#aa5326df180cb23c59afbcab711a06479',1,'MQTTClient_init_options::struct_id()']]], + ['struct_5fversion_445',['struct_version',['../struct_m_q_t_t_client__init__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_init_options::struct_version()'],['../struct_m_q_t_t_client__message.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_message::struct_version()'],['../struct_m_q_t_t_client__create_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_createOptions::struct_version()'],['../struct_m_q_t_t_client__will_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_willOptions::struct_version()'],['../struct_m_q_t_t_client___s_s_l_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_SSLOptions::struct_version()'],['../struct_m_q_t_t_client__connect_options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTClient_connectOptions::struct_version()'],['../struct_m_q_t_t_subscribe__options.html#a0761a5e5be0383882e42924de8e51f82',1,'MQTTSubscribe_options::struct_version()']]] ]; diff --git a/docs/MQTTClient/html/search/variables_f.html b/docs/MQTTClient/html/search/variables_f.html index a708dbf0..d97920d0 100644 --- a/docs/MQTTClient/html/search/variables_f.html +++ b/docs/MQTTClient/html/search/variables_f.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
    Loading...
    - +
    Searching...
    No Matches
    - +
    diff --git a/docs/MQTTClient/html/search/variables_f.js b/docs/MQTTClient/html/search/variables_f.js index 76472ba9..f9846ebe 100644 --- a/docs/MQTTClient/html/search/variables_f.js +++ b/docs/MQTTClient/html/search/variables_f.js @@ -1,5 +1,5 @@ var searchData= [ - ['topicname_442',['topicName',['../struct_m_q_t_t_client__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTClient_willOptions']]], - ['truststore_443',['trustStore',['../struct_m_q_t_t_client___s_s_l_options.html#a032835d4c4a1c1e19b53c330a673a6e0',1,'MQTTClient_SSLOptions']]] + ['topicname_446',['topicName',['../struct_m_q_t_t_client__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTClient_willOptions']]], + ['truststore_447',['trustStore',['../struct_m_q_t_t_client___s_s_l_options.html#a032835d4c4a1c1e19b53c330a673a6e0',1,'MQTTClient_SSLOptions']]] ]; diff --git a/docs/MQTTClient/html/struct_m_q_t_t_client___s_s_l_options.html b/docs/MQTTClient/html/struct_m_q_t_t_client___s_s_l_options.html index cb6f50a7..82349fae 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_client___s_s_l_options.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_client___s_s_l_options.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClient_SSLOptions Struct Reference @@ -30,10 +30,10 @@ - + @@ -95,12 +95,12 @@ Data Fields   const char * CApath   -int(* ssl_error_cb )(const char *str, size_t len, void *u) -  +int(* ssl_error_cb )(const char *str, size_t len, void *u) +  void * ssl_error_context   -unsigned int(* ssl_psk_cb )(const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u) -  +unsigned int(* ssl_psk_cb )(const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u) +  void * ssl_psk_context   int disableDefaultTrustStore @@ -282,14 +282,14 @@ Data Fields - -

    ◆ ssl_error_cb

    + +

    ◆ ssl_error_cb

    - +
    int(* ssl_error_cb(const char *str, size_t len, void *u)int(* ssl_error_cb) (const char *str, size_t len, void *u)
    @@ -312,14 +312,14 @@ Data Fields
    - -

    ◆ ssl_psk_cb

    + +

    ◆ ssl_psk_cb

    - +
    unsigned int(* ssl_psk_cb(const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u)unsigned int(* ssl_psk_cb) (const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u)
    @@ -393,9 +393,7 @@ Data Fields
    diff --git a/docs/MQTTClient/html/struct_m_q_t_t_client__connect_options.html b/docs/MQTTClient/html/struct_m_q_t_t_client__connect_options.html index 44f10212..cb1669c3 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_client__connect_options.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_client__connect_options.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClient_connectOptions Struct Reference @@ -30,10 +30,10 @@
    - + @@ -381,7 +381,7 @@ Data Fields -

    ◆ returned

    +

    ◆ 

    @@ -426,7 +426,7 @@ Data Fields
    -

    ◆ binarypwd

    +

    ◆ 

    @@ -520,9 +520,7 @@ Data Fields
    diff --git a/docs/MQTTClient/html/struct_m_q_t_t_client__create_options.html b/docs/MQTTClient/html/struct_m_q_t_t_client__create_options.html index f296f205..b259a9fb 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_client__create_options.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_client__create_options.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClient_createOptions Struct Reference @@ -30,10 +30,10 @@
    - + @@ -135,9 +135,7 @@ Data Fields diff --git a/docs/MQTTClient/html/struct_m_q_t_t_client__init__options.html b/docs/MQTTClient/html/struct_m_q_t_t_client__init__options.html index 94bc9040..6b2d84e8 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_client__init__options.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_client__init__options.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClient_init_options Struct Reference @@ -30,10 +30,10 @@ - + @@ -134,9 +134,7 @@ Data Fields diff --git a/docs/MQTTClient/html/struct_m_q_t_t_client__message.html b/docs/MQTTClient/html/struct_m_q_t_t_client__message.html index 323c4ff4..777f4612 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_client__message.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_client__message.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClient_message Struct Reference @@ -30,10 +30,10 @@ - + @@ -247,9 +247,7 @@ Data Fields diff --git a/docs/MQTTClient/html/struct_m_q_t_t_client__name_value.html b/docs/MQTTClient/html/struct_m_q_t_t_client__name_value.html index 2d9e203f..2d197dae 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_client__name_value.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_client__name_value.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClient_nameValue Struct Reference @@ -30,10 +30,10 @@ - + @@ -115,9 +115,7 @@ Data Fields diff --git a/docs/MQTTClient/html/struct_m_q_t_t_client__persistence.html b/docs/MQTTClient/html/struct_m_q_t_t_client__persistence.html index ae295c63..67569798 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_client__persistence.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_client__persistence.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClient_persistence Struct Reference @@ -30,10 +30,10 @@ - + @@ -239,9 +239,7 @@ Data Fields diff --git a/docs/MQTTClient/html/struct_m_q_t_t_client__will_options.html b/docs/MQTTClient/html/struct_m_q_t_t_client__will_options.html index dca8f574..95eda3ce 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_client__will_options.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_client__will_options.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTClient_willOptions Struct Reference @@ -30,10 +30,10 @@ - + @@ -217,7 +217,7 @@ Data Fields -

    ◆ payload

    +

    ◆ 

    @@ -237,9 +237,7 @@ Data Fields
    diff --git a/docs/MQTTClient/html/struct_m_q_t_t_len_string.html b/docs/MQTTClient/html/struct_m_q_t_t_len_string.html index 209e4c2c..53df6315 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_len_string.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_len_string.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTLenString Struct Reference @@ -30,10 +30,10 @@
    - + @@ -117,9 +117,7 @@ Data Fields diff --git a/docs/MQTTClient/html/struct_m_q_t_t_properties.html b/docs/MQTTClient/html/struct_m_q_t_t_properties.html index 1606bcb0..2570c3c7 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_properties.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_properties.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTProperties Struct Reference @@ -30,10 +30,10 @@ - + @@ -151,9 +151,7 @@ Data Fields diff --git a/docs/MQTTClient/html/struct_m_q_t_t_property.html b/docs/MQTTClient/html/struct_m_q_t_t_property.html index 37c52a57..e904eb44 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_property.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_property.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTProperty Struct Reference @@ -30,10 +30,10 @@ - + @@ -186,7 +186,7 @@ Data Fields -

    ◆ value [2/2]

    +

    ◆  [2/2]

    @@ -206,9 +206,7 @@ Data Fields
    diff --git a/docs/MQTTClient/html/struct_m_q_t_t_response.html b/docs/MQTTClient/html/struct_m_q_t_t_response.html index 54f7f2e7..cb4a6201 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_response.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_response.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTResponse Struct Reference @@ -30,10 +30,10 @@
    - + @@ -163,9 +163,7 @@ Data Fields diff --git a/docs/MQTTClient/html/struct_m_q_t_t_subscribe__options.html b/docs/MQTTClient/html/struct_m_q_t_t_subscribe__options.html index bdad341d..14f5a401 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_subscribe__options.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_subscribe__options.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: MQTTSubscribe_options Struct Reference @@ -30,10 +30,10 @@ - + @@ -168,9 +168,7 @@ Data Fields diff --git a/docs/MQTTClient/html/subasync.html b/docs/MQTTClient/html/subasync.html index 406f0c04..4a9637b1 100644 --- a/docs/MQTTClient/html/subasync.html +++ b/docs/MQTTClient/html/subasync.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Asynchronous subscription example @@ -30,10 +30,10 @@ - + @@ -164,34 +164,32 @@ $(function() {
    exit:
    return rc;
    }
    - - -
    int keepAliveInterval
    Definition: MQTTClient.h:848
    -
    int payloadlen
    Definition: MQTTClient.h:279
    -
    int MQTTClient_unsubscribe(MQTTClient handle, const char *topic)
    -
    void MQTTClient_freeMessage(MQTTClient_message **msg)
    -
    #define MQTTCLIENT_PERSISTENCE_NONE
    Definition: MQTTClientPersistence.h:74
    -
    Definition: MQTTClient.h:271
    -
    #define MQTTClient_connectOptions_initializer
    Definition: MQTTClient.h:982
    -
    int MQTTClient_subscribe(MQTTClient handle, const char *topic, int qos)
    +
    +
    int MQTTClient_disconnect(MQTTClient handle, int timeout)
    +
    void MQTTClient_free(void *ptr)
    int MQTTClient_deliveryToken
    Definition: MQTTClient.h:262
    -
    int MQTTClient_setCallbacks(MQTTClient handle, void *context, MQTTClient_connectionLost *cl, MQTTClient_messageArrived *ma, MQTTClient_deliveryComplete *dc)
    -
    void * payload
    Definition: MQTTClient.h:281
    void * MQTTClient
    Definition: MQTTClient.h:251
    +
    int MQTTClient_create(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    +
    int MQTTClient_subscribe(MQTTClient handle, const char *topic, int qos)
    +
    int MQTTClient_unsubscribe(MQTTClient handle, const char *topic)
    +
    int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
    +
    int MQTTClient_setCallbacks(MQTTClient handle, void *context, MQTTClient_connectionLost *cl, MQTTClient_messageArrived *ma, MQTTClient_deliveryComplete *dc)
    +
    void MQTTClient_freeMessage(MQTTClient_message **msg)
    #define MQTTCLIENT_SUCCESS
    Definition: MQTTClient.h:132
    void MQTTClient_destroy(MQTTClient *handle)
    -
    Definition: MQTTClient.h:824
    -
    int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
    -
    int MQTTClient_disconnect(MQTTClient handle, int timeout)
    +
    #define MQTTClient_connectOptions_initializer
    Definition: MQTTClient.h:982
    +
    #define MQTTCLIENT_PERSISTENCE_NONE
    Definition: MQTTClientPersistence.h:74
    +
    Definition: MQTTClient.h:825
    int cleansession
    Definition: MQTTClient.h:870
    -
    void MQTTClient_free(void *ptr)
    -
    -
    int MQTTClient_create(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    +
    int keepAliveInterval
    Definition: MQTTClient.h:848
    +
    Definition: MQTTClient.h:272
    +
    void * payload
    Definition: MQTTClient.h:281
    +
    int payloadlen
    Definition: MQTTClient.h:279
    + + diff --git a/docs/MQTTClient/html/tracing.html b/docs/MQTTClient/html/tracing.html index 8b6699f6..ff529a2d 100644 --- a/docs/MQTTClient/html/tracing.html +++ b/docs/MQTTClient/html/tracing.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Tracing @@ -30,10 +30,10 @@ - + @@ -104,6 +104,7 @@ $(function() {
    20130528 160447.479 Connect pending
    20130528 160447.479 (1152206656) (3)< Socket_new:683 (115)
    20130528 160447.479 (1152206656) (2)< MQTTProtocol_connect:131 (115)
    +
    int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)

    where the fields are:

    1. date
    2. time
    3. @@ -124,12 +125,9 @@ $(function() {
      20130528 163909.209 Heap scan end
      -
      int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
      diff --git a/docs/MQTTClient/html/wildcard.html b/docs/MQTTClient/html/wildcard.html index 68a6c549..9274538e 100644 --- a/docs/MQTTClient/html/wildcard.html +++ b/docs/MQTTClient/html/wildcard.html @@ -3,7 +3,7 @@ - + Paho MQTT C Client Library: Subscription wildcards @@ -30,10 +30,10 @@ - + @@ -81,9 +81,7 @@ A '+' character represents a single level of the hierarchy and is used between d diff --git a/docs/MQTTClient/man/man3/MQTTClient.h.3 b/docs/MQTTClient/man/man3/MQTTClient.h.3 index 07396d5d..17c91965 100644 --- a/docs/MQTTClient/man/man3/MQTTClient.h.3 +++ b/docs/MQTTClient/man/man3/MQTTClient.h.3 @@ -1,4 +1,4 @@ -.TH "MQTTClient.h" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient.h" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME @@ -289,6 +289,9 @@ MQTTClient.h .RI "void \fBMQTTClient_free\fP (void *ptr)" .br .ti -1c +.RI "void * \fBMQTTClient_malloc\fP (size_t size)" +.br +.ti -1c .RI "void \fBMQTTClient_destroy\fP (\fBMQTTClient\fP *handle)" .br .ti -1c @@ -1076,6 +1079,15 @@ This function frees memory allocated by the MQTT C client library, especially th .RE .PP +.SS "void* MQTTClient_malloc (size_t size)" +This function is used to allocate memory to be used or freed by the MQTT C client library, especially the data in user persistence\&. This is needed on Windows when the client library and application program have been compiled with different versions of the C compiler\&. +.PP +\fBParameters\fP +.RS 4 +\fIsize\fP The size of the memory to be allocated\&. +.RE +.PP + .SS "void MQTTClient_destroy (\fBMQTTClient\fP * handle)" This function frees the memory allocated to an MQTT client (see \fBMQTTClient_create()\fP)\&. It should be called when the client is no longer required\&. .PP diff --git a/docs/MQTTClient/man/man3/MQTTClientPersistence.h.3 b/docs/MQTTClient/man/man3/MQTTClientPersistence.h.3 index 8e625dde..5275f5ec 100644 --- a/docs/MQTTClient/man/man3/MQTTClientPersistence.h.3 +++ b/docs/MQTTClient/man/man3/MQTTClientPersistence.h.3 @@ -1,4 +1,4 @@ -.TH "MQTTClientPersistence.h" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClientPersistence.h" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTClient_SSLOptions.3 b/docs/MQTTClient/man/man3/MQTTClient_SSLOptions.3 index 92488c11..999e82cd 100644 --- a/docs/MQTTClient/man/man3/MQTTClient_SSLOptions.3 +++ b/docs/MQTTClient/man/man3/MQTTClient_SSLOptions.3 @@ -1,4 +1,4 @@ -.TH "MQTTClient_SSLOptions" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_SSLOptions" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME @@ -101,11 +101,11 @@ The SSL/TLS version to use\&. Specify one of MQTT_SSL_VERSION_DEFAULT (0), MQTT_ Whether to carry out post-connect checks, including that a certificate matches the given host name\&. Exists only if struct_version >= 2 .SS "const char* CApath" From the OpenSSL documentation: If CApath is not NULL, it points to a directory containing CA certificates in PEM format\&. Exists only if struct_version >= 2 -.SS "int(* ssl_error_cb(const char *str, size_t len, void *u)" +.SS "int(* ssl_error_cb) (const char *str, size_t len, void *u)" Callback function for OpenSSL error handler ERR_print_errors_cb Exists only if struct_version >= 3 .SS "void* ssl_error_context" Application-specific contex for OpenSSL error handler ERR_print_errors_cb Exists only if struct_version >= 3 -.SS "unsigned int(* ssl_psk_cb(const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u)" +.SS "unsigned int(* ssl_psk_cb) (const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u)" Callback function for setting TLS-PSK options\&. Parameters correspond to that of SSL_CTX_set_psk_client_callback, except for u which is the pointer ssl_psk_context\&. Exists only if struct_version >= 4 .SS "void* ssl_psk_context" Application-specific contex for ssl_psk_cb Exists only if struct_version >= 4 diff --git a/docs/MQTTClient/man/man3/MQTTClient_connectOptions.3 b/docs/MQTTClient/man/man3/MQTTClient_connectOptions.3 index 9d885219..2df2ea20 100644 --- a/docs/MQTTClient/man/man3/MQTTClient_connectOptions.3 +++ b/docs/MQTTClient/man/man3/MQTTClient_connectOptions.3 @@ -1,4 +1,4 @@ -.TH "MQTTClient_connectOptions" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_connectOptions" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTClient_createOptions.3 b/docs/MQTTClient/man/man3/MQTTClient_createOptions.3 index 60f54329..6ff70a9f 100644 --- a/docs/MQTTClient/man/man3/MQTTClient_createOptions.3 +++ b/docs/MQTTClient/man/man3/MQTTClient_createOptions.3 @@ -1,4 +1,4 @@ -.TH "MQTTClient_createOptions" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_createOptions" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTClient_init_options.3 b/docs/MQTTClient/man/man3/MQTTClient_init_options.3 index 57ac8b34..4a8c84b1 100644 --- a/docs/MQTTClient/man/man3/MQTTClient_init_options.3 +++ b/docs/MQTTClient/man/man3/MQTTClient_init_options.3 @@ -1,4 +1,4 @@ -.TH "MQTTClient_init_options" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_init_options" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTClient_message.3 b/docs/MQTTClient/man/man3/MQTTClient_message.3 index c4e00474..f298d9e7 100644 --- a/docs/MQTTClient/man/man3/MQTTClient_message.3 +++ b/docs/MQTTClient/man/man3/MQTTClient_message.3 @@ -1,4 +1,4 @@ -.TH "MQTTClient_message" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_message" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTClient_nameValue.3 b/docs/MQTTClient/man/man3/MQTTClient_nameValue.3 index 2106c094..84cfcdc9 100644 --- a/docs/MQTTClient/man/man3/MQTTClient_nameValue.3 +++ b/docs/MQTTClient/man/man3/MQTTClient_nameValue.3 @@ -1,4 +1,4 @@ -.TH "MQTTClient_nameValue" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_nameValue" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTClient_persistence.3 b/docs/MQTTClient/man/man3/MQTTClient_persistence.3 index bfcfdf75..6dd0d47d 100644 --- a/docs/MQTTClient/man/man3/MQTTClient_persistence.3 +++ b/docs/MQTTClient/man/man3/MQTTClient_persistence.3 @@ -1,4 +1,4 @@ -.TH "MQTTClient_persistence" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_persistence" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTClient_willOptions.3 b/docs/MQTTClient/man/man3/MQTTClient_willOptions.3 index 748483cd..dc4887ba 100644 --- a/docs/MQTTClient/man/man3/MQTTClient_willOptions.3 +++ b/docs/MQTTClient/man/man3/MQTTClient_willOptions.3 @@ -1,4 +1,4 @@ -.TH "MQTTClient_willOptions" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_willOptions" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTLenString.3 b/docs/MQTTClient/man/man3/MQTTLenString.3 index eaa66e46..f5bc0860 100644 --- a/docs/MQTTClient/man/man3/MQTTLenString.3 +++ b/docs/MQTTClient/man/man3/MQTTLenString.3 @@ -1,4 +1,4 @@ -.TH "MQTTLenString" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTLenString" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTProperties.3 b/docs/MQTTClient/man/man3/MQTTProperties.3 index 2f99abd8..39b6ac34 100644 --- a/docs/MQTTClient/man/man3/MQTTProperties.3 +++ b/docs/MQTTClient/man/man3/MQTTProperties.3 @@ -1,4 +1,4 @@ -.TH "MQTTProperties" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperties" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTProperties.h.3 b/docs/MQTTClient/man/man3/MQTTProperties.h.3 index f44fc900..484dfb4c 100644 --- a/docs/MQTTClient/man/man3/MQTTProperties.h.3 +++ b/docs/MQTTClient/man/man3/MQTTProperties.h.3 @@ -1,4 +1,4 @@ -.TH "MQTTProperties.h" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperties.h" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME @@ -257,7 +257,7 @@ the length in bytes of the properties when serialized\&. .PP .SS "int MQTTProperties_add (\fBMQTTProperties\fP * props, const \fBMQTTProperty\fP * prop)" -Add a property pointer to the property array\&. There is no memory allocation\&. +Add a property pointer to the property array\&. Memory is allocated in this function, so MQTTClient_create or MQTTAsync_create must be called first to initialize the internal heap tracking\&. Alternatively MQTTAsync_global_init() can be called first or build with the HIGH_PERFORMANCE option which disables the heap tracking\&. .PP \fBParameters\fP .RS 4 diff --git a/docs/MQTTClient/man/man3/MQTTProperty.3 b/docs/MQTTClient/man/man3/MQTTProperty.3 index 2408baf4..2c37825d 100644 --- a/docs/MQTTClient/man/man3/MQTTProperty.3 +++ b/docs/MQTTClient/man/man3/MQTTProperty.3 @@ -1,4 +1,4 @@ -.TH "MQTTProperty" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperty" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTReasonCodes.h.3 b/docs/MQTTClient/man/man3/MQTTReasonCodes.h.3 index 4f3522e9..82c475e7 100644 --- a/docs/MQTTClient/man/man3/MQTTReasonCodes.h.3 +++ b/docs/MQTTClient/man/man3/MQTTReasonCodes.h.3 @@ -1,4 +1,4 @@ -.TH "MQTTReasonCodes.h" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTReasonCodes.h" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTResponse.3 b/docs/MQTTClient/man/man3/MQTTResponse.3 index 13ecbeb9..5e521c1a 100644 --- a/docs/MQTTClient/man/man3/MQTTResponse.3 +++ b/docs/MQTTClient/man/man3/MQTTResponse.3 @@ -1,4 +1,4 @@ -.TH "MQTTResponse" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTResponse" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTSubscribeOpts.h.3 b/docs/MQTTClient/man/man3/MQTTSubscribeOpts.h.3 index d01ce3b6..21d33905 100644 --- a/docs/MQTTClient/man/man3/MQTTSubscribeOpts.h.3 +++ b/docs/MQTTClient/man/man3/MQTTSubscribeOpts.h.3 @@ -1,4 +1,4 @@ -.TH "MQTTSubscribeOpts.h" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTSubscribeOpts.h" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTSubscribe_options.3 b/docs/MQTTClient/man/man3/MQTTSubscribe_options.3 index ded97879..9391b36a 100644 --- a/docs/MQTTClient/man/man3/MQTTSubscribe_options.3 +++ b/docs/MQTTClient/man/man3/MQTTSubscribe_options.3 @@ -1,4 +1,4 @@ -.TH "MQTTSubscribe_options" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTSubscribe_options" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/async.3 b/docs/MQTTClient/man/man3/async.3 index 8a858dc8..f4f49ef7 100644 --- a/docs/MQTTClient/man/man3/async.3 +++ b/docs/MQTTClient/man/man3/async.3 @@ -1,4 +1,4 @@ -.TH "async" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "async" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/callbacks.3 b/docs/MQTTClient/man/man3/callbacks.3 index 142c8085..52005325 100644 --- a/docs/MQTTClient/man/man3/callbacks.3 +++ b/docs/MQTTClient/man/man3/callbacks.3 @@ -1,4 +1,4 @@ -.TH "callbacks" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "callbacks" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/pubasync.3 b/docs/MQTTClient/man/man3/pubasync.3 index 7f001c94..a2146115 100644 --- a/docs/MQTTClient/man/man3/pubasync.3 +++ b/docs/MQTTClient/man/man3/pubasync.3 @@ -1,4 +1,4 @@ -.TH "pubasync" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "pubasync" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/pubsync.3 b/docs/MQTTClient/man/man3/pubsync.3 index 6a1a56e5..abf25ecc 100644 --- a/docs/MQTTClient/man/man3/pubsync.3 +++ b/docs/MQTTClient/man/man3/pubsync.3 @@ -1,4 +1,4 @@ -.TH "pubsync" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "pubsync" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/qos.3 b/docs/MQTTClient/man/man3/qos.3 index 20356319..7cb52dc4 100644 --- a/docs/MQTTClient/man/man3/qos.3 +++ b/docs/MQTTClient/man/man3/qos.3 @@ -1,4 +1,4 @@ -.TH "qos" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "qos" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/subasync.3 b/docs/MQTTClient/man/man3/subasync.3 index 99462b3d..5f540f97 100644 --- a/docs/MQTTClient/man/man3/subasync.3 +++ b/docs/MQTTClient/man/man3/subasync.3 @@ -1,4 +1,4 @@ -.TH "subasync" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "subasync" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/tracing.3 b/docs/MQTTClient/man/man3/tracing.3 index b3ddd9c5..90414016 100644 --- a/docs/MQTTClient/man/man3/tracing.3 +++ b/docs/MQTTClient/man/man3/tracing.3 @@ -1,4 +1,4 @@ -.TH "tracing" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "tracing" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/wildcard.3 b/docs/MQTTClient/man/man3/wildcard.3 index 9df606a1..0d2bef2d 100644 --- a/docs/MQTTClient/man/man3/wildcard.3 +++ b/docs/MQTTClient/man/man3/wildcard.3 @@ -1,4 +1,4 @@ -.TH "wildcard" 3 "Thu Sep 29 2022" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "wildcard" 3 "Fri Oct 13 2023" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient_internal/html/Clients_8c.html b/docs/MQTTClient_internal/html/Clients_8c.html index 992b9318..088f569d 100644 --- a/docs/MQTTClient_internal/html/Clients_8c.html +++ b/docs/MQTTClient_internal/html/Clients_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Clients.c File Reference @@ -30,10 +30,10 @@ - + @@ -77,8 +77,8 @@ $(function() {
      Include dependency graph for Clients.c:
      -
      - +
      + @@ -174,708 +174,9 @@ Functions
      -
      int pstclear(void *handle)
      Delete all the persisted message in the client persistence directory.
      Definition: MQTTPersistenceDefault.c:543
      -
      const MQTTClient_nameValue * httpHeaders
      HTTP headers for websockets.
      Definition: MQTTClient.h:970
      -
      const void * data
      binary payload data
      Definition: MQTTClient.h:648
      -
      unsigned short integer2
      holds the value of a 2 byte integer property type
      Definition: MQTTProperties.h:100
      -
      ListElement * current
      current element in the list, for iteration
      Definition: LinkedList.h:71
      -
      Persistence_get pget
      A function pointer to an implementation of Persistence_get().
      Definition: MQTTClientPersistence.h:235
      -
      void Socket_clearPendingWrite(SOCKET socket)
      Clear a socket from the pending write list - if one was added with Socket_addPendingWrite.
      Definition: Socket.c:848
      -
      static int MQTTClient_disconnect_internal(MQTTClient handle, int timeout)
      mqttclient_mutex must be locked when you call this function, if multi threaded
      Definition: MQTTClient.c:1956
      -
      size_t datalen
      current length of data in buf
      Definition: SocketBuffer.h:40
      -
      unsigned char all
      all connect flags
      Definition: MQTTPacket.h:94
      -
      void MQTTProtocol_freeClient(Clients *client)
      Free a client structure.
      Definition: MQTTProtocolClient.c:908
      -
      int sessionPresent
      if the MQTT version is 3.1.1, the value of sessionPresent returned in the connack
      Definition: MQTTClient.h:949
      -
      Utility structure where name/value pairs are needed.
      Definition: MQTTAsync.h:1182
      -
      char * data
      pointer to the string data
      Definition: MQTTProperties.h:87
      -
      SOCKET Socket_getReadySocket(int more_work, int timeout, mutex_type mutex, int *rc)
      Returns the next socket ready for communications as indicated by select.
      Definition: Socket.c:485
      -
      int length
      mbi: byte length of all properties
      Definition: MQTTProperties.h:116
      -
      Structure to hold all data for one list element.
      Definition: Tree.h:63
      -
      void * ListDetachHead(List *aList)
      Removes and frees an the first item in a list.
      Definition: LinkedList.c:268
      -
      int(* Persistence_clear)(void *handle)
      Clears the persistence store, so that it no longer contains any persisted data.
      Definition: MQTTClientPersistence.h:197
      -
      int MQTTProtocol_subscribe(Clients *client, List *topics, List *qoss, int msgID, MQTTSubscribe_options *opts, MQTTProperties *props)
      MQTT outgoing subscribe processing for a client.
      Definition: MQTTProtocolOut.c:388
      -
      MQTTAsync_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client.
      Definition: MQTTAsync.h:1020
      -
      static char * trace_destination_backup_name
      the name of the backup trace file
      Definition: Log.c:105
      -
      struct ListElementStruct * prev
      pointer to previous list element
      Definition: LinkedList.h:74
      -
      void MQTTClient_global_init(MQTTClient_init_options *inits)
      Global init of mqtt library.
      Definition: MQTTClient.c:93
      -
      MQTTClient_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL li...
      Definition: MQTTClient.h:671
      -
      size_t size
      heap storage used
      Definition: LinkedList.h:73
      -
      char * httpProxy
      HTTP proxy.
      Definition: Clients.h:154
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTAsync.h:1071
      -
      const char * username
      MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
      Definition: MQTTAsync.h:1261
      -
      int Thread_wait_sem(sem_type sem, int timeout)
      Wait for a semaphore to be posted, or timeout.
      Definition: Thread.c:249
      -
      unsigned char all
      all connack flags
      Definition: MQTTPacket.h:138
      -
      void ListAppendNoMalloc(List *aList, void *content, ListElement *newel, size_t size)
      Append an already allocated ListElement and content to a list.
      Definition: LinkedList.c:69
      -
      Header header
      MQTT header byte.
      Definition: MQTTPacket.h:216
      -
      int pstput(void *handle, char *key, int bufcount, char *buffers[], int buflens[])
      Write wire message to the client persistence directory.
      Definition: MQTTPersistenceDefault.c:195
      -
      int MQTTPacket_send_connect(Clients *client, int MQTTVersion, MQTTProperties *connectProperties, MQTTProperties *willProperties)
      Send an MQTT CONNECT packet down a socket for V5 or later.
      Definition: MQTTPacketOut.c:48
      -
      List * inboundMsgs
      inbound in flight messages
      Definition: Clients.h:138
      -
      int maxInflightMessages
      the max number of inflight outbound messages we allow
      Definition: Clients.h:136
      -
      Header header
      MQTT header byte.
      Definition: MQTTPacket.h:186
      -
      MQTTAsync_onSuccess * onSuccess
      A pointer to a callback function to be called if the disconnect successfully completes.
      Definition: MQTTAsync.h:1443
      -
      int MQTTPersistence_afterRead(void *context, char **buffer, int *buflen)
      A callback which is invoked just after a read from persistence.
      Definition: MQTTClientPersistence.h:275
      -
      int verify
      Whether to carry out post-connect checks, including that a certificate matches the given host name.
      Definition: MQTTAsync.h:1122
      -
      int Socket_setnonblocking(SOCKET sock)
      Set a socket non-blocking, OS independently.
      Definition: Socket.c:82
      -
      int ListRemove(List *aList, void *content)
      Removes and frees an item in a list by comparing the pointer to the content.
      Definition: LinkedList.c:257
      -
      const char * message
      The LWT payload.
      Definition: MQTTAsync.h:1031
      -
      int serverURIcount
      The number of entries in the optional serverURIs array.
      Definition: MQTTClient.h:919
      -
      bool will
      will flag
      Definition: MQTTPacket.h:111
      -
      Data for a suback packet.
      Definition: MQTTPacket.h:171
      -
      MQTTAsync_onSuccess5 * onSuccess5
      A pointer to a callback function to be called if the connect successfully completes.
      Definition: MQTTAsync.h:1362
      -
      size_t max_size
      max size the heap has reached in bytes
      Definition: Heap.h:65
      -
      void * TreeRemoveNodeIndex(Tree *aTree, Node *curnode, int index)
      Remove an item from a tree.
      Definition: Tree.c:420
      -
      MQTTClient_willOptions * will
      This is a pointer to an MQTTClient_willOptions structure.
      Definition: MQTTClient.h:886
      -
      int msgId
      MQTT message id.
      Definition: MQTTPacket.h:187
      -
      Definition: MQTTClient.c:302
      -
      int clientIDCompare(void *a, void *b)
      List callback function for comparing clients by clientid.
      Definition: Clients.c:36
      -
      static thread_return_type WINAPI connectionLost_call(void *context)
      Wrapper function to call connection lost on a separate thread.
      Definition: MQTTClient.c:700
      -
      int qos
      The quality of service (QoS) assigned to the message.
      Definition: MQTTClient.h:295
      -
      int MQTTClient_receive(MQTTClient handle, char **topicName, int *topicLen, MQTTClient_message **message, unsigned long timeout)
      This function performs a synchronous receive of incoming messages.
      Definition: MQTTClient.c:2754
      -
      unsigned int ping_due
      we couldn't send a ping so we should send one when we can
      Definition: Clients.h:129
      -
      char * SocketBuffer_getQueuedData(SOCKET socket, size_t bytes, size_t *actual_len)
      Get any queued data for a specific socket.
      Definition: SocketBuffer.c:176
      -
      int packet_type
      Packet type on which the failure occurred - used for publish QoS 1/2 exchanges.
      Definition: MQTTAsync.h:564
      -
      void SocketBuffer_freeDefQ(void)
      Free the default queue memory.
      Definition: SocketBuffer.c:122
      -
      Definition: MQTTAsyncUtils.h:41
      -
      builds a websocket frame for data transmission
      Definition: WebSocket.c:227
      -
      void SocketBuffer_terminate(void)
      Terminate the socketBuffer module.
      Definition: SocketBuffer.c:133
      -
      ListElement * ListFindItem(List *aList, void *content, int(*callback)(void *, void *))
      Finds an element in a list by comparing the content or pointer to the content.
      Definition: LinkedList.c:154
      -
      size_t size
      size of content
      Definition: Tree.h:82
      -
      void * context
      Definition: MQTTAsync.h:1455
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTAsync.h:274
      -
      int socketcompare(void *a, void *b)
      List callback function for comparing socket_queues by socket.
      Definition: SocketBuffer.c:70
      -
      void * MQTTPacket_suback(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create suback packets.
      Definition: MQTTPacketOut.c:290
      -
      Definition: MQTTClient.c:337
      -
      char * topic
      topic string
      Definition: MQTTPacket.h:200
      -
      #define MQTTCLIENT_PERSISTENCE_ERROR
      Application-specific persistence functions must return this error code if there is a problem executin...
      Definition: MQTTClientPersistence.h:85
      -
      void MQTTClient_setTraceCallback(MQTTClient_traceCallback *callback)
      This function sets the trace callback if needed.
      Definition: MQTTClient.c:2941
      -
      void MQTTProtocol_specialChars(char *p0, char *p1, b64_size_t *basic_auth_in_len)
      Allow user or password characters to be expressed in the form of XX, XX being the hexadecimal value o...
      Definition: MQTTProtocolOut.c:114
      -
      int MQTTProtocol_handleDisconnects(void *pack, SOCKET sock)
      Process an incoming disconnect packet for a socket.
      Definition: MQTTProtocolOut.c:465
      -
      Definition: MQTTProtocol.h:28
      -
      int ListRemoveHead(List *aList)
      Removes and frees an the first item in a list.
      Definition: LinkedList.c:294
      -
      void * payload
      A pointer to the payload of the MQTT message.
      Definition: MQTTClient.h:281
      -
      Definition: MQTTAsyncUtils.h:33
      -
      int readInt4(char **pptr)
      Calculates an integer from two bytes read from the input buffer.
      Definition: MQTTPacket.c:965
      -
      MQTT version 5 property list.
      Definition: MQTTProperties.h:112
      -
      int MQTTPacket_sends(networkHandles *net, Header header, PacketBuffers *bufs, int MQTTVersion)
      Sends an MQTT packet from multiple buffers in one system call write.
      Definition: MQTTPacket.c:253
      -
      int pstkeys(void *handle, char ***keys, int *nkeys)
      Returns the keys (file names w/o the extension) in the client persistence directory.
      Definition: MQTTPersistenceDefault.c:659
      -
      struct MQTTAsync_successData::@1::@2 pub
      For publish, the message being sent to the server.
      -
      #define MQTTCLIENT_PERSISTENCE_USER
      This persistence_type value specifies an application-specific persistence mechanism (see MQTTClient_c...
      Definition: MQTTClientPersistence.h:79
      -
      Information about the state of the heap.
      Definition: Heap.h:62
      -
      int MQTTVersion
      the version of MQTT
      Definition: MQTTPacket.h:205
      -
      int keepAliveInterval
      The "keep alive" interval, measured in seconds, defines the maximum time that should pass without com...
      Definition: MQTTClient.h:848
      -
      int(* Persistence_get)(void *handle, char *key, char **buffer, int *buflen)
      Retrieve the specified data from the persistent store.
      Definition: MQTTClientPersistence.h:156
      -
      int len
      PUBREC, PUBREL, PUBCOMP
      Definition: Clients.h:64
      -
      static int MQTTProtocol_startPublishCommon(Clients *pubclient, Publish *publish, int qos, int retained)
      Utility function to start a new publish exchange.
      Definition: MQTTProtocolClient.c:149
      -
      int SocketBuffer_getQueuedChar(SOCKET socket, char *c)
      Get any queued character for a specific socket.
      Definition: SocketBuffer.c:219
      -
      void * phandle
      the persistence handle
      Definition: Clients.h:145
      -
      MQTTClient_persistence * persistence
      a persistence implementation
      Definition: Clients.h:146
      -
      char *const * serverURIs
      An optional array of null-terminated strings specifying the servers to which the client will connect.
      Definition: MQTTClient.h:933
      -
      static void MQTTProtocol_checkPendingWrites(void)
      See if any pending writes have been completed, and cleanup if so.
      Definition: MQTTClient.c:3051
      -
      int MQTTVersion
      Whether the MQTT version is 3.1, 3.1.1, or 5.
      Definition: MQTTAsync.h:981
      -
      char * httpsProxy
      HTTPS proxy.
      Definition: Clients.h:155
      -
      char * serverURI
      the connection string of the server
      Definition: MQTTAsync.h:592
      -
      int qos
      The quality of service setting for the LWT message (see MQTTClient_message.qos and qos).
      Definition: MQTTClient.h:643
      -
      networkHandles net
      network info for this client
      Definition: Clients.h:132
      -
      unsigned int reserved
      message type nibble
      Definition: MQTTPacket.h:149
      -
      int(* Persistence_close)(void *handle)
      Close the persistent store referred to by the handle.
      Definition: MQTTClientPersistence.h:123
      -
      Data for a packet with header only.
      Definition: MQTTPacket.h:162
      -
      int code
      A numeric code identifying the MQTT client library error.
      Definition: MQTTAsync.h:560
      -
      void MQTTProtocol_freeMessageList(List *msgList)
      Empty and free up all storage used by a message list.
      Definition: MQTTProtocolClient.c:994
      -
      int SocketBuffer_pendingWrite(SOCKET socket, int count, iobuf *iovecs, int *frees, size_t total, size_t bytes)
      A socket write was interrupted so store the remaining data.
      Definition: SocketBuffer.c:349
      -
      int MQTTPacket_send_publish(Publish *pack, int dup, int qos, int retained, networkHandles *net, const char *clientID)
      Send an MQTT PUBLISH packet down a socket.
      Definition: MQTTPacket.c:855
      -
      int MQTTVersion
      Sets the version of MQTT to be used on the connect.
      Definition: MQTTAsync.h:1325
      -
      Data for an MQTT V5 unsuback packet.
      Definition: MQTTPacket.h:184
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTAsync.h:1430
      -
      const char * privateKey
      If not included in the sslKeyStore, this setting points to the file in PEM format containing the clie...
      Definition: MQTTAsync.h:1093
      -
      void * MQTTPacket_ack(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create acknowledgement packets.
      Definition: MQTTPacket.c:794
      -
      MQTTResponse MQTTClient_subscribeMany5(MQTTClient handle, int count, char *const *topic, int *qos, MQTTSubscribe_options *opts, MQTTProperties *props)
      This function attempts to subscribe an MQTT version 5.0 client to a list of topics,...
      Definition: MQTTClient.c:2008
      -
      int Socket_addSocket(SOCKET newSd)
      Add a socket to the list of socket to check with select.
      Definition: Socket.c:266
      -
      A structure representing the payload and attributes of an MQTT message.
      Definition: MQTTClient.h:271
      -
      char * destinationName
      the topic destination for the message
      Definition: MQTTAsync.h:622
      -
      int MQTTPersistence_initialize(Clients *c, const char *serverURI)
      Open persistent store and restore any persisted messages.
      Definition: MQTTPersistence.c:115
      -
      MQTTPersistence_afterRead * afterRead
      persistence read callback
      Definition: Clients.h:148
      -
      int ListDetach(List *aList, void *content)
      Removes but does not free an item in a list by comparing the pointer to the content.
      Definition: LinkedList.c:245
      -
      void Log(enum LOG_LEVELS log_level, int msgno, const char *format,...)
      Log a message.
      Definition: Log.c:425
      -
      int MQTTProtocol_connect(const char *ip_address, Clients *aClient, int websocket, int MQTTVersion, MQTTProperties *connectProperties, MQTTProperties *willProperties)
      MQTT outgoing connect processing for a client.
      Definition: MQTTProtocolOut.c:217
      -
      int MQTTClient_createWithOptions(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context, MQTTClient_createOptions *options)
      A version of :MQTTClient_create() with additional options.
      Definition: MQTTClient.c:373
      -
      void ListFreeNoContent(List *aList)
      Removes and but does not free all items in a list, and frees the list itself.
      Definition: LinkedList.c:392
      -
      int MQTTPersistence_putPacket(SOCKET socket, char *buf0, size_t buf0len, int count, char **buffers, size_t *buflens, int htype, int msgId, int scr, int MQTTVersion)
      Adds a record to the persistent store.
      Definition: MQTTPersistence.c:434
      -
      void * content
      pointer to element content
      Definition: Tree.h:81
      -
      const char * CApath
      From the OpenSSL documentation: If CApath is not NULL, it points to a directory containing CA certifi...
      Definition: MQTTClient.h:732
      -
      int allowDisconnectedSendAtAnyTime
      Allow sending of messages while disconnected before a first successful connect.
      Definition: MQTTAsync.h:985
      -
      START_TIME_TYPE ping_due_time
      the time at which the ping should have been sent (ping_due)
      Definition: Clients.h:131
      -
      int MQTTClient_publish(MQTTClient handle, const char *topicName, int payloadlen, const void *payload, int qos, int retained, MQTTClient_deliveryToken *deliveryToken)
      This function attempts to publish a message to a given topic (see also MQTTClient_publishMessage()).
      Definition: MQTTClient.c:2463
      -
      MQTTClient_libraryInfo is used to store details relating to the currently used library such as the ve...
      Definition: MQTTClient.h:791
      -
      enum MQTTPropertyCodes identifier
      The MQTT V5 property id.
      Definition: MQTTProperties.h:96
      -
      Header header
      MQTT header byte.
      Definition: MQTTPacket.h:91
      -
      void MQTTPacket_freeUnsuback(Unsuback *pack)
      Free allocated storage for a suback packet.
      Definition: MQTTPacket.c:711
      -
      #define MQTTCLIENT_PERSISTENCE_NONE
      This persistence_type value specifies a memory-based persistence mechanism (see MQTTClient_create()).
      Definition: MQTTClientPersistence.h:74
      -
      struct MQTTClient_connectOptions::@19 binarypwd
      Optional binary password.
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTAsync.h:711
      -
      unsigned char rc
      connack reason code
      Definition: MQTTPacket.h:153
      -
      const char * trustStore
      The file in PEM format containing the public digital certificates trusted by the client.
      Definition: MQTTAsync.h:1083
      -
      int line
      the line no in the source file where it was allocated
      Definition: Heap.c:71
      -
      ListElement * ListNextElement(List *aList, ListElement **pos)
      Forward iteration through a list.
      Definition: LinkedList.c:411
      -
      int MQTTVersion
      the version of MQTT
      Definition: MQTTPacket.h:175
      -
      unsigned char version
      MQTT version number.
      Definition: MQTTPacket.h:126
      -
      Definition: MQTTPersistence.h:84
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTAsync.h:963
      -
      Definition: StackTrace.c:46
      -
      int MQTTPersistence_create(MQTTClient_persistence **persistence, int type, void *pcontext)
      Creates a MQTTClient_persistence structure representing a persistence implementation.
      Definition: MQTTPersistence.c:51
      -
      MQTTLenString value
      The value of a user property.
      Definition: MQTTProperties.h:104
      -
      int Thread_destroy_mutex(mutex_type mutex)
      Destroy a mutex which has already been created.
      Definition: Thread.c:181
      -
      char * MQTTStrncpy(char *dest, const char *src, size_t dest_size)
      Copy no more than dest_size -1 characters from the string pointed to by src to the array pointed to b...
      Definition: MQTTProtocolClient.c:1056
      -
      MQTTProperties properties
      MQTT 5.0 properties.
      Definition: MQTTPacket.h:220
      -
      void writeData(char **pptr, const void *data, int datalen)
      Writes length delimited data to an output buffer.
      Definition: MQTTPacket.c:482
      -
      MQTTAsync_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL lib...
      Definition: MQTTAsync.h:1068
      -
      const char * message
      Optional further text explaining the error.
      Definition: MQTTAsync.h:562
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTAsync.h:1023
      -
      Definition: Log.h:77
      -
      int MQTTClient_publishMessage(MQTTClient handle, const char *topicName, MQTTClient_message *message, MQTTClient_deliveryToken *deliveryToken)
      This function attempts to publish a message to a given topic (see also MQTTClient_publish()).
      Definition: MQTTClient.c:2508
      -
      bool sessionPresent
      was a session found on the server?
      Definition: MQTTPacket.h:148
      -
      char * willMsg
      will payload
      Definition: MQTTPacket.h:123
      -
      cond_type Thread_create_cond(int *rc)
      Create a new condition variable.
      Definition: Thread.c:384
      -
      int connect_count
      the number of outbound messages on reconnect - to ensure we send them all
      Definition: Clients.h:140
      -
      void Heap_terminate(void)
      Heap termination.
      Definition: Heap.c:417
      -
      Definition: MQTTProtocolClient.c:61
      -
      struct pollfd * fds_read
      poll read file descriptors
      Definition: Socket.h:126
      -
      static thread_return_type WINAPI call_disconnected(void *context)
      Wrapper function to call disconnected on a separate thread.
      Definition: MQTTClient.c:738
      -
      MQTTProperties properties
      MQTT V5 properties returned, if any.
      Definition: MQTTAsync.h:608
      -
      int indexes
      no of indexes into tree
      Definition: Tree.h:83
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:604
      -
      static int MQTTClient_disconnect1(MQTTClient handle, int timeout, int internal, int stop, enum MQTTReasonCodes, MQTTProperties *)
      mqttclient_mutex must be locked when you call this function, if multi threaded
      Definition: MQTTClient.c:1909
      -
      uint8_t mask[4]
      array of flags indicating whether each buffer needs to be freed
      Definition: Socket.h:105
      -
      int UTF8_validate(int len, const char *data)
      Validate a length-delimited string has only UTF-8 characters.
      Definition: utf-8.c:129
      -
      Definition: Socket.h:99
      -
      MQTTAsync_onSuccess * onSuccess
      A pointer to a callback function to be called if the connect successfully completes.
      Definition: MQTTAsync.h:1290
      -
      int msgId
      MQTT message id.
      Definition: MQTTPacket.h:217
      -
      void MQTTClient_yield(void)
      When implementing a single-threaded client, call this function periodically to allow processing of me...
      Definition: MQTTClient.c:2810
      -
      The connect options that can be updated before an automatic reconnect.
      Definition: MQTTAsync.h:465
      -
      int serverURIcount
      The number of entries in the serverURIs array.
      Definition: MQTTAsync.h:1306
      -
      int retained
      The retained flag for the LWT message (see MQTTClient_message.retained).
      Definition: MQTTClient.h:638
      -
      Options for the ::MQTTAsync_createWithOptions call.
      Definition: MQTTAsync.h:960
      -
      void Socket_outInitialize(void)
      Initialize the socket module.
      Definition: Socket.c:130
      -
      unsigned int integer4
      holds the value of a 4 byte integer property type
      Definition: MQTTProperties.h:101
      -
      int keepAliveTimer
      keepalive timeout value in seconds
      Definition: MQTTPacket.h:125
      -
      int Thread_wait_cond(cond_type condvar, int timeout_ms)
      Wait with a timeout (ms) for condition variable.
      Definition: Thread.c:435
      -
      const char * topicName
      The LWT topic to which the LWT message will be published.
      Definition: MQTTAsync.h:1029
      -
      void MQTTPacket_freeSuback(Suback *pack)
      Free allocated storage for a suback packet.
      Definition: MQTTPacket.c:695
      -
      thread_id_type Thread_getid(void)
      Get the thread id of the thread from which this function is called.
      Definition: Thread.c:201
      -
      Stored publication data to minimize copying.
      Definition: Clients.h:41
      -
      int pstget(void *handle, char *key, char **buffer, int *buflen)
      Retrieve a wire message from the client persistence directory.
      Definition: MQTTPersistenceDefault.c:257
      -
      MQTTClient_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client.
      Definition: MQTTClient.h:623
      -
      const char * keyStore
      The file in PEM format containing the public certificate chain of the client.
      Definition: MQTTAsync.h:1088
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTClient.h:674
      -
      enum MQTTReasonCodes * reasonCodes
      an array of reasonCodes
      Definition: MQTTAsync.h:616
      -
      MQTTResponse MQTTClient_unsubscribeMany5(MQTTClient handle, int count, char *const *topic, MQTTProperties *props)
      This function attempts to remove existing subscriptions to a list of topics made by the specified cli...
      Definition: MQTTClient.c:2188
      -
      int Thread_check_sem(sem_type sem)
      Check to see if a semaphore has been posted, without waiting The semaphore will be unchanged,...
      Definition: Thread.c:311
      -
      void * context
      Definition: MQTTAsync.h:1302
      -
      Data for a publish packet.
      Definition: MQTTPacket.h:197
      -
      MQTTResponse MQTTClient_publishMessage5(MQTTClient handle, const char *topicName, MQTTClient_message *message, MQTTClient_deliveryToken *deliveryToken)
      Attempts to publish a message to the given topic using MQTT version 5.0 (see also MQTTClient_publish5...
      Definition: MQTTClient.c:2477
      -
      size_t size
      heap storage used
      Definition: Tree.h:85
      -
      Structure to define call options.
      Definition: MQTTAsync.h:708
      -
      int clientSocketCompare(void *a, void *b)
      List callback function for comparing clients by socket.
      Definition: Clients.c:50
      -
      MQTTClient_connectOptions defines several settings that control the way the client connects to an MQT...
      Definition: MQTTClient.h:824
      -
      int MQTTClient_subscribe(MQTTClient handle, const char *topic, int qos)
      This function attempts to subscribe a client to a single topic, which may contain wildcards (see wild...
      Definition: MQTTClient.c:2174
      -
      Messages * MQTTProtocol_createMessage(Publish *publish, Messages **mm, int qos, int retained, int allocatePayload)
      Copy and store message data for retries.
      Definition: MQTTProtocolClient.c:206
      -
      int MQTTProtocol_handlePingresps(void *pack, SOCKET sock)
      Process an incoming pingresp packet for a socket.
      Definition: MQTTProtocolOut.c:365
      -
      int MQTTClient_isConnected(MQTTClient handle)
      This function allows the client application to test whether or not a client is currently connected to...
      Definition: MQTTClient.c:1993
      -
      MQTTAsync_SSLOptions * ssl
      This is a pointer to an MQTTAsync_SSLOptions structure.
      Definition: MQTTAsync.h:1284
      -
      const char * message
      Optional text explaining the error.
      Definition: MQTTAsync.h:542
      -
      static List * queues
      List of queued input buffers.
      Definition: SocketBuffer.c:50
      -
      Definition: SocketBuffer.h:44
      -
      void MQTTProtocol_closeSession(Clients *c, int sendwill)
      mqttclient_mutex must be locked when you call this function, if multi threaded
      Definition: MQTTClient.c:1965
      -
      int sessionExpiry
      MQTT 5 session expiry.
      Definition: Clients.h:153
      -
      int sendWhileDisconnected
      Whether to allow messages to be sent when the client library is not connected.
      Definition: MQTTAsync.h:971
      -
      int MQTTVersion
      the version of MQTT being used
      Definition: MQTTAsync.h:593
      -
      static List writes
      List of queued write buffers.
      Definition: SocketBuffer.c:55
      -
      void MQTTClient_free(void *memory)
      This function frees memory allocated by the MQTT C client library, especially the topic name.
      Definition: MQTTClient.c:639
      -
      Definition: MQTTPersistence.h:71
      -
      void MQTTPacket_freeConnack(Connack *pack)
      Free allocated storage for a connack packet.
      Definition: MQTTPacketOut.c:185
      -
      static void HeapScan(enum LOG_LEVELS log_level)
      Scans the heap and reports any items currently allocated.
      Definition: Heap.c:383
      -
      Tree * TreeInitialize(int(*compare)(void *, void *, int))
      Allocates and initializes a new tree structure.
      Definition: Tree.c:65
      -
      MQTTProperties * connectProperties
      MQTT V5 properties for connect.
      Definition: MQTTAsync.h:1352
      -
      struct @34 valid_ranges[]
      Structure to hold the valid ranges of UTF-8 characters, for each byte up to 4.
      -
      unsigned int(* ssl_psk_cb)(const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u)
      Callback function for setting TLS-PSK options.
      Definition: MQTTClient.h:751
      -
      void MQTTClient_setTraceLevel(enum MQTTCLIENT_TRACE_LEVELS level)
      This function sets the level of trace information which will be returned in the trace callback.
      Definition: MQTTClient.c:2935
      -
      unsigned int allow_duplicates
      switch to allow duplicate entries
      Definition: Tree.h:87
      -
      int cleansession
      This is a boolean value.
      Definition: MQTTAsync.h:1245
      -
      Persistence_put pput
      A function pointer to an implementation of Persistence_put().
      Definition: MQTTClientPersistence.h:231
      -
      enum MQTTReasonCodes reasonCode
      The MQTT reason code returned.
      Definition: MQTTAsync.h:556
      -
      void * TreeRemoveIndex(Tree *aTree, void *content, int index)
      Remove an item from a tree.
      Definition: Tree.c:487
      -
      int verify
      Whether to carry out post-connect checks, including that a certificate matches the given host name.
      Definition: MQTTClient.h:725
      -
      MQTTClient_SSLOptions * ssl
      This is a pointer to an MQTTClient_SSLOptions structure.
      Definition: MQTTClient.h:915
      -
      int MQTTPersistence_remove(Clients *c, char *type, int qos, int msgId)
      Deletes a record from the persistent store.
      Definition: MQTTPersistence.c:533
      -
      unsigned int nfds
      no of file descriptors for poll
      Definition: Socket.h:125
      -
      int max_trace_entries
      max no of entries in the trace buffer
      Definition: Log.h:66
      -
      int len
      binary payload length
      Definition: MQTTClient.h:647
      -
      char lower
      lower limit of valid range
      Definition: utf-8.c:49
      -
      int count
      no of items
      Definition: LinkedList.h:72
      -
      A structure representing the payload and attributes of an MQTT message.
      Definition: MQTTAsync.h:271
      -
      Definition: SocketBuffer.h:33
      -
      int dup
      The dup flag indicates whether or not this message is a duplicate.
      Definition: MQTTClient.h:321
      -
      MQTTAsync_onFailure5 * onFailure5
      A pointer to a callback function to be called if the disconnect fails.
      Definition: MQTTAsync.h:1475
      -
      int(* ssl_error_cb)(const char *str, size_t len, void *u)
      Callback function for OpenSSL error handler ERR_print_errors_cb Exists only if struct_version >= 3.
      Definition: MQTTAsync.h:1135
      -
      MQTTAsync_token token
      A token identifying the successful request.
      Definition: MQTTAsync.h:573
      -
      unsigned int(* ssl_psk_cb)(const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len, void *u)
      Callback function for setting TLS-PSK options.
      Definition: MQTTAsync.h:1148
      -
      int Thread_signal_cond(cond_type condvar)
      Signal a condition variable.
      Definition: Thread.c:418
      -
      Initialization options.
      Definition: MQTTClient.h:229
      -
      Header header
      MQTT header byte.
      Definition: MQTTPacket.h:135
      -
      int stringcompare(void *a, void *b)
      List callback function for comparing C strings.
      Definition: LinkedList.c:448
      -
      const char * password
      MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
      Definition: MQTTAsync.h:1267
      -
      int len
      binary password length
      Definition: MQTTAsync.h:484
      -
      static int ptrCompare(void *a, void *b, int value)
      List callback function for comparing storage elements.
      Definition: Heap.c:114
      -
      List * reasonCodes
      list of reason codes
      Definition: MQTTPacket.h:190
      -
      union Connect::@21 flags
      connect flags byte
      -
      struct MQTTClient_connectOptions::@18 returned
      Returned from the connect when the MQTT version used to connect is 3.1.1.
      -
      int Socket_putdatas(SOCKET socket, char *buf0, size_t buf0len, PacketBuffers bufs)
      Attempts to write a series of buffers to a socket in one system call so that they are sent as one pac...
      Definition: Socket.c:762
      -
      int code
      A numeric code identifying the error.
      Definition: MQTTAsync.h:540
      -
      MQTTAsync_onSuccess * onSuccess
      A pointer to a callback function to be called if the API call successfully completes.
      Definition: MQTTAsync.h:720
      -
      const char * topicName
      The LWT topic to which the LWT message will be published.
      Definition: MQTTClient.h:632
      -
      int qos
      For subscribe, the granted QoS of the subscription returned by the server.
      Definition: MQTTAsync.h:579
      -
      heap_info * Heap_get_info(void)
      Access to heap state.
      Definition: Heap.c:432
      -
      char * Socket_getpeer(SOCKET sock)
      Get information about the other end connected to a socket.
      Definition: Socket.c:1469
      -
      int qos
      The quality of service setting for the LWT message (see MQTTAsync_message.qos and qos).
      Definition: MQTTAsync.h:1040
      -
      const char * trustStore
      The file in PEM format containing the public digital certificates trusted by the client.
      Definition: MQTTClient.h:686
      -
      bool willRetain
      will retain setting
      Definition: MQTTPacket.h:113
      -
      MQTTResponse MQTTClient_subscribe5(MQTTClient handle, const char *topic, int qos, MQTTSubscribe_options *opts, MQTTProperties *props)
      This function attempts to subscribe an MQTT version 5.0 client to a single topic, which may contain w...
      Definition: MQTTClient.c:2160
      -
      const char * keyStore
      The file in PEM format containing the public certificate chain of the client.
      Definition: MQTTClient.h:691
      -
      int MQTTVersion
      the version of MQTT
      Definition: MQTTPacket.h:219
      -
      int reliable
      This is a boolean value that controls how many messages can be in-flight simultaneously.
      Definition: MQTTClient.h:880
      -
      #define MQTTCLIENT_PERSISTENCE_DEFAULT
      This persistence_type value specifies the default file system-based persistence mechanism (see MQTTCl...
      Definition: MQTTClientPersistence.h:69
      -
      int cleansession
      This is a boolean value.
      Definition: MQTTClient.h:870
      -
      const void * data
      binary password data
      Definition: MQTTAsync.h:485
      -
      enum LOG_LEVELS trace_level
      trace level
      Definition: Log.h:65
      -
      List * connect_pending
      list of sockets for which a connect is pending
      Definition: Socket.h:114
      -
      void * ssl_error_context
      Application-specific contex for OpenSSL error handler ERR_print_errors_cb Exists only if struct_versi...
      Definition: MQTTAsync.h:1141
      -
      unsigned int qos
      QoS value, 0, 1 or 2.
      Definition: MQTTPacket.h:78
      -
      unsigned int type
      message type nibble
      Definition: MQTTPacket.h:80
      -
      void MQTTPersistence_insertInOrder(List *list, void *content, size_t size)
      Inserts the specified message into the list, maintaining message ID order.
      Definition: MQTTPersistence.c:401
      -
      int(* Persistence_keys)(void *handle, char ***keys, int *nkeys)
      Returns the keys in this persistent data store.
      Definition: MQTTClientPersistence.h:186
      -
      int dup
      The dup flag indicates whether or not this message is a duplicate.
      Definition: MQTTAsync.h:321
      -
      MQTTAsync_onFailure * onFailure
      A pointer to a callback function to be called if the disconnect fails.
      Definition: MQTTAsync.h:1449
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTAsync.h:1201
      -
      Structure to hold all data for one list element.
      Definition: LinkedList.h:56
      -
      Header header
      MQTT header byte.
      Definition: MQTTPacket.h:164
      -
      int ListRemoveItem(List *aList, void *content, int(*callback)(void *, void *))
      Removes and frees an element in a list by comparing the content.
      Definition: LinkedList.c:349
      -
      int cur_fd
      index into the fds_saved array
      Definition: Socket.h:130
      -
      struct NodeStruct * child[2]
      pointers to child tree nodes 0 = left, 1 = right
      Definition: Tree.h:80
      -
      bool cleanstart
      cleansession flag
      Definition: MQTTPacket.h:110
      -
      Configuration data related to all clients.
      Definition: Clients.h:168
      -
      int enableServerCertAuth
      True/False option to enable verification of the server certificate.
      Definition: MQTTAsync.h:1109
      -
      size_t size
      size of the allocated storage
      Definition: Heap.c:73
      -
      char * readUTF(char **pptr, char *enddata)
      Reads a "UTF" string from the input buffer.
      Definition: MQTTPacket.c:416
      -
      char * Socket_getaddrname(struct sockaddr *sa, SOCKET sock)
      Convert a numeric address to character string.
      Definition: Socket.c:1431
      -
      void MQTTClient_destroy(MQTTClient *handle)
      This function frees the memory allocated to an MQTT client (see MQTTClient_create()).
      Definition: MQTTClient.c:583
      -
      void * payload
      A pointer to the payload of the MQTT message.
      Definition: MQTTAsync.h:281
      -
      int enableServerCertAuth
      True/False option to enable verification of the server certificate.
      Definition: MQTTClient.h:712
      -
      unsigned int good
      if we have an error on the socket we turn this off
      Definition: Clients.h:127
      -
      void * MQTTPacket_connack(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create connack packets.
      Definition: MQTTPacketOut.c:142
      -
      int retained
      The retained flag for the LWT message (see MQTTAsync_message.retained).
      Definition: MQTTAsync.h:1035
      -
      The data for a length delimited string.
      Definition: MQTTProperties.h:84
      -
      Persistence_close pclose
      A function pointer to an implementation of Persistence_close().
      Definition: MQTTClientPersistence.h:227
      -
      int connectTimeout
      The time interval in seconds to allow a connect to complete.
      Definition: MQTTAsync.h:1271
      -
      char nextMessageType
      used for retry and expiry
      Definition: Clients.h:63
      -
      void * MQTTPacket_unsuback(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create unsuback packets.
      Definition: MQTTPacketOut.c:411
      -
      int Socket_continueWrite(SOCKET socket)
      Continue an outstanding write for a particular socket.
      Definition: Socket.c:1232
      -
      int MQTTClient_subscribeMany(MQTTClient handle, int count, char *const *topic, int *qos)
      This function attempts to subscribe a client to a list of topics, which may contain wildcards (see wi...
      Definition: MQTTClient.c:2145
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTClient.h:838
      -
      const MQTTAsync_nameValue * httpHeaders
      HTTP headers for websockets.
      Definition: MQTTAsync.h:1372
      -
      void ListZero(List *newl)
      Sets a list structure to empty - all null values.
      Definition: LinkedList.c:42
      -
      int Socket_error(char *aString, SOCKET sock)
      Gets the specific error corresponding to SOCKET_ERROR.
      Definition: Socket.c:109
      -
      int Socket_continueWrites(SOCKET *socket, mutex_type mutex)
      Continue any outstanding socket writes.
      Definition: Socket.c:1363
      -
      void MQTTPacket_freeAck(Ack *pack)
      Free allocated storage for an ack packet.
      Definition: MQTTPacket.c:628
      -
      char fixed_header[5]
      header plus up to 4 length bytes
      Definition: SocketBuffer.h:38
      -
      The data returned on completion of an unsuccessful API call in the response callback onFailure.
      Definition: MQTTAsync.h:547
      -
      const char * httpsProxy
      HTTPS proxy.
      Definition: MQTTClient.h:978
      -
      pending_writes * SocketBuffer_updateWrite(SOCKET socket, char *topic, char *payload)
      Update the queued write data for a socket in the case of QoS 0 messages.
      Definition: SocketBuffer.c:424
      -
      const void * data
      binary password data
      Definition: MQTTClient.h:957
      -
      MQTTAsync_onFailure * onFailure
      A pointer to a callback function to be called if the API call fails.
      Definition: MQTTAsync.h:726
      -
      int maxBufferedMessages
      The maximum number of messages allowed to be buffered.
      Definition: MQTTAsync.h:975
      -
      const char * serverURI
      the serverURI connected to
      Definition: MQTTClient.h:947
      -
      static int lines_written
      number of lines written to the current output file
      Definition: Log.c:106
      -
      MQTTAsync_willOptions * will
      This is a pointer to an MQTTAsync_willOptions structure.
      Definition: MQTTAsync.h:1255
      -
      void MQTTProtocol_keepalive(START_TIME_TYPE now)
      MQTT protocol keepAlive processing.
      Definition: MQTTProtocolClient.c:700
      -
      int MQTTProtocol_handlePubrecs(void *pack, SOCKET sock, Publications **pubToRemove)
      Process an incoming pubrec packet for a socket.
      Definition: MQTTProtocolClient.c:485
      -
      int count
      no of items
      Definition: Tree.h:84
      -
      static size_t Heap_roundup(size_t size)
      Round allocation size up to a multiple of the size of an int.
      Definition: Heap.c:98
      -
      int msgid
      The message identifier is normally reserved for internal use by the MQTT client and server.
      Definition: MQTTClient.h:325
      -
      int MQTTVersion
      Sets the version of MQTT to be used on the connect.
      Definition: MQTTClient.h:941
      -
      int disableDefaultTrustStore
      Don't load default SSL CA.
      Definition: MQTTClient.h:764
      -
      MQTTAsync_message message
      the message being sent to the server
      Definition: MQTTAsync.h:586
      -
      int retained
      The retained flag serves two purposes depending on whether the message it is associated with is being...
      Definition: MQTTAsync.h:314
      -
      int MQTTClient_setDisconnected(MQTTClient handle, void *context, MQTTClient_disconnected *disconnected)
      Sets the MQTTClient_disconnected() callback function for a client.
      Definition: MQTTClient.c:709
      -
      union MQTTAsync_successData5::@4 alt
      A union of the different values that can be returned for subscribe, unsubscribe and publish.
      -
      unsigned char retainAsPublished
      To keep the retain flag as on the original publish message, set to 1.
      Definition: MQTTSubscribeOpts.h:50
      -
      size_t len
      length of frame
      Definition: WebSocket.c:146
      -
      unsigned char rc
      MQTT 5 reason code.
      Definition: MQTTPacket.h:218
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:714
      -
      Data for a connack packet.
      Definition: MQTTPacket.h:133
      -
      int Thread_destroy_sem(sem_type sem)
      Destroy a semaphore which has already been created.
      Definition: Thread.c:360
      -
      void MQTTProtocol_retry(START_TIME_TYPE now, int doRetry, int regardless)
      MQTT retry protocol and socket pending writes processing.
      Definition: MQTTProtocolClient.c:877
      -
      int MQTTVersion
      Whether the MQTT version is 3.1, 3.1.1, or 5.
      Definition: MQTTClient.h:559
      -
      void * context
      calling context - used when calling disconnect_internal
      Definition: Clients.h:151
      -
      int MQTTClient_disconnect(MQTTClient handle, int timeout)
      This function attempts to disconnect the client from the MQTT server.
      Definition: MQTTClient.c:1971
      -
      void SocketBuffer_cleanup(SOCKET socket)
      Cleanup any buffers for a specific socket.
      Definition: SocketBuffer.c:151
      -
      int MQTTVersion
      the version of MQTT being used, 3, 4 or 5
      Definition: Clients.h:152
      -
      Structure to hold all socket data for the module.
      Definition: Socket.h:112
      -
      unsigned int heap_tracking
      switch on heap tracking for this tree?
      Definition: Tree.h:86
      -
      int len
      binary password length
      Definition: MQTTAsync.h:1342
      -
      const char * privateKey
      If not included in the sslKeyStore, this setting points to the file in PEM format containing the clie...
      Definition: MQTTClient.h:696
      -
      const char * enabledCipherSuites
      The list of cipher suites that the client will present to the server during the SSL handshake.
      Definition: MQTTClient.h:709
      -
      void writeChar(char **pptr, char c)
      Writes one character to an output buffer.
      Definition: MQTTPacket.c:441
      -
      int len
      the length of the string
      Definition: MQTTProperties.h:86
      -
      const char * privateKeyPassword
      The password to load the client's privateKey if encrypted.
      Definition: MQTTAsync.h:1096
      -
      static void MQTTProtocol_retries(START_TIME_TYPE now, Clients *client, int regardless)
      MQTT retry processing per client.
      Definition: MQTTProtocolClient.c:767
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:1432
      -
      int MQTTPacket_send_subscribe(List *topics, List *qoss, MQTTSubscribe_options *opts, MQTTProperties *props, int msgid, int dup, Clients *client)
      Send an MQTT subscribe packet down a socket.
      Definition: MQTTPacketOut.c:226
      -
      int timeout
      The client delays disconnection for up to this time (in milliseconds) in order to allow in-flight mes...
      Definition: MQTTAsync.h:1437
      -
      #define ARRAY_SIZE(a)
      Macro to determine the number of elements in a single-dimension array.
      Definition: utf-8.c:37
      -
      const char * enabledCipherSuites
      The list of cipher suites that the client will present to the server during the SSL handshake.
      Definition: MQTTAsync.h:1106
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:552
      -
      void * ssl_error_context
      Application-specific contex for OpenSSL error handler ERR_print_errors_cb Exists only if struct_versi...
      Definition: MQTTClient.h:744
      -
      void SocketBuffer_interrupted(SOCKET socket, size_t actual_len)
      A socket read was interrupted so we need to queue data.
      Definition: SocketBuffer.c:252
      -
      MQTTProperties properties
      MQTT V5 input properties.
      Definition: MQTTAsync.h:1459
      -
      enum MQTTReasonCodes reasonCode
      MQTT V5 reason code returned.
      Definition: MQTTAsync.h:607
      -
      int MQTTClient_unsubscribeMany(MQTTClient handle, int count, char *const *topic)
      This function attempts to remove existing subscriptions to a list of topics made by the specified cli...
      Definition: MQTTClient.c:2292
      -
      int MQTTClient_setCallbacks(MQTTClient handle, void *context, MQTTClient_connectionLost *cl, MQTTClient_messageArrived *ma, MQTTClient_deliveryComplete *dc)
      This function sets the callback functions for a specific client.
      Definition: MQTTClient.c:1059
      -
      struct MQTTAsync_successData5::@4::@6 pub
      For publish, the message being sent to the server.
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:969
      -
      char * clientID
      string client id
      Definition: MQTTPacket.h:121
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTClient.h:827
      -
      int sslVersion
      The SSL/TLS version to use.
      Definition: MQTTAsync.h:1115
      -
      int MQTTClient_unsubscribe(MQTTClient handle, const char *topic)
      This function attempts to remove an existing subscription made by the specified client.
      Definition: MQTTClient.c:2315
      -
      bool password
      3.1 password
      Definition: MQTTPacket.h:114
      -
      int Socket_close_only(SOCKET socket)
      Close a socket without removing it from the select list.
      Definition: Socket.c:862
      -
      int msgId
      MQTT message id.
      Definition: MQTTPacket.h:174
      -
      int(* Persistence_put)(void *handle, char *key, int bufcount, char *buffers[], int buflens[])
      Put the specified data into the persistent store.
      Definition: MQTTClientPersistence.h:140
      -
      struct MQTTClient_willOptions::@17 payload
      The LWT payload in binary form.
      -
      int payloadlen
      payload length
      Definition: MQTTPacket.h:204
      -
      union MQTTAsync_successData::@1 alt
      A union of the different values that can be returned for subscribe, unsubscribe and publish.
      -
      int maxInflight
      This controls how many messages can be in-flight simultaneously.
      Definition: MQTTAsync.h:1249
      -
      willMessages * will
      the MQTT will message, if any
      Definition: Clients.h:137
      -
      Data for a connect packet.
      Definition: MQTTPacket.h:89
      -
      int disableDefaultTrustStore
      Don't load default SSL CA.
      Definition: MQTTAsync.h:1161
      -
      static int MQTTProtocol_queueAck(Clients *client, int ackType, int msgId)
      Queue an ack message.
      Definition: MQTTProtocolClient.c:850
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTClient.h:277
      -
      char * SocketBuffer_complete(SOCKET socket)
      A socket read has now completed so we can get rid of the queue.
      Definition: SocketBuffer.c:281
      -
      void ListEmpty(List *aList)
      Removes and frees all items in a list, leaving the list ready for new items.
      Definition: LinkedList.c:359
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTClient.h:234
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTSubscribeOpts.h:41
      -
      int messageIDCompare(void *a, void *b)
      List callback function for comparing Message structures by message id.
      Definition: MQTTProtocolClient.c:73
      -
      static const char * UTF8_char_validate(int len, const char *data)
      Validate a single UTF-8 character.
      Definition: utf-8.c:76
      -
      int do_openssl_init
      1 = we do openssl init, 0 = leave it to the application
      Definition: MQTTClient.h:236
      -
      The data returned on completion of a successful API call in the response callback onSuccess.
      Definition: MQTTAsync.h:601
      -
      const char * CApath
      From the OpenSSL documentation: If CApath is not NULL, it points to a directory containing CA certifi...
      Definition: MQTTAsync.h:1129
      -
      Persistence_keys pkeys
      A function pointer to an implementation of Persistence_keys().
      Definition: MQTTClientPersistence.h:243
      -
      unsigned char readChar(char **pptr)
      Reads one character from the input buffer.
      Definition: MQTTPacket.c:428
      -
      void SocketBuffer_queueChar(SOCKET socket, char c)
      Queued a Charactor to a specific socket.
      Definition: SocketBuffer.c:303
      -
      int max_count
      max number of properties that the currently allocated array can store
      Definition: MQTTProperties.h:115
      -
      int MQTTProtocol_handlePubrels(void *pack, SOCKET sock)
      Process an incoming pubrel packet for a socket.
      Definition: MQTTProtocolClient.c:565
      -
      static Tree heap
      Tree that holds the allocation records.
      Definition: Heap.c:79
      -
      MQTTResponse MQTTClient_connect5(MQTTClient handle, MQTTClient_connectOptions *options, MQTTProperties *connectProperties, MQTTProperties *willProperties)
      Attempts to connect a previously-created client (see MQTTClient_create()) to an MQTT server using MQT...
      Definition: MQTTClient.c:1714
      -
      Options for the ::MQTTAsync_disconnect call.
      Definition: MQTTAsync.h:1427
      -
      Persistence_remove premove
      A function pointer to an implementation of Persistence_remove().
      Definition: MQTTClientPersistence.h:239
      -
      MQTTClient_nameValue * MQTTClient_getVersionInfo(void)
      This function returns version information about the library.
      Definition: MQTTClient.c:2962
      -
      MQTTProperties properties
      MQTT 5.0 properties.
      Definition: MQTTPacket.h:206
      -
      MQTTProperties properties
      MQTT 5.0 properties.
      Definition: MQTTPacket.h:189
      -
      int MQTTProtocol_startPublish(Clients *pubclient, Publish *publish, int qos, int retained, Messages **mm)
      Start a new publish exchange.
      Definition: MQTTProtocolClient.c:171
      -
      int payloadlen
      The length of the MQTT message payload in bytes.
      Definition: MQTTClient.h:279
      -
      static FILE * trace_destination
      flag to indicate if trace is to be sent to a stream
      Definition: Log.c:103
      -
      Definition: Clients.h:79
      -
      int SocketBuffer_newDefQ(void)
      Create a new default queue when one has just been used.
      Definition: SocketBuffer.c:79
      -
      const char * MQTTClient_strerror(int code)
      Returns a pointer to the string representation of the error or NULL.
      Definition: MQTTClient.c:2998
      -
      Node * root
      root node pointer
      Definition: Tree.h:80
      -
      unsigned char byte
      holds the value of a byte property type
      Definition: MQTTProperties.h:99
      -
      List * ListInitialize(void)
      Allocates and initializes a new list structure.
      Definition: LinkedList.c:52
      -
      int HeapDump(FILE *file)
      Dump the state of the heap.
      Definition: Heap.c:462
      -
      const char * username
      MQTT v3.1 user name.
      Definition: Clients.h:121
      -
      raw websocket frame data
      Definition: WebSocket.c:144
      -
      int pstcontainskey(void *handle, char *key)
      Returns whether if a wire message is persisted in the client persistence directory.
      Definition: MQTTPersistenceDefault.c:405
      -
      bool dup
      DUP flag bit.
      Definition: MQTTPacket.h:79
      -
      Client will message data.
      Definition: Clients.h:70
      -
      int SocketBuffer_writeComplete(SOCKET socket)
      A socket write has now completed so we can get rid of the queue.
      Definition: SocketBuffer.c:411
      -
      int Thread_destroy_cond(cond_type condvar)
      Destroy a condition variable.
      Definition: Thread.c:475
      -
      int maxInflightMessages
      The maximum number of messages in flight.
      Definition: MQTTClient.h:962
      -
      int pstclose(void *handle)
      Delete client persistence directory (if empty).
      Definition: MQTTPersistenceDefault.c:371
      -
      char *const * serverURIs
      Definition: MQTTAsync.h:1318
      -
      int maxRetryInterval
      The maximum automatic reconnect retry interval in seconds.
      Definition: MQTTAsync.h:1337
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTClient.h:626
      -
      int keepAliveInterval
      The "keep alive" interval, measured in seconds, defines the maximum time that should pass without com...
      Definition: MQTTAsync.h:1223
      -
      int MQTTProtocol_handlePublishes(void *pack, SOCKET sock)
      Process an incoming publish packet for a socket The payload field of the packet has not been transfer...
      Definition: MQTTProtocolClient.c:323
      -
      ListElement * ListInsert(List *aList, void *content, size_t size, ListElement *index)
      Insert an item to a list at a specific position.
      Definition: LinkedList.c:107
      -
      unsigned int cleanstart
      MQTT V5 clean start flag.
      Definition: Clients.h:125
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTClient.h:274
      -
      void * ListPopTail(List *aList)
      Removes but does not free the last item in a list.
      Definition: LinkedList.c:306
      -
      Header header
      MQTT header byte.
      Definition: MQTTPacket.h:173
      -
      char * payload
      binary payload, length delimited
      Definition: MQTTPacket.h:203
      -
      int connect_sent
      the current number of outbound messages on reconnect that we've sent
      Definition: Clients.h:141
      -
      pending_writes * SocketBuffer_getWrite(SOCKET socket)
      Get any queued write data for a specific socket.
      Definition: SocketBuffer.c:399
      -
      void * ssl_psk_context
      Application-specific contex for ssl_psk_cb Exists only if struct_version >= 4.
      Definition: MQTTAsync.h:1154
      -
      const void * password
      MQTT v3.1 binary password.
      Definition: Clients.h:123
      -
      void MQTTProtocol_writeAvailable(SOCKET socket)
      Callback that is invoked when the socket is available for writing.
      Definition: MQTTProtocolClient.c:1009
      -
      int SocketBuffer_initialize(void)
      Initialize the socketBuffer module.
      Definition: SocketBuffer.c:102
      -
      int MQTTPacket_send_pubcomp(int MQTTVersion, int msgid, networkHandles *net, const char *clientID)
      Send an MQTT PUBCOMP packet down a socket.
      Definition: MQTTPacket.c:774
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTClient.h:630
      -
      List * messageQueue
      inbound complete but undelivered messages
      Definition: Clients.h:142
      -
      unsigned int cleansession
      MQTT V3 clean session flag.
      Definition: Clients.h:124
      -
      int MQTTVersion
      the version of MQTT being used
      Definition: MQTTAsync.h:628
      -
      int MQTTPacket_send_pubrec(int MQTTVersion, int msgid, networkHandles *net, const char *clientID)
      Send an MQTT PUBREC packet down a socket.
      Definition: MQTTPacket.c:733
      -
      int MQTTPacket_send(networkHandles *net, Header header, char *buffer, size_t buflen, int freeData, int MQTTVersion)
      Sends an MQTT packet in one system call write.
      Definition: MQTTPacket.c:193
      -
      int msgid
      The message identifier is reserved for internal use by the MQTT client and server.
      Definition: MQTTAsync.h:327
      -
      const char * value
      value string
      Definition: MQTTAsync.h:1185
      -
      sem_type Thread_create_sem(int *rc)
      Create a new semaphore.
      Definition: Thread.c:216
      -
      unsigned int protos_len
      The length of the vector protos vector Exists only if struct_version >= 5.
      Definition: MQTTClient.h:779
      -
      int Socket_close(SOCKET socket)
      Close a socket and remove it from the select list.
      Definition: Socket.c:935
      -
      static int max_lines_per_file
      maximum number of lines to write to one trace file
      Definition: Log.c:107
      -
      Structure to hold all data for one tree.
      Definition: Tree.h:76
      -
      void * ptr
      pointer to the allocated storage
      Definition: Heap.c:72
      -
      List * outboundMsgs
      outbound in flight messages
      Definition: Clients.h:139
      -
      Each item on the heap is recorded with this structure.
      Definition: Heap.c:68
      -
      const char * username
      MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
      Definition: MQTTAsync.h:477
      -
      Options for the MQTTClient_createWithOptions call.
      Definition: MQTTClient.h:548
      -
      Publications * MQTTProtocol_storePublication(Publish *publish, int *len)
      Store message data for possible retry.
      Definition: MQTTProtocolClient.c:262
      -
      int(* ssl_error_cb)(const char *str, size_t len, void *u)
      Callback function for OpenSSL error handler ERR_print_errors_cb Exists only if struct_version >= 3.
      Definition: MQTTClient.h:738
      -
      Persistence_open popen
      A function pointer to an implementation of Persistence_open().
      Definition: MQTTClientPersistence.h:223
      -
      int Thread_post_sem(sem_type sem)
      Post a semaphore.
      Definition: Thread.c:332
      -
      int Socket_writev(SOCKET socket, iobuf *iovecs, int count, unsigned long *bytes)
      Attempts to write a series of iovec buffers to a socket in one system call so that they are sent as o...
      Definition: Socket.c:690
      -
      int UTF8_validateString(const char *string)
      Validate a null-terminated string has only UTF-8 characters.
      Definition: utf-8.c:156
      -
      int Socket_getch(SOCKET socket, char *c)
      Reads one byte from a socket.
      Definition: Socket.c:589
      -
      int MQTTPacket_encode(char *buf, size_t length)
      Encodes the message length according to the MQTT algorithm.
      Definition: MQTTPacket.c:300
      -
      char * destinationName
      the topic destination for the message
      Definition: MQTTAsync.h:587
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:470
      -
      unsigned int connected
      whether it is currently connected
      Definition: Clients.h:126
      -
      ListElement * ListAppend(List *aList, void *content, size_t size)
      Append an item to a list.
      Definition: LinkedList.c:90
      -
      int MQTTProtocol_handleUnsubacks(void *pack, SOCKET sock)
      Process an incoming unsuback packet for a socket.
      Definition: MQTTProtocolOut.c:444
      -
      size_t MQTTProtocol_addressPort(const char *uri, int *port, const char **topic, int default_port)
      Separates an address:port into two separate values.
      Definition: MQTTProtocolOut.c:56
      -
      size_t current_size
      current size of the heap in bytes
      Definition: Heap.h:64
      -
      void * beforeWrite_context
      context to be used with the persistence beforeWrite callbacks
      Definition: Clients.h:149
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTSubscribeOpts.h:38
      -
      static int ListUnlink(List *aList, void *content, int(*callback)(void *, void *), int freeContent)
      Removes and optionally frees an element in a list by comparing the content.
      Definition: LinkedList.c:201
      -
      int retryInterval
      The time interval in seconds after which unacknowledged publish requests are retried during a TCP ses...
      Definition: MQTTAsync.h:1279
      -
      void MQTTProtocol_emptyMessageList(List *msgList)
      Empty a message list, leaving it able to accept new messages.
      Definition: MQTTProtocolClient.c:973
      -
      bool retain
      retained flag bit
      Definition: MQTTPacket.h:77
      -
      static const char * packet_names[]
      List of the predefined MQTT v3/v5 packet names.
      Definition: MQTTPacket.c:50
      -
      int MQTTProtocol_unsubscribe(Clients *client, List *topics, int msgID, MQTTProperties *props)
      MQTT outgoing unsubscribe processing for a client.
      Definition: MQTTProtocolOut.c:427
      -
      #define _unlink
      _unlink mapping for linux
      Definition: Log.c:59
      -
      char ** buffers
      number of buffers/buflens/frees
      Definition: Socket.h:102
      -
      List * outboundQueue
      outbound queued messages
      Definition: Clients.h:143
      -
      static char * readUTFlen(char **pptr, char *enddata, int *len)
      Reads a "UTF" string from the input buffer.
      Definition: MQTTPacket.c:383
      -
      const char * password
      MQTT servers that support the MQTT v3.1.1 protocol provide authentication and authorisation by user n...
      Definition: MQTTClient.h:898
      -
      int MQTTPacket_send_unsubscribe(List *topics, MQTTProperties *props, int msgid, int dup, Clients *client)
      Send an MQTT unsubscribe packet down a socket.
      Definition: MQTTPacketOut.c:362
      -
      const char * username
      MQTT servers that support the MQTT v3.1.1 protocol provide authentication and authorisation by user n...
      Definition: MQTTClient.h:892
      -
      Data for one of the ack packets.
      Definition: MQTTPacket.h:214
      -
      char * MQTTStrdup(const char *src)
      Duplicate a string, safely, allocating space on the heap.
      Definition: MQTTProtocolClient.c:1081
      -
      void * MQTTPacket_header_only(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create packets which have only a header.
      Definition: MQTTPacket.c:498
      -
      void Socket_outTerminate(void)
      Terminate the socket module.
      Definition: Socket.c:171
      -
      Definition: MQTTAsyncUtils.h:149
      -
      Definition: MQTTProperties.c:28
      -
      const char * httpProxy
      HTTP proxy.
      Definition: MQTTAsync.h:1376
      -
      Persistence_containskey pcontainskey
      A function pointer to an implementation of Persistence_containskey().
      Definition: MQTTClientPersistence.h:251
      -
      unsigned char retainHandling
      0 - send retained messages at the time of the subscribe (original MQTT behaviour) 1 - send retained m...
      Definition: MQTTSubscribeOpts.h:55
      -
      int MQTTClient_create(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
      This function creates an MQTT client ready for connection to the specified server and using the speci...
      Definition: MQTTClient.c:534
      -
      MQTTAsync_onSuccess5 * onSuccess5
      A pointer to a callback function to be called if the disconnect successfully completes.
      Definition: MQTTAsync.h:1469
      -
      int MQTTPersistence_restoreMessageQueue(Clients *c)
      Restores a queue of messages from persistence to memory.
      Definition: MQTTPersistence.c:856
      -
      const char * Messages_get(int index, enum LOG_LEVELS log_level)
      Get a log message by its index.
      Definition: Messages.c:95
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:1080
      -
      int readInt(char **pptr)
      Calculates an integer from two bytes read from the input buffer.
      Definition: MQTTPacket.c:362
      -
      Definition: Log.h:63
      -
      void * TreeAddByIndex(Tree *aTree, void *content, size_t size, int index)
      Add an item to a tree.
      Definition: Tree.c:210
      -
      int websocket
      socket has been upgraded to use web sockets
      Definition: Clients.h:93
      -
      const char * privateKeyPassword
      The password to load the client's privateKey if encrypted.
      Definition: MQTTClient.h:699
      -
      Initialization options.
      Definition: MQTTAsync.h:231
      -
      Persistence_clear pclear
      A function pointer to an implementation of Persistence_clear().
      Definition: MQTTClientPersistence.h:247
      -
      void MQTTPersistence_wrapMsgID(Clients *client)
      Checks whether the message IDs wrapped by looking for the largest gap between two consecutive message...
      Definition: MQTTPersistence.c:605
      -
      int qos
      The quality of service (QoS) assigned to the message.
      Definition: MQTTAsync.h:295
      -
      MQTTAsync_token token
      A token identifying the failed request.
      Definition: MQTTAsync.h:538
      -
      int msgId
      MQTT message id.
      Definition: MQTTPacket.h:202
      -
      static heap_info state
      global heap state information
      Definition: Heap.c:58
      -
      int retryInterval
      The time interval in seconds after which unacknowledged publish requests are retried during a TCP ses...
      Definition: MQTTClient.h:910
      -
      int(* compare)(void *, void *, int)
      comparison function
      Definition: Tree.h:81
      -
      MQTTAsync_token token
      A token is returned from the call.
      Definition: MQTTAsync.h:739
      -
      List * qoss
      list of granted QoSs (MQTT 3/4) / reason codes (MQTT 5)
      Definition: MQTTPacket.h:177
      -
      const unsigned char * protos
      The protocol-lists must be in wire-format, which is defined as a vector of non-empty,...
      Definition: MQTTAsync.h:1170
      -
      int Thread_lock_mutex(mutex_type mutex)
      Lock a mutex which has alrea.
      Definition: Thread.c:137
      -
      int pending_socketcompare(void *a, void *b)
      List callback function for comparing pending_writes by socket.
      Definition: SocketBuffer.c:388
      -
      void * afterRead_context
      context to be used with the persistence afterRead callback
      Definition: Clients.h:150
      -
      MQTTResponse MQTTClient_unsubscribe5(MQTTClient handle, const char *topic, MQTTProperties *props)
      This function attempts to remove an existing subscription made by the specified client using MQTT 5....
      Definition: MQTTClient.c:2306
      -
      int msgID
      the MQTT message id
      Definition: Clients.h:133
      -
      const unsigned char * protos
      The protocol-lists must be in wire-format, which is defined as a vector of non-empty,...
      Definition: MQTTClient.h:773
      -
      int MQTTPersistence_clear(Clients *c)
      Clears the persistent store.
      Definition: MQTTPersistence.c:166
      -
      static socket_queue * def_queue
      Default input queue buffer.
      Definition: SocketBuffer.c:45
      -
      uint8_t mask[4]
      the websockets mask the payload is masked with, if any
      Definition: MQTTPacket.h:207
      -
      void Log_stackTrace(enum LOG_LEVELS log_level, int msgno, thread_id_type thread_id, int current_depth, const char *name, int line, int *rc)
      The reason for this function is to make trace logging as fast as possible so that the function exit/e...
      Definition: Log.c:456
      -
      static int MQTTPacket_send_ack(int MQTTVersion, int type, int msgid, int dup, networkHandles *net)
      Send an MQTT acknowledgement packet down a socket.
      Definition: MQTTPacket.c:647
      -
      int passwordlen
      MQTT password length.
      Definition: Clients.h:122
      -
      MQTTProperties properties
      The MQTT V5 properties associated with the message.
      Definition: MQTTClient.h:329
      -
      const char * name
      name string
      Definition: MQTTAsync.h:1184
      -
      int * frees
      array of lengths of buffers
      Definition: Socket.h:104
      -
      int MQTTClient_getPendingDeliveryTokens(MQTTClient handle, MQTTClient_deliveryToken **tokens)
      This function sets a pointer to an array of delivery tokens for messages that are currently in-flight...
      Definition: MQTTClient.c:2894
      -
      int MQTTPersistence_close(Clients *c)
      Close persistent store.
      Definition: MQTTPersistence.c:137
      -
      MQTTProperties properties
      The MQTT V5 properties associated with the message.
      Definition: MQTTAsync.h:331
      -
      MQTTProperties properties
      MQTT 5.0 properties.
      Definition: MQTTPacket.h:176
      -
      MQTTAsync_onFailure5 * onFailure5
      A pointer to a callback function to be called if the connect fails.
      Definition: MQTTAsync.h:1368
      -
      int pstremove(void *handle, char *key)
      Delete a persisted message from the client persistence directory.
      Definition: MQTTPersistenceDefault.c:322
      -
      MQTTProperties properties
      The MQTT properties on the ack, if any.
      Definition: MQTTAsync.h:558
      -
      MQTTProperties * willProperties
      MQTT V5 properties for the will message in the connect.
      Definition: MQTTAsync.h:1356
      -
      The data returned on completion of a successful API call in the response callback onSuccess.
      Definition: MQTTAsync.h:570
      -
      A structure containing the function pointers to a persistence implementation and the context or state...
      Definition: MQTTClientPersistence.h:215
      -
      int keepAliveInterval
      the MQTT keep alive interval
      Definition: Clients.h:134
      -
      struct MQTTAsync_successData5::@4::@5 sub
      For subscribeMany, the list of reasonCodes returned by the server.
      -
      int MQTTVersion
      the version of MQTT
      Definition: MQTTPacket.h:188
      -
      The data returned on completion of an unsuccessful API call in the response callback onFailure.
      Definition: MQTTAsync.h:535
      -
      Bitfields for the MQTT header byte.
      Definition: MQTTPacket.h:63
      -
      Structure to hold all data for one list.
      Definition: LinkedList.h:67
      -
      void Socket_addPendingWrite(SOCKET socket)
      Add a socket to the pending write list, so that it is checked for writing in select.
      Definition: Socket.c:836
      -
      Structure to hold an MQTT version 5 property of any type.
      Definition: MQTTProperties.h:94
      -
      This structure represents a persistent data store, used to store outbound and inbound messages,...
      -
      const char * httpProxy
      HTTP proxy.
      Definition: MQTTClient.h:974
      -
      Definition: Thread.h:55
      -
      MQTTResponse MQTTClient_publish5(MQTTClient handle, const char *topicName, int payloadlen, const void *payload, int qos, int retained, MQTTProperties *properties, MQTTClient_deliveryToken *deliveryToken)
      Attempts to publish a message to a given topic using MQTT version 5.0 (see also MQTTClient_publishMes...
      Definition: MQTTClient.c:2323
      -
      const char * message
      The LWT payload in string form.
      Definition: MQTTClient.h:634
      -
      MQTTPersistence_beforeWrite * beforeWrite
      persistence write callback
      Definition: Clients.h:147
      -
      enum MQTTReasonCodes reasonCode
      Reason code for MQTTV5 disconnect.
      Definition: MQTTAsync.h:1463
      -
      MQTTProperties properties
      MQTT 5.0 properties.
      Definition: MQTTPacket.h:155
      -
      struct MQTTAsync_connectData::@0 binarypwd
      The password parameter of the MQTT authentication.
      -
      struct MQTTAsync_connectOptions::@10 binarypwd
      Optional binary password.
      -
      void MQTTPacket_free_packet(MQTTPacket *pack)
      Free allocated storage for a various packet tyoes.
      Definition: MQTTPacket.c:925
      -
      const char * httpsProxy
      HTTPS proxy.
      Definition: MQTTAsync.h:1380
      -
      void * mymalloc(char *file, int line, size_t size)
      Allocates a block of memory.
      Definition: Heap.c:158
      -
      int len
      number of elements in the following array (1 to 4)
      Definition: utf-8.c:46
      -
      MQTTAsync_connectOptions defines several settings that control the way the client connects to an MQTT...
      Definition: MQTTAsync.h:1198
      -
      char * Socket_getdata(SOCKET socket, size_t bytes, size_t *actual_len, int *rc)
      Attempts to read a number of bytes from a socket, non-blocking.
      Definition: Socket.c:627
      -
      void * context
      A pointer to any application-specific context.
      Definition: MQTTAsync.h:732
      -
      size_t buflen
      total length of the buffer
      Definition: SocketBuffer.h:39
      -
      MQTT version 5.0 response information.
      Definition: MQTTClient.h:1024
      -
      unsigned int protos_len
      The length of the vector protos vector Exists only if struct_version >= 5.
      Definition: MQTTAsync.h:1176
      -
      ListElement * last
      last element in the list
      Definition: LinkedList.h:70
      -
      char struct_id[4]
      The eyecatcher for this structure.
      Definition: MQTTClient.h:551
      -
      Data related to one client.
      Definition: Clients.h:118
      -
      int retryInterval
      the MQTT retry interval for QoS > 0
      Definition: Clients.h:135
      -
      ListElement * ListFind(List *aList, void *content)
      Finds an element in a list by comparing the content pointers, rather than the contents.
      Definition: LinkedList.c:140
      -
      void Heap_unlink(char *file, int line, void *p)
      Remove an item from the recorded heap without actually freeing it.
      Definition: Heap.c:300
      -
      size_t pos
      current position within the buffer
      Definition: WebSocket.c:147
      -
      int Thread_unlock_mutex(mutex_type mutex)
      Unlock a mutex which has already been locked.
      Definition: Thread.c:158
      -
      ListElement * first
      first element in the list
      Definition: LinkedList.h:69
      -
      pf new_packets[]
      Array of functions to build packets, indexed according to packet code.
      Definition: MQTTPacket.c:73
      -
      void * context
      A pointer to any data required to initialize the persistent store.
      Definition: MQTTClientPersistence.h:219
      -
      int Heap_initialize(void)
      Heap initialization.
      Definition: Heap.c:406
      -
      char * willTopic
      will topic
      Definition: MQTTPacket.h:122
      -
      const void * data
      binary payload data
      Definition: MQTTAsync.h:1045
      -
      mutex_type Thread_create_mutex(int *rc)
      Create a new mutex.
      Definition: Thread.c:114
      -
      unsigned char noLocal
      To not receive our own publications, set to 1.
      Definition: MQTTSubscribeOpts.h:45
      -
      MQTTAsync_onFailure * onFailure
      A pointer to a callback function to be called if the connect fails.
      Definition: MQTTAsync.h:1296
      -
      MQTTAsync_onFailure5 * onFailure5
      A pointer to a callback function to be called if the API call successfully completes.
      Definition: MQTTAsync.h:751
      -
      void MQTTPacket_freePublish(Publish *pack)
      Free allocated storage for a publish packet.
      Definition: MQTTPacket.c:612
      -
      void writeUTF(char **pptr, const char *string)
      Writes a "UTF" string to an output buffer.
      Definition: MQTTPacket.c:467
      -
      ListElement * ListPrevElement(List *aList, ListElement **pos)
      Backward iteration through a list.
      Definition: LinkedList.c:424
      -
      int count
      number of property entries in the array
      Definition: MQTTProperties.h:114
      -
      Sockets mod_s
      Structure to hold all socket data for this module.
      Definition: Socket.c:72
      -
      char * Protocol
      MQTT protocol name.
      Definition: MQTTPacket.h:120
      -
      const char * MQTTPacket_name(int ptype)
      Converts an MQTT packet code into its name.
      Definition: MQTTPacket.c:65
      -
      void writeInt(char **pptr, int anInt)
      Writes an integer as 2 bytes to an output buffer.
      Definition: MQTTPacket.c:453
      -
      int MQTTPacket_send_pubrel(int MQTTVersion, int msgid, int dup, networkHandles *net, const char *clientID)
      Send an MQTT PUBREL packet down a socket.
      Definition: MQTTPacket.c:754
      -
      MQTTProperty * array
      array of properties
      Definition: MQTTProperties.h:117
      -
      void MQTTClient_freeMessage(MQTTClient_message **message)
      This function frees memory allocated to an MQTT message, including the additional memory allocated to...
      Definition: MQTTClient.c:628
      -
      const void * data
      binary password data
      Definition: MQTTAsync.h:1343
      -
      int MQTTProtocol_handlePubcomps(void *pack, SOCKET sock, Publications **pubToRemove)
      Process an incoming pubcomp packet for a socket.
      Definition: MQTTProtocolClient.c:642
      -
      union Connack::@23 flags
      connack flags byte
      -
      char byte
      the whole byte
      Definition: MQTTPacket.h:65
      -
      Definition: StackTrace.c:53
      -
      int MQTTVersion
      current MQTT version being used to connect
      Definition: MQTTAsyncUtils.h:84
      -
      static char * trace_destination_name
      the name of the trace file
      Definition: Log.c:104
      -
      int MQTTProtocol_handlePubacks(void *pack, SOCKET sock, Publications **pubToRemove)
      Process an incoming puback packet for a socket.
      Definition: MQTTProtocolClient.c:436
      -
      MQTTAsync_message message
      the message being sent to the server
      Definition: MQTTAsync.h:621
      -
      char upper
      upper limit of valid range
      Definition: utf-8.c:50
      -
      int retained
      The retained flag serves two purposes depending on whether the message it is associated with is being...
      Definition: MQTTClient.h:314
      -
      int ListDetachItem(List *aList, void *content, int(*callback)(void *, void *))
      Removes but does not free an element in a list by comparing the content.
      Definition: LinkedList.c:335
      -
      int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
      This function attempts to connect a previously-created client (see MQTTClient_create()) to an MQTT se...
      Definition: MQTTClient.c:1700
      -
      int reasonCodeCount
      the number of reason codes in the reasonCodes array
      Definition: MQTTAsync.h:615
      -
      int isReady(int index)
      Don't accept work from a client unless it is accepting work back, i.e.
      Definition: Socket.c:344
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTClient.h:683
      -
      static int Internal_heap_unlink(char *file, int line, void *p)
      Remove an item from the recorded heap without actually freeing it.
      Definition: Heap.c:245
      -
      char * FindString(char *filename, const char *eyecatcher_input)
      Finds an eyecatcher in a binary file and returns the following value.
      Definition: MQTTVersion.c:74
      -
      MQTTProperties properties
      MQTT V5 input properties.
      Definition: MQTTAsync.h:755
      -
      int(* Persistence_open)(void **handle, const char *clientID, const char *serverURI, void *context)
      Initialize the persistent store.
      Definition: MQTTClientPersistence.h:113
      -
      Definition: Log.c:80
      -
      void * MQTTPacket_Factory(int MQTTVersion, networkHandles *net, int *error)
      Reads one MQTT packet from a socket.
      Definition: MQTTPacket.c:103
      -
      int sslVersion
      The SSL/TLS version to use.
      Definition: MQTTClient.h:718
      -
      int pstopen(void **handle, const char *clientID, const char *serverURI, void *context)
      Create persistence directory for the client: context/clientID-serverURI.
      Definition: MQTTPersistenceDefault.c:65
      -
      Definition: SHA1.h:39
      -
      int MQTTClient_waitForCompletion(MQTTClient handle, MQTTClient_deliveryToken mdt, unsigned long timeout)
      This function is called by the client application to synchronize execution of the main thread with co...
      Definition: MQTTClient.c:2852
      -
      Definition: MQTTAsyncUtils.h:89
      -
      int do_openssl_init
      1 = we do openssl init, 0 = leave it to the application
      Definition: MQTTAsync.h:238
      -
      int MQTTPacket_VBIdecode(int(*getcharfn)(char *, int), unsigned int *value)
      Decodes the message length according to the MQTT algorithm.
      Definition: MQTTPacket.c:1032
      -
      void MQTTResponse_free(MQTTResponse response)
      Frees the storage associated with the MQTT response.
      Definition: MQTTClient.c:647
      -
      Header header
      MQTT header byte.
      Definition: MQTTPacket.h:199
      -
      int automaticReconnect
      Reconnect automatically in the case of a connection being lost.
      Definition: MQTTAsync.h:1329
      -
      int Socket_abortWrite(SOCKET socket)
      Continue an outstanding write for a particular socket.
      Definition: Socket.c:1317
      -
      int Socket_noPendingWrites(SOCKET socket)
      Indicate whether any data is pending outbound for a socket.
      Definition: Socket.c:674
      -
      MQTTAsync_onSuccess5 * onSuccess5
      A pointer to a callback function to be called if the API call successfully completes.
      Definition: MQTTAsync.h:745
      -
      int pstmkdir(char *pPathname)
      Function to create a directory.
      Definition: MQTTPersistenceDefault.c:165
      -
      int MQTTPersistence_beforeWrite(void *context, int bufcount, char *buffers[], int buflens[])
      A callback which is invoked just before a write to persistence.
      Definition: MQTTClientPersistence.h:264
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:277
      -
      void writeInt4(char **pptr, int anInt)
      Writes an integer as 4 bytes to an output buffer.
      Definition: MQTTPacket.c:945
      -
      void ListFree(List *aList)
      Removes and frees all items in a list, and frees the list itself.
      Definition: LinkedList.c:381
      -
      int MQTTPacket_send_puback(int MQTTVersion, int msgid, networkHandles *net, const char *clientID)
      Send an MQTT PUBACK packet down a socket.
      Definition: MQTTPacket.c:679
      -
      char * file
      the name of the source file where the storage was allocated
      Definition: Heap.c:70
      -
      int MQTTClient_setCommandTimeout(MQTTClient handle, unsigned long milliSeconds)
      Sets the timeout value for un/subscribe commands when waiting for the un/suback response from the ser...
      Definition: MQTTClient.c:2947
      -
      int(* Persistence_containskey)(void *handle, char *key)
      Returns whether any data has been persisted using the specified key.
      Definition: MQTTClientPersistence.h:208
      -
      int len
      binary payload length
      Definition: MQTTAsync.h:1044
      -
      int connectTimeout
      The time interval in seconds to allow a connect to complete.
      Definition: MQTTClient.h:902
      -
      int MQTTPacket_send_pingreq(networkHandles *net, const char *clientID)
      Send an MQTT PINGREQ packet down a socket.
      Definition: MQTTPacketOut.c:201
      -
      void Thread_start(thread_fn fn, void *parameter)
      Start a new thread.
      Definition: Thread.c:59
      -
      struct MQTTAsync_successData5::@4::@8 unsub
      For unsubscribeMany, the list of reasonCodes returned by the server.
      -
      int minRetryInterval
      The minimum automatic reconnect retry interval in seconds.
      Definition: MQTTAsync.h:1333
      -
      static int clientSockCompare(void *a, void *b)
      List callback function for comparing clients by socket.
      Definition: MQTTClient.c:687
      -
      void * MQTTPersistence_restorePacket(int MQTTVersion, char *buffer, size_t buflen)
      Returns a MQTT packet restored from persisted data.
      Definition: MQTTPersistence.c:363
      -
      void * ssl_psk_context
      Application-specific contex for ssl_psk_cb Exists only if struct_version >= 4.
      Definition: MQTTClient.h:757
      -
      void MQTTProtocol_removePublication(Publications *p)
      Remove stored message data.
      Definition: MQTTProtocolClient.c:295
      -
      List * write_pending
      list of sockets for which a write is pending
      Definition: Socket.h:115
      -
      int HeapDumpString(FILE *file, char *str)
      Dump a string from the heap so that it can be displayed conveniently.
      Definition: Heap.c:443
      -
      void * MQTTPacket_publish(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create publish packets.
      Definition: MQTTPacket.c:556
      -
      int len
      binary password length
      Definition: MQTTClient.h:956
      -
      struct ListElementStruct * next
      pointer to next list element
      Definition: LinkedList.h:75
      -
      bool username
      3.1 user name
      Definition: MQTTPacket.h:115
      -
      struct @34::@35 bytes[4]
      up to 4 bytes can be used per character
      -
      int payloadlen
      The length of the MQTT message payload in bytes.
      Definition: MQTTAsync.h:279
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:236
      -
      int MQTTPacket_send_disconnect(Clients *client, enum MQTTReasonCodes reason, MQTTProperties *props)
      Send an MQTT disconnect packet down a socket.
      Definition: MQTTPacket.c:511
      -
      int MQTTProtocol_assignMsgId(Clients *client)
      Assign a new message id for a client.
      Definition: MQTTProtocolClient.c:86
      -
      int sessionPresent
      the session present flag returned from the server
      Definition: MQTTAsync.h:629
      -
      int Socket_new(const char *addr, size_t addr_len, int port, SOCKET *sock)
      Create a new socket and TCP connect to an address/port.
      Definition: Socket.c:1025
      -
      MQTTLenString data
      The value of a string property, or the name of a user property.
      Definition: MQTTProperties.h:103
      -
      int sessionPresent
      the session present flag returned from the server
      Definition: MQTTAsync.h:594
      -
      MQTTAsync_token token
      A token identifying the successful request.
      Definition: MQTTAsync.h:606
      -
      void * myrealloc(char *file, int line, void *p, size_t size)
      Reallocates a block of memory.
      Definition: Heap.c:320
      -
      struct MQTTAsync_willOptions::@9 payload
      The LWT payload in binary form.
      -
      void * content
      pointer to element content
      Definition: LinkedList.h:76
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:1027
      -
      int MQTTPersistence_restorePackets(Clients *c)
      Restores the persisted records to the outbound and inbound message queues of the client.
      Definition: MQTTPersistence.c:185
      -
      char * serverURI
      the connection string of the server
      Definition: MQTTAsync.h:627
      -
      void myfree(char *file, int line, void *p)
      Frees a block of memory.
      Definition: Heap.c:277
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTAsync.h:1212
      -
      int MQTTPacket_decode(networkHandles *net, size_t *value)
      Decodes the message length according to the MQTT algorithm.
      Definition: MQTTPacket.c:328
      -
      size_t * buflens
      array of byte buffers
      Definition: Socket.h:103
      -
      char * clientID
      the string id of the client
      Definition: Clients.h:120
      -
      The MQTT V5 subscribe options, apart from QoS which existed before V5.
      Definition: MQTTSubscribeOpts.h:21
      -
      unsigned int MQTTVersion
      the version of MQTT
      Definition: MQTTPacket.h:154
      -
      Definition: MQTTProtocol.h:35
      -
      MQTTAsync_token token
      A token identifying the failed request.
      Definition: MQTTAsync.h:554
      -
      struct NodeStruct * parent
      pointer to parent tree node, in case we need it
      Definition: Tree.h:79
      -
      Client publication message data.
      Definition: Clients.h:54
      -
      int struct_version
      The version number of this structure.
      Definition: MQTTClient.h:553
      -
      int intcompare(void *a, void *b)
      List callback function for comparing integers.
      Definition: LinkedList.c:436
      -
      unsigned int willQoS
      will QoS value
      Definition: MQTTPacket.h:112
      -
      void * Heap_findItem(void *p)
      Utility to find an item in the heap.
      Definition: Heap.c:368
      -
      int MQTTProtocol_handleSubacks(void *pack, SOCKET sock)
      Process an incoming suback packet for a socket.
      Definition: MQTTProtocolOut.c:406
      -
      int * qosList
      For subscribeMany, if more than one subscription was requested, the list of granted QoSs of the subsc...
      Definition: MQTTAsync.h:582
      -
      int(* Persistence_remove)(void *handle, char *key)
      Remove the data for the specified key from the store.
      Definition: MQTTClientPersistence.h:169
      diff --git a/docs/MQTTClient_internal/html/Heap_8c.html b/docs/MQTTClient_internal/html/Heap_8c.html index a29d1580..458a1de6 100644 --- a/docs/MQTTClient_internal/html/Heap_8c.html +++ b/docs/MQTTClient_internal/html/Heap_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Heap.c File Reference @@ -30,10 +30,10 @@ - + @@ -64,6 +64,7 @@ $(function() {
      @@ -82,17 +83,19 @@ $(function() { #include <string.h>
      #include <stdio.h>
      #include <stddef.h>
      +#include <inttypes.h>
      #include "Heap.h"
      Include dependency graph for Heap.c:
      -
      - - +
      + + +
      @@ -102,11 +105,18 @@ Data Structures
       Each item on the heap is recorded with this structure. More...
       
      + + + + +

      +Macros

      +#define PRIeyecatcher   PRIx64
       print eyecatcher in HEX notation
       
      - - + +

      Typedefs

      -typedef double eyecatcherType
       
      +typedef uint64_t eyecatcherType
       
      @@ -212,10 +222,10 @@ static const char * 

      Functions

      errmsg
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -321,10 +331,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -422,10 +432,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -527,10 +537,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -581,10 +591,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -642,10 +652,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -706,9 +716,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/Heap_8c__incl.map b/docs/MQTTClient_internal/html/Heap_8c__incl.map index 9e11ce77..53539f5e 100644 --- a/docs/MQTTClient_internal/html/Heap_8c__incl.map +++ b/docs/MQTTClient_internal/html/Heap_8c__incl.map @@ -1,7 +1,8 @@ - + + diff --git a/docs/MQTTClient_internal/html/Heap_8c__incl.md5 b/docs/MQTTClient_internal/html/Heap_8c__incl.md5 index 0b1f132e..a0ac5b4d 100644 --- a/docs/MQTTClient_internal/html/Heap_8c__incl.md5 +++ b/docs/MQTTClient_internal/html/Heap_8c__incl.md5 @@ -1 +1 @@ -1aee15e155b682b1e429c6f23ae39366 \ No newline at end of file +30ba433b11b9dded2bf2c99d564ae2d8 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Heap_8c__incl.png b/docs/MQTTClient_internal/html/Heap_8c__incl.png index ed0ab7e0..9f44d4d2 100644 Binary files a/docs/MQTTClient_internal/html/Heap_8c__incl.png and b/docs/MQTTClient_internal/html/Heap_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.map b/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.map index 0b103964..b9cf9954 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.map +++ b/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.md5 b/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.md5 index 9688aeb9..d2770cdd 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.md5 @@ -1 +1 @@ -d35e3027d3f881c8cd40b25229ac18d2 \ No newline at end of file +2453dd47d2303a0daa9ec6281ac3d182 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.png b/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.png index 325f9397..943257b4 100644 Binary files a/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.png and b/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.map b/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.map index d3e0ad5b..45fecaa8 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.map +++ b/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.md5 b/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.md5 index f5772bd3..a923bb38 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.md5 @@ -1 +1 @@ -c81cc824bedc07f975a2b46ddefd7de4 \ No newline at end of file +924e0dbf3030314dbf683e402a91b3b4 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.png b/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.png index c33cf8d6..37c28323 100644 Binary files a/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.png and b/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.map b/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.map index 02445b13..117a3552 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.map +++ b/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.md5 b/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.md5 index a7006657..34248e98 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.md5 @@ -1 +1 @@ -2043ee9829bdda020bbbc75d53d17a08 \ No newline at end of file +9a16db3b73c1b2c7aa10089a715c638e \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.png b/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.png index b08be820..3bdb9802 100644 Binary files a/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.png and b/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.map b/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.map index a80f4b7c..1f922b71 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.map +++ b/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.md5 b/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.md5 index 9ee192dd..3d4588b0 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.md5 @@ -1 +1 @@ -08c816f8bb5b319fe5f4faed72ceb4bf \ No newline at end of file +4df9a2af3a6fd4824dfff47c5f8a8eca \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.png b/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.png index 83180b60..4d7be633 100644 Binary files a/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.png and b/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.map b/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.map index c420bcf8..e58e63a9 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.map +++ b/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.md5 b/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.md5 index e8972c2e..8bcc922c 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.md5 @@ -1 +1 @@ -629548906f091e2a8b068c53b7772649 \ No newline at end of file +6d3370449d34d0a3c4abac4b8a59b1ca \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.png b/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.png index 30ee599d..867e3df0 100644 Binary files a/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.png and b/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.map b/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.map index 24906b67..bb0708cb 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.map +++ b/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.md5 b/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.md5 index 63ac0cf2..b7c03005 100644 --- a/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.md5 @@ -1 +1 @@ -b0a29f9707d4c60cb890fdfe42642a15 \ No newline at end of file +36925607acad63612b3eea50e087a680 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.png b/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.png index 0394d8e6..4455b29f 100644 Binary files a/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.png and b/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c.html b/docs/MQTTClient_internal/html/LinkedList_8c.html index d7e5f5ca..2430a58b 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c.html +++ b/docs/MQTTClient_internal/html/LinkedList_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: LinkedList.c File Reference @@ -30,10 +30,10 @@
      - + @@ -78,8 +78,8 @@ $(function() {
      Include dependency graph for LinkedList.c:
      -
      - +
      + @@ -241,8 +241,8 @@ Functions
      Here is the call graph for this function:
      -
      - +
      + @@ -339,8 +339,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -422,8 +422,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -497,8 +497,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -552,8 +552,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -587,8 +587,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -643,8 +643,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -703,8 +703,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -853,8 +853,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -891,8 +891,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -945,8 +945,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1016,8 +1016,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1093,9 +1093,7 @@ Here is the call graph for this function:
      diff --git a/docs/MQTTClient_internal/html/Log_8c.html b/docs/MQTTClient_internal/html/Log_8c.html index 9e679bb6..6d75c602 100644 --- a/docs/MQTTClient_internal/html/Log_8c.html +++ b/docs/MQTTClient_internal/html/Log_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Log.c File Reference @@ -30,10 +30,10 @@
      - + @@ -93,8 +93,8 @@ $(function() {
      Include dependency graph for Log.c:
      -
      - +
      + @@ -373,9 +373,7 @@ static mutex_type log_mute
      diff --git a/docs/MQTTClient_internal/html/MQTTClientPersistence_8h.html b/docs/MQTTClient_internal/html/MQTTClientPersistence_8h.html index 7539ee1b..4ea3f984 100644 --- a/docs/MQTTClient_internal/html/MQTTClientPersistence_8h.html +++ b/docs/MQTTClient_internal/html/MQTTClientPersistence_8h.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClientPersistence.h File Reference @@ -30,10 +30,10 @@
      - + @@ -76,8 +76,8 @@ $(function() {
      This graph shows which files directly or indirectly include this file:
      -
      - +
      + @@ -403,9 +403,7 @@ Typedefs
      diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c.html b/docs/MQTTClient_internal/html/MQTTClient_8c.html index c79fecd7..05dc5a08 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c.html +++ b/docs/MQTTClient_internal/html/MQTTClient_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClient.c File Reference @@ -30,10 +30,10 @@
      - + @@ -93,8 +93,8 @@ $(function() {
      Include dependency graph for MQTTClient.c:
      -
      - +
      + @@ -105,6 +105,8 @@ Include dependency graph for MQTTClient.c:
      + + @@ -203,6 +205,9 @@ static MQTTPacket *  + + @@ -218,6 +223,9 @@ static void  + + + @@ -351,7 +359,7 @@ static mutex_type  +mutex_type  @@ -359,12 +367,6 @@ static pthread_mutex_t  - - - - @@ -674,11 +676,11 @@ static int 

      Data Structures

      struct  conlost_sync_data
       
      struct  qEntry
       
      struct  MQTTClients
      static void MQTTClient_writeComplete (SOCKET socket, int rc)
       
      +static void MQTTClient_writeContinue (SOCKET socket)
       
      int MQTTClient_createWithOptions (MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context, MQTTClient_createOptions *options)
       A version of :MQTTClient_create() with additional options. More...
       
      MQTTClient_wri
      void MQTTClient_free (void *memory)
       This function frees memory allocated by the MQTT C client library, especially the topic name. More...
       
      void * MQTTClient_malloc (size_t size)
       This function is used to allocate memory to be used or freed by the MQTT C client library, especially the data in user persistence. More...
       
      void MQTTResponse_free (MQTTResponse response)
       Frees the storage associated with the MQTT response. More...
       
      mqttclie static pthread_mutex_t socket_mutex_store = PTHREAD_MUTEX_INITIALIZER
       
      -static mutex_type socket_mutex = &socket_mutex_store
      socket_mutex = &socket_mutex_store
       
      static pthread_mutex_t subscribe_mutex_store = PTHREAD_MUTEX_INITIALIZER
      sub
      static mutex_type subscribe_mutex = &subscribe_mutex_store
       
      -static pthread_mutex_t unsubscribe_mutex_store = PTHREAD_MUTEX_INITIALIZER
       
      -static mutex_type unsubscribe_mutex = &unsubscribe_mutex_store
       
      static pthread_mutex_t connect_mutex_store = PTHREAD_MUTEX_INITIALIZER
       
      retryLoopInterv
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -753,10 +755,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -788,10 +790,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -835,10 +837,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -934,10 +936,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1012,13 +1014,39 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      + + + +

      ◆ MQTTClient_malloc()

      + +
      +
      + + + + + + + + +
      void* MQTTClient_malloc (size_t size)
      +
      + +

      This function is used to allocate memory to be used or freed by the MQTT C client library, especially the data in user persistence.

      +

      This is needed on Windows when the client library and application program have been compiled with different versions of the C compiler.

      Parameters
      + + +
      sizeThe size of the memory to be allocated.
      +
      +
      +
      @@ -1094,11 +1122,11 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1184,10 +1212,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1245,12 +1273,12 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1308,11 +1336,11 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1438,10 +1466,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1530,10 +1558,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1612,8 +1640,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1666,12 +1694,12 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1736,11 +1764,11 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1798,11 +1826,11 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1874,10 +1902,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1921,12 +1949,12 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -1977,11 +2005,11 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -2032,11 +2060,11 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -2094,10 +2122,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -2148,10 +2176,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -2207,8 +2235,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -2279,9 +2307,7 @@ Here is the call graph for this function:
      diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.map index d0b23e7e..180b2026 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.md5 index b0384155..e3190600 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.md5 @@ -1 +1 @@ -fefa03066bc2e544b00544c6260372d4 \ No newline at end of file +cc751e334977f7c6d52b7121ec33b848 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.png index 8e6b7509..175280d1 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.map index ff091cd7..df0cdd6b 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.md5 index 7bf99f64..e1e139dd 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.md5 @@ -1 +1 @@ -7e6734f504dfcfef1ca57b860992e890 \ No newline at end of file +84a7c9626c4c7e8e89a5caa2e782dcc7 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.png index a437828c..9bb966da 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.map index 458ae50d..d3d637df 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.md5 index 5f3e9237..dc01bdf4 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.md5 @@ -1 +1 @@ -95f384df3586cf3b50654e0f5879d70e \ No newline at end of file +705b08a916c2d713a8567814ec95bc00 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.png index 9f9f7db5..df33b179 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.map index 9066ad70..5563a592 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.md5 index cb168356..3d39f238 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.md5 @@ -1 +1 @@ -187e84c40779e71b52aa6a7faaa2b514 \ No newline at end of file +b0ef091b1bc3ea6d11e3e0041716c92d \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.png index 4eeae13f..ca236ebd 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.map index f8a0ee5e..311e052a 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.md5 index 284a0167..506a4f82 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.md5 @@ -1 +1 @@ -2db1ee2c6a705be058f00db52d8ca129 \ No newline at end of file +241e4f0234ae2ca35b1f84e118a0b649 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.png index ca764094..dfa6f836 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.map index cfca563b..26ce47fc 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.md5 index d917b02f..3162f7c7 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.md5 @@ -1 +1 @@ -b8b42d4acf0cbc940853f21bdfcda914 \ No newline at end of file +797b2e785960e9573eb5bac0b090b171 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.png index 027dfefc..046fa3f1 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.map index a3aabad0..3cbc5215 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.md5 index dc218e0c..08ecc4de 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.md5 @@ -1 +1 @@ -8563f87f096b51d4deeaaf873c5133fb \ No newline at end of file +37ca9c582d57a2c1a5359914666eef1e \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.png index a6f3cadd..8ccb09a4 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.map index eb99c856..f0d30676 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.md5 index b565443f..ef6cdb84 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.md5 @@ -1 +1 @@ -655bea30722b8999fc1445c0ab3d2eb0 \ No newline at end of file +d3446cb04108137d78245ad4f98f500d \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.png index 9adbcc45..886739d7 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.map index 7a307099..8fdc400a 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.map @@ -2,5 +2,5 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.md5 index aaf8e545..3a4a261f 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.md5 @@ -1 +1 @@ -2ebe4b69e918f2c25efb053762d042b1 \ No newline at end of file +3e7147e607c14db85946d0abcb74f40c \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.png index ed7e4dff..8c77721a 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.map index 66c0f882..dd8a19d7 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.md5 index 3ae92011..5b1ac41b 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.md5 @@ -1 +1 @@ -847ef61012e05e1482bdf9cf51feb758 \ No newline at end of file +ab168f45ab788868aab5d012c915021e \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.png index 886d121a..f79fd0a9 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.map index e17b1169..6cb8535f 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.md5 index 6369fe94..46ea78e1 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.md5 @@ -1 +1 @@ -63aa002cc831465729c78968185761a1 \ No newline at end of file +8e542a2cdd6974e01f295fbcbb241824 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.png index 10e5e076..9ff3eeca 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.map index f8a90480..b82ed11f 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.md5 index b37fbafe..d98ab172 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.md5 @@ -1 +1 @@ -b270e6754b949e9af7f9544619d8d9fa \ No newline at end of file +435f0af5eb31983ebc4c09aa72bf66c0 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.png index 25e7af43..f0049f65 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.map index be12d3bb..66441157 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.map @@ -2,5 +2,5 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.md5 index b01dfdcb..6a507875 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.md5 @@ -1 +1 @@ -81b727452906847329f2a5294508474f \ No newline at end of file +b19941cf3d1d107bbe5da4e0f5d6138c \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.png index 95206532..8e8ceac0 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.map index 38c49b07..63ae5fce 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.map @@ -2,5 +2,5 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.md5 index 19460d55..9fdf5095 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.md5 @@ -1 +1 @@ -27949023c352d980e3df0eed6e39ef80 \ No newline at end of file +b7373aa4d5d5389debeb51c531fcb381 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.png index 1ea24be1..93656716 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.map index 01cd177a..cc2ec07c 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.md5 index 35a6eef0..a579d1e8 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.md5 @@ -1 +1 @@ -9fd5cf35e16335648ec708205be4c309 \ No newline at end of file +174ca2b7e9c20ec36c2979a8ca2450f4 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.png index 80414cb9..e83bde56 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.map index b1116796..897ed0ad 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.md5 index aa302104..c961124c 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.md5 @@ -1 +1 @@ -38a99bd5a09d9c96a3bc0c990bd650e5 \ No newline at end of file +c737d966a4c8dea0d1161580c776effb \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.png index 9d485ae7..1b2ae5bb 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.map index 88c95298..90420d68 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.md5 index 301d9486..4ade02fe 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.md5 @@ -1 +1 @@ -f174597a0d957e7b882ebd3e2d1976e5 \ No newline at end of file +809d725da299e4dfc861d3f65ef5bb01 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.png index 7b8219fa..de34f635 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.map index bf7ded13..20214f8a 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.md5 index 2c334b3e..be7e5ae3 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.md5 @@ -1 +1 @@ -79eac79efe32cbeb28e3575d813ead5b \ No newline at end of file +1845d8f8e64a44a0c25e7e9934c1ac99 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.png index f3164357..c5bd1b41 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.map index 3dd65227..5f05bf3b 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.md5 index badecdaf..bbc49d3d 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.md5 @@ -1 +1 @@ -81d37badb5e555ca88a570b1c1c56101 \ No newline at end of file +48c2618ef3b49a5d23e0a1a501ab806c \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.png index 5ea426ac..ad05479a 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.map index 3588d462..916f3411 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.md5 index d21462b3..d73e07b4 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.md5 @@ -1 +1 @@ -0383119400de36c6e1e0ce94c92c9e38 \ No newline at end of file +42b76d09224a43a6c7dead7f0a7e3407 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.png index dec6c835..0176bbfc 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.map index bf5cb7c1..0d54ee3d 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.md5 b/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.md5 index 43a52ec3..fb915cb9 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.md5 +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.md5 @@ -1 +1 @@ -0933d35162330548ca5823385b2d713a \ No newline at end of file +d97ed541b8bc532783cb6ab18636e41e \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.png index f6da2a97..342609c7 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c.html b/docs/MQTTClient_internal/html/MQTTPacketOut_8c.html index d4652448..943eecba 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTPacketOut.c File Reference @@ -30,10 +30,10 @@
      - + @@ -80,8 +80,8 @@ $(function() {
      Include dependency graph for MQTTPacketOut.c:
      -
      - +
      + @@ -171,8 +171,8 @@ Functions
      Here is the call graph for this function:
      -
      - +
      + @@ -258,8 +258,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -313,8 +313,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -398,8 +398,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -474,8 +474,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -542,8 +542,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -610,8 +610,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -629,9 +629,7 @@ Here is the call graph for this function:
      diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c.html b/docs/MQTTClient_internal/html/MQTTPacket_8c.html index d8bc5404..a55aa516 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTPacket.c File Reference @@ -30,10 +30,10 @@
      - + @@ -86,8 +86,8 @@ $(function() {
      Include dependency graph for MQTTPacket.c:
      -
      - +
      + @@ -195,12 +195,12 @@ Functions void MQTTPacket_free_packet (MQTTPacket *pack)  Free allocated storage for a various packet tyoes. More...
        -void writeInt4 (char **pptr, int anInt) - Writes an integer as 4 bytes to an output buffer. More...
      -  -int readInt4 (char **pptr) - Calculates an integer from two bytes read from the input buffer. More...
      -  +void writeInt4 (char **pptr, unsigned int anInt) + Writes an integer as 4 bytes to an output buffer. More...
      +  +unsigned int readInt4 (char **pptr) + Calculates an integer from two bytes read from the input buffer. More...
      void writeMQTTLenString (char **pptr, MQTTLenString lenstring)   @@ -291,8 +291,8 @@ static char * bufptr Here is the call graph for this function:
      -
      - +
      + @@ -421,8 +421,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -459,8 +459,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -546,8 +546,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -582,8 +582,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -723,8 +723,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -798,8 +798,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -876,8 +876,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -932,8 +932,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -998,8 +998,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1065,8 +1065,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1146,8 +1146,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1212,8 +1212,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1286,8 +1286,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1355,8 +1355,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1458,14 +1458,14 @@ Here is the call graph for this function:
      - -

      ◆ readInt4()

      + +

      ◆ readInt4()

      - + @@ -1523,8 +1523,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1586,8 +1586,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1676,8 +1676,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1722,8 +1722,8 @@ Here is the call graph for this function:
      - -

      ◆ writeInt4()

      + +

      ◆ writeInt4()

      @@ -1737,7 +1737,7 @@ Here is the call graph for this function:
      - + @@ -1796,8 +1796,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1836,6 +1836,12 @@ Here is the call graph for this function:
      }
      +
      void * MQTTPacket_unsuback(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create unsuback packets.
      Definition: MQTTPacketOut.c:411
      +
      void * MQTTPacket_connack(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create connack packets.
      Definition: MQTTPacketOut.c:142
      +
      void * MQTTPacket_suback(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create suback packets.
      Definition: MQTTPacketOut.c:290
      +
      void * MQTTPacket_publish(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create publish packets.
      Definition: MQTTPacket.c:556
      +
      void * MQTTPacket_ack(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create acknowledgement packets.
      Definition: MQTTPacket.c:794
      +
      void * MQTTPacket_header_only(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create packets which have only a header.
      Definition: MQTTPacket.c:498

      Array of functions to build packets, indexed according to packet code.

      @@ -1872,17 +1878,9 @@ Here is the call graph for this function: -
      void * MQTTPacket_suback(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create suback packets.
      Definition: MQTTPacketOut.c:290
      -
      void * MQTTPacket_ack(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create acknowledgement packets.
      Definition: MQTTPacket.c:794
      -
      void * MQTTPacket_connack(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create connack packets.
      Definition: MQTTPacketOut.c:142
      -
      void * MQTTPacket_unsuback(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create unsuback packets.
      Definition: MQTTPacketOut.c:411
      -
      void * MQTTPacket_header_only(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create packets which have only a header.
      Definition: MQTTPacket.c:498
      -
      void * MQTTPacket_publish(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
      Function used in the new packets table to create publish packets.
      Definition: MQTTPacket.c:556
      diff --git a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c.html b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c.html index 9f2fc21d..e8275410 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c.html @@ -3,7 +3,7 @@ - +MQTT C Client Libraries Internals: MQTTPersistenceDefault.c File Reference @@ -30,10 +30,10 @@
      int readInt4 unsigned int readInt4 ( char **  pptr)
      int unsigned int  anInt 
      - + @@ -85,8 +85,8 @@ $(function() {
      Include dependency graph for MQTTPersistenceDefault.c:
      -
      - +
      + @@ -358,8 +358,8 @@ int containskeyUnix (c
      Here is the call graph for this function:
      -
      - +
      + @@ -416,8 +416,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -459,9 +459,7 @@ Here is the call graph for this function:
      diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c.html b/docs/MQTTClient_internal/html/MQTTPersistence_8c.html index 031583a3..5ed69205 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTPersistence.c File Reference @@ -30,10 +30,10 @@
      - + @@ -82,8 +82,8 @@ $(function() {
      Include dependency graph for MQTTPersistence.c:
      -
      - +
      + @@ -201,8 +201,8 @@ int MQTTPersistence_persis
      Here is the call graph for this function:
      -
      - +
      + @@ -256,8 +256,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -311,8 +311,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -375,8 +375,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -532,8 +532,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -638,8 +638,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -683,8 +683,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -695,9 +695,7 @@ Here is the call graph for this function:
      diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c.html b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c.html index 57aa1b63..8eefc950 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c.html +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTProtocolClient.c File Reference @@ -30,10 +30,10 @@
      - + @@ -86,8 +86,8 @@ $(function() {
      Include dependency graph for MQTTProtocolClient.c:
      -
      - +
      + @@ -256,8 +256,8 @@ Variables
      Here is the call graph for this function:
      -
      - +
      + @@ -326,8 +326,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -363,8 +363,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -403,8 +403,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -446,8 +446,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -506,8 +506,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -560,8 +560,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -608,8 +608,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -662,8 +662,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -710,8 +710,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -746,8 +746,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -808,8 +808,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -844,8 +844,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -908,8 +908,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -964,8 +964,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1032,8 +1032,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1112,8 +1112,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1165,8 +1165,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1201,8 +1201,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1238,8 +1238,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1293,8 +1293,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1305,9 +1305,7 @@ Here is the call graph for this function:
      diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c.html b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c.html index 2fcb9da8..b9696f71 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c.html +++ b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTProtocolOut.c File Reference @@ -30,10 +30,10 @@
      - + @@ -84,8 +84,8 @@ $(function() {
      Include dependency graph for MQTTProtocolOut.c:
      -
      - +
      + @@ -290,8 +290,8 @@ Variables
      Here is the call graph for this function:
      -
      - +
      + @@ -338,8 +338,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -386,8 +386,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -434,8 +434,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -553,8 +553,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -621,8 +621,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -641,9 +641,7 @@ Here is the call graph for this function:
      diff --git a/docs/MQTTClient_internal/html/MQTTVersion_8c.html b/docs/MQTTClient_internal/html/MQTTVersion_8c.html index 936efa28..6dffb7e3 100644 --- a/docs/MQTTClient_internal/html/MQTTVersion_8c.html +++ b/docs/MQTTClient_internal/html/MQTTVersion_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTVersion.c File Reference @@ -30,10 +30,10 @@
      - + @@ -88,8 +88,8 @@ $(function() {
      Include dependency graph for MQTTVersion.c:
      -
      - +
      + @@ -213,9 +213,7 @@ static const char * librar
      diff --git a/docs/MQTTClient_internal/html/Messages_8c.html b/docs/MQTTClient_internal/html/Messages_8c.html index b4210904..238309df 100644 --- a/docs/MQTTClient_internal/html/Messages_8c.html +++ b/docs/MQTTClient_internal/html/Messages_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Messages.c File Reference @@ -30,10 +30,10 @@
      - + @@ -82,8 +82,8 @@ $(function() {
      Include dependency graph for Messages.c:
      -
      - +
      + @@ -197,9 +197,7 @@ static const char * protoc
      diff --git a/docs/MQTTClient_internal/html/SSLSocket_8c.html b/docs/MQTTClient_internal/html/SSLSocket_8c.html index 6513b0c8..f2b82001 100644 --- a/docs/MQTTClient_internal/html/SSLSocket_8c.html +++ b/docs/MQTTClient_internal/html/SSLSocket_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: SSLSocket.c File Reference @@ -30,10 +30,10 @@
      - + @@ -74,9 +74,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c.html b/docs/MQTTClient_internal/html/SocketBuffer_8c.html index ce3a7b85..48099aa1 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c.html +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: SocketBuffer.c File Reference @@ -30,10 +30,10 @@ - + @@ -84,8 +84,8 @@ $(function() {
      Include dependency graph for SocketBuffer.c:
      -
      - +
      + @@ -231,8 +231,8 @@ static List  Here is the call graph for this function:
      -
      - +
      + @@ -274,8 +274,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -326,8 +326,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -383,8 +383,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -421,8 +421,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -469,8 +469,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -548,8 +548,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -595,8 +595,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -652,8 +652,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -690,8 +690,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -744,9 +744,7 @@ Here is the call graph for this function:
      diff --git a/docs/MQTTClient_internal/html/Socket_8c.html b/docs/MQTTClient_internal/html/Socket_8c.html index 195bf624..62b007cc 100644 --- a/docs/MQTTClient_internal/html/Socket_8c.html +++ b/docs/MQTTClient_internal/html/Socket_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Socket.c File Reference @@ -30,10 +30,10 @@ - + @@ -86,8 +86,8 @@ $(function() {
      Include dependency graph for Socket.c:
      -
      - +
      + @@ -197,6 +197,9 @@ Variables Sockets mod_s  Structure to hold all socket data for this module.
        + +mutex_type socket_mutex static Socket_writeContinue * writecontinue = NULL   @@ -238,8 +241,8 @@ static Socket_writeAvailable *  Here is the call graph for this function:
      -
      - +
      + @@ -279,8 +282,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -341,6 +344,15 @@ Here is the call graph for this function:
      +
      +Here is the call graph for this function:
      +
      +
      + + + + +
      @@ -397,24 +409,10 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - - - - - - - - - - - - - - - - - +
      + + +
      @@ -447,8 +445,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -484,8 +482,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -536,8 +534,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -590,8 +588,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -677,8 +675,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -747,8 +745,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -796,8 +794,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -858,25 +856,25 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - - - - - - - - - - - - - - - - - - +
      + + + + + + + + + + + + + + + + + +
      @@ -934,28 +932,13 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - - - - - - - - - - - - - - - - - - - - - +
      + + + + + +
      @@ -982,8 +965,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1047,8 +1030,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1144,8 +1127,8 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + @@ -1157,9 +1140,7 @@ Here is the call graph for this function:
      diff --git a/docs/MQTTClient_internal/html/Socket_8c_a4c933d467e9ab2848b9590fe45f21f2f_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a4c933d467e9ab2848b9590fe45f21f2f_cgraph.map new file mode 100644 index 00000000..03324e94 --- /dev/null +++ b/docs/MQTTClient_internal/html/Socket_8c_a4c933d467e9ab2848b9590fe45f21f2f_cgraph.map @@ -0,0 +1,4 @@ + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a4c933d467e9ab2848b9590fe45f21f2f_cgraph.md5 b/docs/MQTTClient_internal/html/Socket_8c_a4c933d467e9ab2848b9590fe45f21f2f_cgraph.md5 new file mode 100644 index 00000000..da8f0dbf --- /dev/null +++ b/docs/MQTTClient_internal/html/Socket_8c_a4c933d467e9ab2848b9590fe45f21f2f_cgraph.md5 @@ -0,0 +1 @@ +1506f0f1cb37ba65508dab9d38facf9f \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Socket_8c_a4c933d467e9ab2848b9590fe45f21f2f_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a4c933d467e9ab2848b9590fe45f21f2f_cgraph.png new file mode 100644 index 00000000..17bde3b5 Binary files /dev/null and b/docs/MQTTClient_internal/html/Socket_8c_a4c933d467e9ab2848b9590fe45f21f2f_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.map index 02913985..eaaecf3f 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.map @@ -1,18 +1,4 @@ - - - - - - - - - - - - - - - - + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.md5 b/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.md5 index 0e7fe109..ff31618c 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.md5 @@ -1 +1 @@ -d9de1ec07931664a121161000b8f6c2b \ No newline at end of file +5b70084fd14542a4083b46c37183ae95 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.png index c8903d6f..736847dd 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a9da80ce7e69ae76dee95c94a2349c462_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.map index 3f9bca12..f47f27ee 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.map @@ -1,19 +1,19 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.md5 b/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.md5 index f431ef32..d381c7c1 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.md5 @@ -1 +1 @@ -ba4c3a9c98148c9b157fed59cfc1fd0c \ No newline at end of file +ea7abea603ee5ac1298d0043af336812 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.png index 7ff99c6c..3b084e99 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_ab33a53c9fce80d5dfeb26426b157034a_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.map index 0337ad3d..86c60e3b 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.map @@ -1,22 +1,7 @@ - - - - - - - - - - - - - - - - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.md5 b/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.md5 index 35cef55c..cf2979c4 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.md5 @@ -1 +1 @@ -a17f94a9effcfbd75396d4c471c6c163 \ No newline at end of file +74f93c473fcba60b12adf9c17073bd1b \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.png index 145f3829..94477564 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_accf7d8d1529e31b2ad8286627cb662c0_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Thread_8c.html b/docs/MQTTClient_internal/html/Thread_8c.html index e6e6950a..e2553200 100644 --- a/docs/MQTTClient_internal/html/Thread_8c.html +++ b/docs/MQTTClient_internal/html/Thread_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Thread.c File Reference @@ -30,10 +30,10 @@ - + @@ -87,8 +87,8 @@ $(function() {
      Include dependency graph for Thread.c:
      -
      - +
      + @@ -103,27 +103,27 @@ Include dependency graph for Thread.c:
      - - - + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -156,6 +156,165 @@ int 

      Functions

      void Thread_start (thread_fn fn, void *parameter)
       Start a new thread. More...
       
      void Paho_thread_start (thread_fn fn, void *parameter)
       Start a new thread. More...
       
      int Thread_set_name (const char *thread_name)
       
      mutex_type Thread_create_mutex (int *rc)
       Create a new mutex. More...
       
      int Thread_lock_mutex (mutex_type mutex)
       Lock a mutex which has alrea. More...
       
      int Thread_unlock_mutex (mutex_type mutex)
       Unlock a mutex which has already been locked. More...
       
      int Thread_destroy_mutex (mutex_type mutex)
       Destroy a mutex which has already been created. More...
       
      thread_id_type Thread_getid (void)
       Get the thread id of the thread from which this function is called. More...
       
      mutex_type Paho_thread_create_mutex (int *rc)
       Create a new mutex. More...
       
      int Paho_thread_lock_mutex (mutex_type mutex)
       Lock a mutex which has alrea. More...
       
      int Paho_thread_unlock_mutex (mutex_type mutex)
       Unlock a mutex which has already been locked. More...
       
      int Paho_thread_destroy_mutex (mutex_type mutex)
       Destroy a mutex which has already been created. More...
       
      thread_id_type Paho_thread_getid (void)
       Get the thread id of the thread from which this function is called. More...
       
      sem_type Thread_create_sem (int *rc)
       Create a new semaphore. More...
       
      Thread_set_name (c

      Threading related functions.

      Used to create platform independent threading functions

      Function Documentation

      + +

      ◆ Paho_thread_create_mutex()

      + +
      +
      + + + + + + + + +
      mutex_type Paho_thread_create_mutex (int * rc)
      +
      + +

      Create a new mutex.

      +
      Parameters
      + + +
      rcreturn code: 0 for success, negative otherwise
      +
      +
      +
      Returns
      the new mutex
      + +
      +
      + +

      ◆ Paho_thread_destroy_mutex()

      + +
      +
      + + + + + + + + +
      int Paho_thread_destroy_mutex (mutex_type mutex)
      +
      + +

      Destroy a mutex which has already been created.

      +
      Parameters
      + + +
      mutexthe mutex
      +
      +
      + +
      +
      + +

      ◆ Paho_thread_getid()

      + +
      +
      + + + + + + + + +
      thread_id_type Paho_thread_getid (void )
      +
      + +

      Get the thread id of the thread from which this function is called.

      +
      Returns
      thread id, type varying according to OS
      + +
      +
      + +

      ◆ Paho_thread_lock_mutex()

      + +
      +
      + + + + + + + + +
      int Paho_thread_lock_mutex (mutex_type mutex)
      +
      + +

      Lock a mutex which has alrea.

      +
      Returns
      completion code, 0 is success
      + +
      +
      + +

      ◆ Paho_thread_start()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void Paho_thread_start (thread_fn fn,
      void * parameter 
      )
      +
      + +

      Start a new thread.

      +
      Parameters
      + + + +
      fnthe function to run, must be of the correct signature
      parameterpointer to the function parameter, can be NULL
      +
      +
      + +
      +
      + +

      ◆ Paho_thread_unlock_mutex()

      + +
      +
      + + + + + + + + +
      int Paho_thread_unlock_mutex (mutex_type mutex)
      +
      + +

      Unlock a mutex which has already been locked.

      +
      Parameters
      + + +
      mutexthe mutex
      +
      +
      +
      Returns
      completion code, 0 is success
      + +
      +

      ◆ Thread_check_sem()

      @@ -204,40 +363,13 @@ int 
      Thread_set_name (c
      Here is the call graph for this function:
      -
      - +
      +
      - - - -

      ◆ Thread_create_mutex()

      - -
      -
      - - - - - - - - -
      mutex_type Thread_create_mutex (int * rc)
      -
      - -

      Create a new mutex.

      -
      Parameters
      - - -
      rcreturn code: 0 for success, negative otherwise
      -
      -
      -
      Returns
      the new mutex
      -
      @@ -286,32 +418,6 @@ Here is the call graph for this function:

      Destroy a condition variable.

      Returns
      completion code
      - - - -

      ◆ Thread_destroy_mutex()

      - -
      -
      - - - - - - - - -
      int Thread_destroy_mutex (mutex_type mutex)
      -
      - -

      Destroy a mutex which has already been created.

      -
      Parameters
      - - -
      mutexthe mutex
      -
      -
      -
      @@ -338,48 +444,6 @@ Here is the call graph for this function: - - - -

      ◆ Thread_getid()

      - -
      -
      - - - - - - - - -
      thread_id_type Thread_getid (void )
      -
      - -

      Get the thread id of the thread from which this function is called.

      -
      Returns
      thread id, type varying according to OS
      - -
      -
      - -

      ◆ Thread_lock_mutex()

      - -
      -
      - - - - - - - - -
      int Thread_lock_mutex (mutex_type mutex)
      -
      - -

      Lock a mutex which has alrea.

      -
      Returns
      completion code, 0 is success
      -
      @@ -428,70 +492,6 @@ Here is the call graph for this function:

      Signal a condition variable.

      Returns
      completion code
      - - - -

      ◆ Thread_start()

      - -
      -
      - - - - - - - - - - - - - - - - - - -
      void Thread_start (thread_fn fn,
      void * parameter 
      )
      -
      - -

      Start a new thread.

      -
      Parameters
      - - - -
      fnthe function to run, must be of the correct signature
      parameterpointer to the function parameter, can be NULL
      -
      -
      - -
      -
      - -

      ◆ Thread_unlock_mutex()

      - -
      -
      - - - - - - - - -
      int Thread_unlock_mutex (mutex_type mutex)
      -
      - -

      Unlock a mutex which has already been locked.

      -
      Parameters
      - - -
      mutexthe mutex
      -
      -
      -
      Returns
      completion code, 0 is success
      -
      @@ -566,9 +566,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/Tree_8c.html b/docs/MQTTClient_internal/html/Tree_8c.html index 8d22224f..928425aa 100644 --- a/docs/MQTTClient_internal/html/Tree_8c.html +++ b/docs/MQTTClient_internal/html/Tree_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Tree.c File Reference @@ -30,10 +30,10 @@
      - + @@ -80,8 +80,8 @@ $(function() {
      Include dependency graph for Tree.c:
      -
      - +
      + @@ -248,11 +248,11 @@ int TreeStringCompare
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -279,11 +279,11 @@ Here is the call graph for this function:
      Here is the call graph for this function:
      -
      - +
      + - +
      @@ -378,9 +378,7 @@ Here is the call graph for this function:
      diff --git a/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.map b/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.map index 51056827..723c8a6d 100644 --- a/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.map +++ b/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.md5 b/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.md5 index 4a0e60c4..71e81155 100644 --- a/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.md5 @@ -1 +1 @@ -12f424b04d0496fb43b72bac1f72c1cc \ No newline at end of file +fee9de2e1347f8ca888a2ef2e624a8e6 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.png b/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.png index 553e3ff2..eb600a1a 100644 Binary files a/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.png and b/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.map b/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.map index 1ae9f88e..451a6f8b 100644 --- a/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.map +++ b/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.md5 b/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.md5 index 9975bf02..9c7e20ee 100644 --- a/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.md5 +++ b/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.md5 @@ -1 +1 @@ -3ca62367d14d653786eea0dce0eb2d64 \ No newline at end of file +6a3edf30f4b2bfaa08d0080629ee63d6 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.png b/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.png index f395e147..1559ed75 100644 Binary files a/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.png and b/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/annotated.html b/docs/MQTTClient_internal/html/annotated.html index 4b288408..af7c2381 100644 --- a/docs/MQTTClient_internal/html/annotated.html +++ b/docs/MQTTClient_internal/html/annotated.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Structures @@ -30,10 +30,10 @@ - + @@ -73,81 +73,80 @@ $(function() {  CClientsData related to one client  CClientStatesConfiguration data related to all clients  Ccond_type_struct - CConnackData for a connack packet - CConnectData for a connect packet - CframeDataBuilds a websocket frame for data transmission - CHeaderBitfields for the MQTT header byte - Cheap_infoInformation about the state of the heap - CListStructure to hold all data for one list - CListElementStructStructure to hold all data for one list element - CLog_nameValue - CMessagesClient publication message data - CMQTTAsync_command - CMQTTAsync_connectDataThe connect options that can be updated before an automatic reconnect - CMQTTAsync_connectOptionsMQTTAsync_connectOptions defines several settings that control the way the client connects to an MQTT server - CMQTTAsync_createOptionsOptions for the ::MQTTAsync_createWithOptions call - CMQTTAsync_disconnectOptionsOptions for the ::MQTTAsync_disconnect call - CMQTTAsync_failureDataThe data returned on completion of an unsuccessful API call in the response callback onFailure - CMQTTAsync_failureData5The data returned on completion of an unsuccessful API call in the response callback onFailure - CMQTTAsync_init_optionsInitialization options - CMQTTAsync_messageA structure representing the payload and attributes of an MQTT message - CMQTTAsync_nameValueUtility structure where name/value pairs are needed - CMQTTAsync_queuedCommand - CMQTTAsync_responseOptionsStructure to define call options - CMQTTAsync_SSLOptionsMQTTAsync_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL library - CMQTTAsync_struct - CMQTTAsync_successDataThe data returned on completion of a successful API call in the response callback onSuccess - CMQTTAsync_successData5The data returned on completion of a successful API call in the response callback onSuccess - CMQTTAsync_willOptionsMQTTAsync_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client - CMQTTClient_connectOptionsMQTTClient_connectOptions defines several settings that control the way the client connects to an MQTT server - CMQTTClient_createOptionsOptions for the MQTTClient_createWithOptions call - CMQTTClient_init_optionsInitialization options - CMQTTClient_messageA structure representing the payload and attributes of an MQTT message - CMQTTClient_nameValueMQTTClient_libraryInfo is used to store details relating to the currently used library such as the version in use, the time it was built and relevant openSSL options - CMQTTClient_persistenceA structure containing the function pointers to a persistence implementation and the context or state that will be shared across all the persistence functions - CMQTTClient_SSLOptionsMQTTClient_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL library - CMQTTClient_willOptionsMQTTClient_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client - CMQTTClients - CMQTTLenStringThe data for a length delimited string - CMQTTPacketData for a packet with header only - CMQTTPersistence_message - CMQTTPersistence_qEntry - CMQTTPropertiesMQTT version 5 property list - CMQTTPropertyStructure to hold an MQTT version 5 property of any type - CMQTTProtocol - CMQTTResponseMQTT version 5.0 response information - CMQTTSubscribe_optionsThe MQTT V5 subscribe options, apart from QoS which existed before V5 - CnameToType - CnetworkHandles - CNodeStructStructure to hold all data for one list element - CPacketBuffers - Cpending_write - Cpending_writes - Cprops_rc_parms - CPublicationsStored publication data to minimize copying - CPublishData for a publish packet - CqEntry - CSHA_CTX_S - Csocket_queue - CSocketsStructure to hold all socket data for the module - CstackEntry - CstorageElementEach item on the heap is recorded with this structure - CSubackData for a suback packet - CthreadEntry - Ctrace_settings_type - CtraceEntry - CTreeStructure to hold all data for one tree - CUnsubackData for an MQTT V5 unsuback packet - CwillMessagesClient will message data - Cws_frameRaw websocket frame data + Cconlost_sync_data + CConnackData for a connack packet + CConnectData for a connect packet + CframeDataBuilds a websocket frame for data transmission + CHeaderBitfields for the MQTT header byte + Cheap_infoInformation about the state of the heap + CListStructure to hold all data for one list + CListElementStructStructure to hold all data for one list element + CLog_nameValue + CMessagesClient publication message data + CMQTTAsync_command + CMQTTAsync_connectDataThe connect options that can be updated before an automatic reconnect + CMQTTAsync_connectOptionsMQTTAsync_connectOptions defines several settings that control the way the client connects to an MQTT server + CMQTTAsync_createOptionsOptions for the ::MQTTAsync_createWithOptions call + CMQTTAsync_disconnectOptionsOptions for the ::MQTTAsync_disconnect call + CMQTTAsync_failureDataThe data returned on completion of an unsuccessful API call in the response callback onFailure + CMQTTAsync_failureData5The data returned on completion of an unsuccessful API call in the response callback onFailure + CMQTTAsync_init_optionsInitialization options + CMQTTAsync_messageA structure representing the payload and attributes of an MQTT message + CMQTTAsync_nameValueUtility structure where name/value pairs are needed + CMQTTAsync_queuedCommand + CMQTTAsync_responseOptionsStructure to define call options + CMQTTAsync_SSLOptionsMQTTAsync_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL library + CMQTTAsync_struct + CMQTTAsync_successDataThe data returned on completion of a successful API call in the response callback onSuccess + CMQTTAsync_successData5The data returned on completion of a successful API call in the response callback onSuccess + CMQTTAsync_willOptionsMQTTAsync_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client + CMQTTClient_connectOptionsMQTTClient_connectOptions defines several settings that control the way the client connects to an MQTT server + CMQTTClient_createOptionsOptions for the MQTTClient_createWithOptions call + CMQTTClient_init_optionsInitialization options + CMQTTClient_messageA structure representing the payload and attributes of an MQTT message + CMQTTClient_nameValueMQTTClient_libraryInfo is used to store details relating to the currently used library such as the version in use, the time it was built and relevant openSSL options + CMQTTClient_persistenceA structure containing the function pointers to a persistence implementation and the context or state that will be shared across all the persistence functions + CMQTTClient_SSLOptionsMQTTClient_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL library + CMQTTClient_willOptionsMQTTClient_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client + CMQTTClients + CMQTTLenStringThe data for a length delimited string + CMQTTPacketData for a packet with header only + CMQTTPersistence_message + CMQTTPersistence_qEntry + CMQTTPropertiesMQTT version 5 property list + CMQTTPropertyStructure to hold an MQTT version 5 property of any type + CMQTTProtocol + CMQTTResponseMQTT version 5.0 response information + CMQTTSubscribe_optionsThe MQTT V5 subscribe options, apart from QoS which existed before V5 + CnameToType + CnetworkHandles + CNodeStructStructure to hold all data for one list element + CPacketBuffers + Cpending_write + Cpending_writes + Cprops_rc_parms + CPublicationsStored publication data to minimize copying + CPublishData for a publish packet + CqEntry + CSHA_CTX_S + Csocket_queue + CSocketsStructure to hold all socket data for the module + CstackEntry + CstorageElementEach item on the heap is recorded with this structure + CSubackData for a suback packet + CthreadEntry + Ctrace_settings_type + CtraceEntry + CTreeStructure to hold all data for one tree + CUnsubackData for an MQTT V5 unsuback packet + CwillMessagesClient will message data + Cws_frameRaw websocket frame data diff --git a/docs/MQTTClient_internal/html/classes.html b/docs/MQTTClient_internal/html/classes.html index f5cb83a0..0156657c 100644 --- a/docs/MQTTClient_internal/html/classes.html +++ b/docs/MQTTClient_internal/html/classes.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Structure Index @@ -30,10 +30,10 @@ - + @@ -66,136 +66,52 @@ $(function() {
      Data Structure Index
      -
      a | c | f | h | l | m | n | p | q | s | t | u | w
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        a  
      -
      ListElementStruct   MQTTAsync_successData5   
        n  
      -
      Sockets   
      Log_nameValue   MQTTAsync_willOptions   stackEntry   
      Ack   
        m  
      -
      MQTTClient_connectOptions   nameToType   storageElement   
      AckRequest   MQTTClient_createOptions   networkHandles   Suback   
        c  
      -
      Messages   MQTTClient_init_options   NodeStruct   
        t  
      -
      MQTTAsync_command   MQTTClient_message   
        p  
      -
      Clients   MQTTAsync_connectData   MQTTClient_nameValue   threadEntry   
      ClientStates   MQTTAsync_connectOptions   MQTTClient_persistence   PacketBuffers   trace_settings_type   
      cond_type_struct   MQTTAsync_createOptions   MQTTClient_SSLOptions   pending_write   traceEntry   
      Connack   MQTTAsync_disconnectOptions   MQTTClient_willOptions   pending_writes   Tree   
      Connect   MQTTAsync_failureData   MQTTClients   props_rc_parms   
        u  
      -
        f  
      -
      MQTTAsync_failureData5   MQTTLenString   Publications   
      MQTTAsync_init_options   MQTTPacket   Publish   Unsuback   
      frameData   MQTTAsync_message   MQTTPersistence_message   
        q  
      -
        w  
      -
        h  
      -
      MQTTAsync_nameValue   MQTTPersistence_qEntry   
      MQTTAsync_queuedCommand   MQTTProperties   qEntry   willMessages   
      Header   MQTTAsync_responseOptions   MQTTProperty   
        s  
      -
      ws_frame   
      heap_info   MQTTAsync_SSLOptions   MQTTProtocol   
        l  
      -
      MQTTAsync_struct   MQTTResponse   SHA_CTX_S   
      MQTTAsync_successData   MQTTSubscribe_options   socket_queue   
      List   
      -
      a | c | f | h | l | m | n | p | q | s | t | u | w
      +
      A | C | F | H | L | M | N | P | Q | S | T | U | W
      +
      diff --git a/docs/MQTTClient_internal/html/doxygen.css b/docs/MQTTClient_internal/html/doxygen.css index 73ecbb2c..ffbff022 100644 --- a/docs/MQTTClient_internal/html/doxygen.css +++ b/docs/MQTTClient_internal/html/doxygen.css @@ -1,4 +1,4 @@ -/* The standard CSS for doxygen 1.8.17 */ +/* The standard CSS for doxygen 1.9.1 */ body, table, div, p, dl { font: 400 14px/22px Roboto,sans-serif; @@ -66,7 +66,7 @@ p.startli, p.startdd { margin-top: 2px; } -th p.starttd, p.intertd, p.endtd { +th p.starttd, th p.intertd, th p.endtd { font-size: 100%; font-weight: 700; } @@ -103,30 +103,96 @@ caption { } span.legend { - font-size: 70%; - text-align: center; -} - -h3.version { - font-size: 90%; - text-align: center; -} - -div.qindex, div.navtab{ - background-color: #EBEFF6; - border: 1px solid #A3B4D7; + font-size: 70%; text-align: center; } -div.qindex, div.navpath { - width: 100%; - line-height: 140%; +h3.version { + font-size: 90%; + text-align: center; } div.navtab { - margin-right: 15px; + border-right: 1px solid #A3B4D7; + padding-right: 15px; + text-align: right; + line-height: 110%; } +div.navtab table { + border-spacing: 0; +} + +td.navtab { + padding-right: 6px; + padding-left: 6px; +} +td.navtabHL { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL a, td.navtabHL a:visited { + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +a.navtab { + font-weight: bold; +} + +div.qindex{ + text-align: center; + width: 100%; + line-height: 140%; + font-size: 130%; + color: #A0A0A0; +} + +dt.alphachar{ + font-size: 180%; + font-weight: bold; +} + +.alphachar a{ + color: black; +} + +.alphachar a:hover, .alphachar a:visited{ + text-decoration: none; +} + +.classindex dl { + padding: 25px; + column-count:1 +} + +.classindex dd { + display:inline-block; + margin-left: 50px; + width: 90%; + line-height: 1.15em; +} + +.classindex dl.odd { + background-color: #F8F9FC; +} + +@media(min-width: 1120px) { + .classindex dl { + column-count:2 + } +} + +@media(min-width: 1320px) { + .classindex dl { + column-count:3 + } +} + + /* @group Link Styling */ a { @@ -143,17 +209,6 @@ a:hover { text-decoration: underline; } -a.qindex { - font-weight: bold; -} - -a.qindexHL { - font-weight: bold; - background-color: #9CAFD4; - color: #FFFFFF; - border: 1px double #869DCA; -} - .contents a.qindexHL:visited { color: #FFFFFF; } @@ -1358,10 +1413,12 @@ dl.citelist dt { font-weight:bold; margin-right:10px; padding:5px; + text-align:right; + width:52px; } dl.citelist dd { - margin:2px 0; + margin:2px 0 2px 72px; padding:5px 0; } @@ -1424,6 +1481,12 @@ div.toc li.level4 { margin-left: 45px; } +span.emoji { + /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html + * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort; + */ +} + .PageDocRTL-title div.toc li.level1 { margin-left: 0 !important; margin-right: 0; @@ -1661,47 +1724,6 @@ tr.heading h2 { /* @group Markdown */ -/* -table.markdownTable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.markdownTable td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.markdownTableHead tr { -} - -table.markdownTableBodyLeft td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -th.markdownTableHeadLeft th.markdownTableHeadRight th.markdownTableHeadCenter th.markdownTableHeadNone { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -th.markdownTableHeadLeft { - text-align: left -} - -th.markdownTableHeadRight { - text-align: right -} - -th.markdownTableHeadCenter { - text-align: center -} -*/ - table.markdownTable { border-collapse:collapse; margin-top: 4px; diff --git a/docs/MQTTClient_internal/html/doxygen.png b/docs/MQTTClient_internal/html/doxygen.png deleted file mode 100644 index 3ff17d80..00000000 Binary files a/docs/MQTTClient_internal/html/doxygen.png and /dev/null differ diff --git a/docs/MQTTClient_internal/html/doxygen.svg b/docs/MQTTClient_internal/html/doxygen.svg new file mode 100644 index 00000000..d42dad52 --- /dev/null +++ b/docs/MQTTClient_internal/html/doxygen.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/dynsections.js b/docs/MQTTClient_internal/html/dynsections.js index ea0a7b39..3174bd7b 100644 --- a/docs/MQTTClient_internal/html/dynsections.js +++ b/docs/MQTTClient_internal/html/dynsections.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function toggleVisibility(linkObj) { diff --git a/docs/MQTTClient_internal/html/files.html b/docs/MQTTClient_internal/html/files.html index c49f161a..09853600 100644 --- a/docs/MQTTClient_internal/html/files.html +++ b/docs/MQTTClient_internal/html/files.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: File List @@ -30,10 +30,10 @@ - + @@ -93,9 +93,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions.html b/docs/MQTTClient_internal/html/functions.html index 8ccd25db..a6fdfee4 100644 --- a/docs/MQTTClient_internal/html/functions.html +++ b/docs/MQTTClient_internal/html/functions.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_a.html b/docs/MQTTClient_internal/html/functions_a.html index 86081439..cc140a03 100644 --- a/docs/MQTTClient_internal/html/functions_a.html +++ b/docs/MQTTClient_internal/html/functions_a.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -95,9 +95,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_b.html b/docs/MQTTClient_internal/html/functions_b.html index 6693854e..2f7eb5db 100644 --- a/docs/MQTTClient_internal/html/functions_b.html +++ b/docs/MQTTClient_internal/html/functions_b.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -93,9 +93,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_c.html b/docs/MQTTClient_internal/html/functions_c.html index 4cc12374..cac79d44 100644 --- a/docs/MQTTClient_internal/html/functions_c.html +++ b/docs/MQTTClient_internal/html/functions_c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -140,9 +140,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_d.html b/docs/MQTTClient_internal/html/functions_d.html index 2428ac71..f33d36b3 100644 --- a/docs/MQTTClient_internal/html/functions_d.html +++ b/docs/MQTTClient_internal/html/functions_d.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -98,9 +98,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_e.html b/docs/MQTTClient_internal/html/functions_e.html index 9a9b0bf8..86af2d15 100644 --- a/docs/MQTTClient_internal/html/functions_e.html +++ b/docs/MQTTClient_internal/html/functions_e.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -77,9 +77,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_f.html b/docs/MQTTClient_internal/html/functions_f.html index d942fa65..820816ec 100644 --- a/docs/MQTTClient_internal/html/functions_f.html +++ b/docs/MQTTClient_internal/html/functions_f.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -88,9 +88,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_g.html b/docs/MQTTClient_internal/html/functions_g.html index 45c8bc9a..a402be23 100644 --- a/docs/MQTTClient_internal/html/functions_g.html +++ b/docs/MQTTClient_internal/html/functions_g.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_h.html b/docs/MQTTClient_internal/html/functions_h.html index 8e08399f..af62abad 100644 --- a/docs/MQTTClient_internal/html/functions_h.html +++ b/docs/MQTTClient_internal/html/functions_h.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -95,9 +95,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_i.html b/docs/MQTTClient_internal/html/functions_i.html index 5423524d..6460434b 100644 --- a/docs/MQTTClient_internal/html/functions_i.html +++ b/docs/MQTTClient_internal/html/functions_i.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -84,9 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_k.html b/docs/MQTTClient_internal/html/functions_k.html index a8d3f953..f14ff61a 100644 --- a/docs/MQTTClient_internal/html/functions_k.html +++ b/docs/MQTTClient_internal/html/functions_k.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -81,9 +81,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_l.html b/docs/MQTTClient_internal/html/functions_l.html index 387b37ea..7e75d7af 100644 --- a/docs/MQTTClient_internal/html/functions_l.html +++ b/docs/MQTTClient_internal/html/functions_l.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -88,9 +88,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_m.html b/docs/MQTTClient_internal/html/functions_m.html index 9a22e6da..319c4ee5 100644 --- a/docs/MQTTClient_internal/html/functions_m.html +++ b/docs/MQTTClient_internal/html/functions_m.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -139,9 +139,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_n.html b/docs/MQTTClient_internal/html/functions_n.html index 6d0ffbb9..fc58fcc6 100644 --- a/docs/MQTTClient_internal/html/functions_n.html +++ b/docs/MQTTClient_internal/html/functions_n.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -87,9 +87,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_o.html b/docs/MQTTClient_internal/html/functions_o.html index e31d489a..f0c7540d 100644 --- a/docs/MQTTClient_internal/html/functions_o.html +++ b/docs/MQTTClient_internal/html/functions_o.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -95,9 +95,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_p.html b/docs/MQTTClient_internal/html/functions_p.html index b3a91475..77221e4d 100644 --- a/docs/MQTTClient_internal/html/functions_p.html +++ b/docs/MQTTClient_internal/html/functions_p.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -177,9 +177,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_q.html b/docs/MQTTClient_internal/html/functions_q.html index ca6e9a43..cb5eda99 100644 --- a/docs/MQTTClient_internal/html/functions_q.html +++ b/docs/MQTTClient_internal/html/functions_q.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -83,9 +83,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_r.html b/docs/MQTTClient_internal/html/functions_r.html index 1fc72278..07ee284c 100644 --- a/docs/MQTTClient_internal/html/functions_r.html +++ b/docs/MQTTClient_internal/html/functions_r.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -117,9 +117,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_s.html b/docs/MQTTClient_internal/html/functions_s.html index f341a89b..d5a4a910 100644 --- a/docs/MQTTClient_internal/html/functions_s.html +++ b/docs/MQTTClient_internal/html/functions_s.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -82,7 +82,7 @@ $(function() { , MQTTClient_connectOptions
    4. sessionExpiry -: Clients +: Clients
    5. sessionPresent : Connack @@ -167,9 +167,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_t.html b/docs/MQTTClient_internal/html/functions_t.html index a23e8057..2995d25d 100644 --- a/docs/MQTTClient_internal/html/functions_t.html +++ b/docs/MQTTClient_internal/html/functions_t.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -99,9 +99,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_u.html b/docs/MQTTClient_internal/html/functions_u.html index ceddad35..2187334d 100644 --- a/docs/MQTTClient_internal/html/functions_u.html +++ b/docs/MQTTClient_internal/html/functions_u.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -79,9 +79,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_v.html b/docs/MQTTClient_internal/html/functions_v.html index a4f4364e..d03179f1 100644 --- a/docs/MQTTClient_internal/html/functions_v.html +++ b/docs/MQTTClient_internal/html/functions_v.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -80,9 +80,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars.html b/docs/MQTTClient_internal/html/functions_vars.html index 2a1903f1..493c6224 100644 --- a/docs/MQTTClient_internal/html/functions_vars.html +++ b/docs/MQTTClient_internal/html/functions_vars.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_a.html b/docs/MQTTClient_internal/html/functions_vars_a.html index 0d3630fc..64f181ca 100644 --- a/docs/MQTTClient_internal/html/functions_vars_a.html +++ b/docs/MQTTClient_internal/html/functions_vars_a.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -95,9 +95,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_b.html b/docs/MQTTClient_internal/html/functions_vars_b.html index 02633890..abd7e483 100644 --- a/docs/MQTTClient_internal/html/functions_vars_b.html +++ b/docs/MQTTClient_internal/html/functions_vars_b.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -93,9 +93,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_c.html b/docs/MQTTClient_internal/html/functions_vars_c.html index 95763da8..59dc19f5 100644 --- a/docs/MQTTClient_internal/html/functions_vars_c.html +++ b/docs/MQTTClient_internal/html/functions_vars_c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -140,9 +140,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_d.html b/docs/MQTTClient_internal/html/functions_vars_d.html index 4656b6af..8999d587 100644 --- a/docs/MQTTClient_internal/html/functions_vars_d.html +++ b/docs/MQTTClient_internal/html/functions_vars_d.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -98,9 +98,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_e.html b/docs/MQTTClient_internal/html/functions_vars_e.html index eef232ef..740fb27d 100644 --- a/docs/MQTTClient_internal/html/functions_vars_e.html +++ b/docs/MQTTClient_internal/html/functions_vars_e.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -77,9 +77,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_f.html b/docs/MQTTClient_internal/html/functions_vars_f.html index 4d872a18..464aaa85 100644 --- a/docs/MQTTClient_internal/html/functions_vars_f.html +++ b/docs/MQTTClient_internal/html/functions_vars_f.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -88,9 +88,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_g.html b/docs/MQTTClient_internal/html/functions_vars_g.html index 3ffebc01..056eabc3 100644 --- a/docs/MQTTClient_internal/html/functions_vars_g.html +++ b/docs/MQTTClient_internal/html/functions_vars_g.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_h.html b/docs/MQTTClient_internal/html/functions_vars_h.html index ae0ea807..5c5a4954 100644 --- a/docs/MQTTClient_internal/html/functions_vars_h.html +++ b/docs/MQTTClient_internal/html/functions_vars_h.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -95,9 +95,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_i.html b/docs/MQTTClient_internal/html/functions_vars_i.html index e970d96e..11de7bd5 100644 --- a/docs/MQTTClient_internal/html/functions_vars_i.html +++ b/docs/MQTTClient_internal/html/functions_vars_i.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -84,9 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_k.html b/docs/MQTTClient_internal/html/functions_vars_k.html index 229f1844..ec1391e0 100644 --- a/docs/MQTTClient_internal/html/functions_vars_k.html +++ b/docs/MQTTClient_internal/html/functions_vars_k.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -81,9 +81,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_l.html b/docs/MQTTClient_internal/html/functions_vars_l.html index 3b81bd28..9e6fae5c 100644 --- a/docs/MQTTClient_internal/html/functions_vars_l.html +++ b/docs/MQTTClient_internal/html/functions_vars_l.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -88,9 +88,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_m.html b/docs/MQTTClient_internal/html/functions_vars_m.html index 79abab8d..0b421ec1 100644 --- a/docs/MQTTClient_internal/html/functions_vars_m.html +++ b/docs/MQTTClient_internal/html/functions_vars_m.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -139,9 +139,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_n.html b/docs/MQTTClient_internal/html/functions_vars_n.html index af99b16a..b5816ff7 100644 --- a/docs/MQTTClient_internal/html/functions_vars_n.html +++ b/docs/MQTTClient_internal/html/functions_vars_n.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -87,9 +87,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_o.html b/docs/MQTTClient_internal/html/functions_vars_o.html index 9f370082..eee24eff 100644 --- a/docs/MQTTClient_internal/html/functions_vars_o.html +++ b/docs/MQTTClient_internal/html/functions_vars_o.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -95,9 +95,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_p.html b/docs/MQTTClient_internal/html/functions_vars_p.html index 5e40ddac..55aa4ab5 100644 --- a/docs/MQTTClient_internal/html/functions_vars_p.html +++ b/docs/MQTTClient_internal/html/functions_vars_p.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -177,9 +177,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_q.html b/docs/MQTTClient_internal/html/functions_vars_q.html index f4d473f8..2be6d070 100644 --- a/docs/MQTTClient_internal/html/functions_vars_q.html +++ b/docs/MQTTClient_internal/html/functions_vars_q.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -83,9 +83,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_r.html b/docs/MQTTClient_internal/html/functions_vars_r.html index 59550d47..6122b4ef 100644 --- a/docs/MQTTClient_internal/html/functions_vars_r.html +++ b/docs/MQTTClient_internal/html/functions_vars_r.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -117,9 +117,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_s.html b/docs/MQTTClient_internal/html/functions_vars_s.html index 7ac15e88..fbf48d2c 100644 --- a/docs/MQTTClient_internal/html/functions_vars_s.html +++ b/docs/MQTTClient_internal/html/functions_vars_s.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -82,7 +82,7 @@ $(function() { , MQTTClient_connectOptions
    6. sessionExpiry -: Clients +: Clients
    7. sessionPresent : Connack @@ -167,9 +167,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_t.html b/docs/MQTTClient_internal/html/functions_vars_t.html index 02216928..8f6d5985 100644 --- a/docs/MQTTClient_internal/html/functions_vars_t.html +++ b/docs/MQTTClient_internal/html/functions_vars_t.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -99,9 +99,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_u.html b/docs/MQTTClient_internal/html/functions_vars_u.html index 6c74365b..ade6480b 100644 --- a/docs/MQTTClient_internal/html/functions_vars_u.html +++ b/docs/MQTTClient_internal/html/functions_vars_u.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -79,9 +79,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_v.html b/docs/MQTTClient_internal/html/functions_vars_v.html index 637088c9..d0d20bc7 100644 --- a/docs/MQTTClient_internal/html/functions_vars_v.html +++ b/docs/MQTTClient_internal/html/functions_vars_v.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -80,9 +80,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_w.html b/docs/MQTTClient_internal/html/functions_vars_w.html index ab44e143..ccb6cebf 100644 --- a/docs/MQTTClient_internal/html/functions_vars_w.html +++ b/docs/MQTTClient_internal/html/functions_vars_w.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields - Variables @@ -30,10 +30,10 @@ - + @@ -96,9 +96,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_w.html b/docs/MQTTClient_internal/html/functions_w.html index 08f468d9..c01e4a96 100644 --- a/docs/MQTTClient_internal/html/functions_w.html +++ b/docs/MQTTClient_internal/html/functions_w.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Data Fields @@ -30,10 +30,10 @@ - + @@ -96,9 +96,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals.html b/docs/MQTTClient_internal/html/globals.html index 3a4bdf26..ae6858e4 100644 --- a/docs/MQTTClient_internal/html/globals.html +++ b/docs/MQTTClient_internal/html/globals.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_a.html b/docs/MQTTClient_internal/html/globals_a.html index 45787e2b..0cf957e7 100644 --- a/docs/MQTTClient_internal/html/globals_a.html +++ b/docs/MQTTClient_internal/html/globals_a.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_b.html b/docs/MQTTClient_internal/html/globals_b.html index c864658f..7d4dc225 100644 --- a/docs/MQTTClient_internal/html/globals_b.html +++ b/docs/MQTTClient_internal/html/globals_b.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_c.html b/docs/MQTTClient_internal/html/globals_c.html index 0a14095d..73b31c2e 100644 --- a/docs/MQTTClient_internal/html/globals_c.html +++ b/docs/MQTTClient_internal/html/globals_c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -84,9 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_d.html b/docs/MQTTClient_internal/html/globals_d.html index 6aae321f..88fd76ac 100644 --- a/docs/MQTTClient_internal/html/globals_d.html +++ b/docs/MQTTClient_internal/html/globals_d.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_defs.html b/docs/MQTTClient_internal/html/globals_defs.html index f8c05119..dbd2b794 100644 --- a/docs/MQTTClient_internal/html/globals_defs.html +++ b/docs/MQTTClient_internal/html/globals_defs.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -81,13 +81,14 @@ $(function() {
    8. MQTTCLIENT_PERSISTENCE_USER : MQTTClientPersistence.h
    9. +
    10. PRIeyecatcher +: Heap.c +
    11. diff --git a/docs/MQTTClient_internal/html/globals_f.html b/docs/MQTTClient_internal/html/globals_f.html index 16fec3c8..199ca19f 100644 --- a/docs/MQTTClient_internal/html/globals_f.html +++ b/docs/MQTTClient_internal/html/globals_f.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func.html b/docs/MQTTClient_internal/html/globals_func.html index 41bc02db..12d2d98d 100644 --- a/docs/MQTTClient_internal/html/globals_func.html +++ b/docs/MQTTClient_internal/html/globals_func.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -84,9 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_f.html b/docs/MQTTClient_internal/html/globals_func_f.html index 6b4ef435..9c2afe9f 100644 --- a/docs/MQTTClient_internal/html/globals_func_f.html +++ b/docs/MQTTClient_internal/html/globals_func_f.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_h.html b/docs/MQTTClient_internal/html/globals_func_h.html index 7c601598..10d1d97b 100644 --- a/docs/MQTTClient_internal/html/globals_func_h.html +++ b/docs/MQTTClient_internal/html/globals_func_h.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -96,9 +96,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_i.html b/docs/MQTTClient_internal/html/globals_func_i.html index 4345ba65..510faac1 100644 --- a/docs/MQTTClient_internal/html/globals_func_i.html +++ b/docs/MQTTClient_internal/html/globals_func_i.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -78,9 +78,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_l.html b/docs/MQTTClient_internal/html/globals_func_l.html index 389a6c76..8e1e7f65 100644 --- a/docs/MQTTClient_internal/html/globals_func_l.html +++ b/docs/MQTTClient_internal/html/globals_func_l.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -135,9 +135,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_m.html b/docs/MQTTClient_internal/html/globals_func_m.html index 0ebe5a4b..ab3cabca 100644 --- a/docs/MQTTClient_internal/html/globals_func_m.html +++ b/docs/MQTTClient_internal/html/globals_func_m.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -113,6 +113,9 @@ $(function() {
    12. MQTTClient_isConnected() : MQTTClient.c
    13. +
    14. MQTTClient_malloc() +: MQTTClient.c +
    15. MQTTClient_publish() : MQTTClient.c
    16. @@ -411,9 +414,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_p.html b/docs/MQTTClient_internal/html/globals_func_p.html index e7db4923..50e7d612 100644 --- a/docs/MQTTClient_internal/html/globals_func_p.html +++ b/docs/MQTTClient_internal/html/globals_func_p.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -65,6 +65,24 @@ $(function() {  

      - p -

        +
      • Paho_thread_create_mutex() +: Thread.c +
      • +
      • Paho_thread_destroy_mutex() +: Thread.c +
      • +
      • Paho_thread_getid() +: Thread.c +
      • +
      • Paho_thread_lock_mutex() +: Thread.c +
      • +
      • Paho_thread_start() +: Thread.c +
      • +
      • Paho_thread_unlock_mutex() +: Thread.c +
      • pending_socketcompare() : SocketBuffer.c
      • @@ -102,9 +120,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_r.html b/docs/MQTTClient_internal/html/globals_func_r.html index c794fe29..d0d7395a 100644 --- a/docs/MQTTClient_internal/html/globals_func_r.html +++ b/docs/MQTTClient_internal/html/globals_func_r.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,7 +72,7 @@ $(function() { : MQTTPacket.c
      • readInt4() -: MQTTPacket.c +: MQTTPacket.c
      • readUTF() : MQTTPacket.c @@ -84,9 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_s.html b/docs/MQTTClient_internal/html/globals_func_s.html index 8a8d6b23..9d7b0ce2 100644 --- a/docs/MQTTClient_internal/html/globals_func_s.html +++ b/docs/MQTTClient_internal/html/globals_func_s.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -180,9 +180,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_t.html b/docs/MQTTClient_internal/html/globals_func_t.html index 3ed01f16..75554716 100644 --- a/docs/MQTTClient_internal/html/globals_func_t.html +++ b/docs/MQTTClient_internal/html/globals_func_t.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -71,39 +71,21 @@ $(function() {
      • Thread_create_cond() : Thread.c
      • -
      • Thread_create_mutex() -: Thread.c -
      • Thread_create_sem() : Thread.c
      • Thread_destroy_cond() : Thread.c
      • -
      • Thread_destroy_mutex() -: Thread.c -
      • Thread_destroy_sem() : Thread.c
      • -
      • Thread_getid() -: Thread.c -
      • -
      • Thread_lock_mutex() -: Thread.c -
      • Thread_post_sem() : Thread.c
      • Thread_signal_cond() : Thread.c
      • -
      • Thread_start() -: Thread.c -
      • -
      • Thread_unlock_mutex() -: Thread.c -
      • Thread_wait_cond() : Thread.c
      • @@ -126,9 +108,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_u.html b/docs/MQTTClient_internal/html/globals_func_u.html index 838521dd..574661b7 100644 --- a/docs/MQTTClient_internal/html/globals_func_u.html +++ b/docs/MQTTClient_internal/html/globals_func_u.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -78,9 +78,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_w.html b/docs/MQTTClient_internal/html/globals_func_w.html index d9294e89..ea2074c0 100644 --- a/docs/MQTTClient_internal/html/globals_func_w.html +++ b/docs/MQTTClient_internal/html/globals_func_w.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -75,7 +75,7 @@ $(function() { : MQTTPacket.c
      • writeInt4() -: MQTTPacket.c +: MQTTPacket.c
      • writeUTF() : MQTTPacket.c @@ -84,9 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_h.html b/docs/MQTTClient_internal/html/globals_h.html index a75aad28..b9e1f43b 100644 --- a/docs/MQTTClient_internal/html/globals_h.html +++ b/docs/MQTTClient_internal/html/globals_h.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -99,9 +99,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_i.html b/docs/MQTTClient_internal/html/globals_i.html index a5e2aa4a..5e1e1257 100644 --- a/docs/MQTTClient_internal/html/globals_i.html +++ b/docs/MQTTClient_internal/html/globals_i.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -78,9 +78,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_l.html b/docs/MQTTClient_internal/html/globals_l.html index f87a3f10..95f3e804 100644 --- a/docs/MQTTClient_internal/html/globals_l.html +++ b/docs/MQTTClient_internal/html/globals_l.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -144,9 +144,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_m.html b/docs/MQTTClient_internal/html/globals_m.html index f93403f5..f50788ac 100644 --- a/docs/MQTTClient_internal/html/globals_m.html +++ b/docs/MQTTClient_internal/html/globals_m.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -119,6 +119,9 @@ $(function() {
      • MQTTClient_isConnected() : MQTTClient.c
      • +
      • MQTTClient_malloc() +: MQTTClient.c +
      • MQTTCLIENT_PERSISTENCE_DEFAULT : MQTTClientPersistence.h
      • @@ -435,9 +438,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_n.html b/docs/MQTTClient_internal/html/globals_n.html index dacc7e64..21242423 100644 --- a/docs/MQTTClient_internal/html/globals_n.html +++ b/docs/MQTTClient_internal/html/globals_n.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_p.html b/docs/MQTTClient_internal/html/globals_p.html index 8720bb1c..cf9faccc 100644 --- a/docs/MQTTClient_internal/html/globals_p.html +++ b/docs/MQTTClient_internal/html/globals_p.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -68,6 +68,24 @@ $(function() {
      • packet_names : MQTTPacket.c
      • +
      • Paho_thread_create_mutex() +: Thread.c +
      • +
      • Paho_thread_destroy_mutex() +: Thread.c +
      • +
      • Paho_thread_getid() +: Thread.c +
      • +
      • Paho_thread_lock_mutex() +: Thread.c +
      • +
      • Paho_thread_start() +: Thread.c +
      • +
      • Paho_thread_unlock_mutex() +: Thread.c +
      • pending_socketcompare() : SocketBuffer.c
      • @@ -95,6 +113,9 @@ $(function() {
      • Persistence_remove : MQTTClientPersistence.h
      • +
      • PRIeyecatcher +: Heap.c +
      • pstclear() : MQTTPersistenceDefault.c
      • @@ -129,9 +150,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_q.html b/docs/MQTTClient_internal/html/globals_q.html index 1447ab3f..7be97447 100644 --- a/docs/MQTTClient_internal/html/globals_q.html +++ b/docs/MQTTClient_internal/html/globals_q.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_r.html b/docs/MQTTClient_internal/html/globals_r.html index 2b241f31..33f5dcd2 100644 --- a/docs/MQTTClient_internal/html/globals_r.html +++ b/docs/MQTTClient_internal/html/globals_r.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,7 +72,7 @@ $(function() { : MQTTPacket.c
      • readInt4() -: MQTTPacket.c +: MQTTPacket.c
      • readUTF() : MQTTPacket.c @@ -84,9 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_s.html b/docs/MQTTClient_internal/html/globals_s.html index 05756e8b..0efb6c21 100644 --- a/docs/MQTTClient_internal/html/globals_s.html +++ b/docs/MQTTClient_internal/html/globals_s.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -183,9 +183,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_t.html b/docs/MQTTClient_internal/html/globals_t.html index b307c23e..1908c1be 100644 --- a/docs/MQTTClient_internal/html/globals_t.html +++ b/docs/MQTTClient_internal/html/globals_t.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -71,39 +71,21 @@ $(function() {
      • Thread_create_cond() : Thread.c
      • -
      • Thread_create_mutex() -: Thread.c -
      • Thread_create_sem() : Thread.c
      • Thread_destroy_cond() : Thread.c
      • -
      • Thread_destroy_mutex() -: Thread.c -
      • Thread_destroy_sem() : Thread.c
      • -
      • Thread_getid() -: Thread.c -
      • -
      • Thread_lock_mutex() -: Thread.c -
      • Thread_post_sem() : Thread.c
      • Thread_signal_cond() : Thread.c
      • -
      • Thread_start() -: Thread.c -
      • -
      • Thread_unlock_mutex() -: Thread.c -
      • Thread_wait_cond() : Thread.c
      • @@ -135,9 +117,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_type.html b/docs/MQTTClient_internal/html/globals_type.html index 784ac4a8..aa68a4c9 100644 --- a/docs/MQTTClient_internal/html/globals_type.html +++ b/docs/MQTTClient_internal/html/globals_type.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -97,9 +97,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_u.html b/docs/MQTTClient_internal/html/globals_u.html index 6a6d9ebd..3985bc1e 100644 --- a/docs/MQTTClient_internal/html/globals_u.html +++ b/docs/MQTTClient_internal/html/globals_u.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -81,9 +81,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_v.html b/docs/MQTTClient_internal/html/globals_v.html index b405b389..3e16c1f0 100644 --- a/docs/MQTTClient_internal/html/globals_v.html +++ b/docs/MQTTClient_internal/html/globals_v.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -72,9 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_vars.html b/docs/MQTTClient_internal/html/globals_vars.html index 273f68be..49930363 100644 --- a/docs/MQTTClient_internal/html/globals_vars.html +++ b/docs/MQTTClient_internal/html/globals_vars.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -121,9 +121,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_w.html b/docs/MQTTClient_internal/html/globals_w.html index bfc3d001..a35f9ad6 100644 --- a/docs/MQTTClient_internal/html/globals_w.html +++ b/docs/MQTTClient_internal/html/globals_w.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Globals @@ -30,10 +30,10 @@ - + @@ -75,7 +75,7 @@ $(function() { : MQTTPacket.c
      • writeInt4() -: MQTTPacket.c +: MQTTPacket.c
      • writes : SocketBuffer.c @@ -87,9 +87,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/graph_legend.html b/docs/MQTTClient_internal/html/graph_legend.html index 9dbdcc85..3bc1d615 100644 --- a/docs/MQTTClient_internal/html/graph_legend.html +++ b/docs/MQTTClient_internal/html/graph_legend.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Graph Legend @@ -30,10 +30,10 @@ - + @@ -129,9 +129,7 @@ A yellow dashed arrow denotes a relation between a template instance and the tem diff --git a/docs/MQTTClient_internal/html/index.html b/docs/MQTTClient_internal/html/index.html index a7b62968..23d4460e 100644 --- a/docs/MQTTClient_internal/html/index.html +++ b/docs/MQTTClient_internal/html/index.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTT Client Library Internals @@ -30,10 +30,10 @@ - + @@ -74,9 +74,7 @@ timeout" interval, whose default is 30 seconds.

        diff --git a/docs/MQTTClient_internal/html/menu.js b/docs/MQTTClient_internal/html/menu.js index 433c15b8..2fe2214f 100644 --- a/docs/MQTTClient_internal/html/menu.js +++ b/docs/MQTTClient_internal/html/menu.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { function makeTree(data,relPath) { @@ -40,9 +41,9 @@ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); if (searchEnabled) { if (serverSide) { - $('#main-menu').append('
      • '); + $('#main-menu').append('
      • '); } else { - $('#main-menu').append('
      • '); + $('#main-menu').append('
      • '); } } $('#main-menu').smartmenus(); diff --git a/docs/MQTTClient_internal/html/menudata.js b/docs/MQTTClient_internal/html/menudata.js index 96f66c96..1b1e0f88 100644 --- a/docs/MQTTClient_internal/html/menudata.js +++ b/docs/MQTTClient_internal/html/menudata.js @@ -1,24 +1,26 @@ /* -@licstart The following is the entire license notice for the -JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. -Copyright (C) 1997-2019 by Dimitri van Heesch + The MIT License (MIT) -This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as published by -the Free Software Foundation + Copyright (C) 1997-2020 by Dimitri van Heesch -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: -You should have received a copy of the GNU General Public License along -with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. -@licend The above is the entire license notice -for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ var menudata={children:[ {text:"Main Page",url:"index.html"}, diff --git a/docs/MQTTClient_internal/html/search/all_0.html b/docs/MQTTClient_internal/html/search/all_0.html index 26dd244f..1ec5b2d5 100644 --- a/docs/MQTTClient_internal/html/search/all_0.html +++ b/docs/MQTTClient_internal/html/search/all_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_1.html b/docs/MQTTClient_internal/html/search/all_1.html index 8eb215b9..9f80e904 100644 --- a/docs/MQTTClient_internal/html/search/all_1.html +++ b/docs/MQTTClient_internal/html/search/all_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_10.html b/docs/MQTTClient_internal/html/search/all_10.html index 6fd3a4aa..3bf11961 100644 --- a/docs/MQTTClient_internal/html/search/all_10.html +++ b/docs/MQTTClient_internal/html/search/all_10.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_10.js b/docs/MQTTClient_internal/html/search/all_10.js index e6e2cfa4..1fac1bb8 100644 --- a/docs/MQTTClient_internal/html/search/all_10.js +++ b/docs/MQTTClient_internal/html/search/all_10.js @@ -1,8 +1,8 @@ var searchData= [ - ['qentry_382',['qEntry',['../structqEntry.html',1,'']]], - ['qos_383',['qos',['../structMQTTAsync__message.html#a6e0971dbde0f04b6dd3bfab97ad5cdb7',1,'MQTTAsync_message::qos()'],['../structMQTTAsync__successData.html#af12fc9f6b7a42449f8299e5a8e4f0e7e',1,'MQTTAsync_successData::qos()'],['../structMQTTAsync__willOptions.html#add4a18313308fec634c69842f6ab9809',1,'MQTTAsync_willOptions::qos()'],['../structMQTTClient__message.html#ab981c28422ec70dbf8127a4f7164d964',1,'MQTTClient_message::qos()'],['../structMQTTClient__willOptions.html#a10a24c6ed7a204e6eb21d48ad8fb13cb',1,'MQTTClient_willOptions::qos()'],['../unionHeader.html#ae74f40c0e3656880e35ee93e79331f84',1,'Header::qos()']]], - ['qoslist_384',['qosList',['../structMQTTAsync__successData.html#aa4ad4a4023c5b9796e44b9dfd0df53e7',1,'MQTTAsync_successData']]], - ['qoss_385',['qoss',['../structSuback.html#a7769bd0751e462641636354d36505c28',1,'Suback']]], - ['queues_386',['queues',['../SocketBuffer_8c.html#aa8b85db4dca13d13c2b7fc704420323a',1,'SocketBuffer.c']]] + ['qentry_396',['qEntry',['../structqEntry.html',1,'']]], + ['qos_397',['qos',['../structMQTTAsync__message.html#a6e0971dbde0f04b6dd3bfab97ad5cdb7',1,'MQTTAsync_message::qos()'],['../structMQTTAsync__successData.html#af12fc9f6b7a42449f8299e5a8e4f0e7e',1,'MQTTAsync_successData::qos()'],['../structMQTTAsync__willOptions.html#add4a18313308fec634c69842f6ab9809',1,'MQTTAsync_willOptions::qos()'],['../structMQTTClient__message.html#ab981c28422ec70dbf8127a4f7164d964',1,'MQTTClient_message::qos()'],['../structMQTTClient__willOptions.html#a10a24c6ed7a204e6eb21d48ad8fb13cb',1,'MQTTClient_willOptions::qos()'],['../unionHeader.html#ae74f40c0e3656880e35ee93e79331f84',1,'Header::qos()']]], + ['qoslist_398',['qosList',['../structMQTTAsync__successData.html#aa4ad4a4023c5b9796e44b9dfd0df53e7',1,'MQTTAsync_successData']]], + ['qoss_399',['qoss',['../structSuback.html#a7769bd0751e462641636354d36505c28',1,'Suback']]], + ['queues_400',['queues',['../SocketBuffer_8c.html#aa8b85db4dca13d13c2b7fc704420323a',1,'SocketBuffer.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_11.html b/docs/MQTTClient_internal/html/search/all_11.html index f78343b9..c9f79d28 100644 --- a/docs/MQTTClient_internal/html/search/all_11.html +++ b/docs/MQTTClient_internal/html/search/all_11.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_11.js b/docs/MQTTClient_internal/html/search/all_11.js index bce4c388..fffc841a 100644 --- a/docs/MQTTClient_internal/html/search/all_11.js +++ b/docs/MQTTClient_internal/html/search/all_11.js @@ -1,21 +1,21 @@ var searchData= [ - ['rc_387',['rc',['../structConnack.html#a5a963839f48e7f1319af687621f6e3ec',1,'Connack::rc()'],['../structAck.html#a54d6ed9d045c38877e27bdf5802e3efe',1,'Ack::rc()']]], - ['readchar_388',['readChar',['../MQTTPacket_8c.html#aff1d10b221f5b4ce421b4c2588cbe511',1,'MQTTPacket.c']]], - ['readint_389',['readInt',['../MQTTPacket_8c.html#a132d2d5b304d37cd2348a973f7b315de',1,'MQTTPacket.c']]], - ['readint4_390',['readInt4',['../MQTTPacket_8c.html#aa8fc559d3a1e58ab50e69146666f2f63',1,'MQTTPacket.c']]], - ['readutf_391',['readUTF',['../MQTTPacket_8c.html#adca3afbe588ae7e6f342c5a697e4ee45',1,'MQTTPacket.c']]], - ['readutflen_392',['readUTFlen',['../MQTTPacket_8c.html#ae1ec2d8714335c6ec88c93e957b644d2',1,'MQTTPacket.c']]], - ['reasoncode_393',['reasonCode',['../structMQTTAsync__failureData5.html#a42afb6bf2c55f9830dc1d0984b251019',1,'MQTTAsync_failureData5::reasonCode()'],['../structMQTTAsync__successData5.html#a966b7fc75d0b1fbbc9791aa3eeef06a5',1,'MQTTAsync_successData5::reasonCode()'],['../structMQTTAsync__disconnectOptions.html#af99498836b80011b4e38a9aa18772921',1,'MQTTAsync_disconnectOptions::reasonCode()']]], - ['reasoncodecount_394',['reasonCodeCount',['../structMQTTAsync__successData5.html#a0bfa041c9ce783614786235c650a80aa',1,'MQTTAsync_successData5']]], - ['reasoncodes_395',['reasonCodes',['../structMQTTAsync__successData5.html#abe4fb1e0907a7a1e77fdb6851879b605',1,'MQTTAsync_successData5::reasonCodes()'],['../structUnsuback.html#ac5fabab5aa00869b6ef4901cb4849122',1,'Unsuback::reasonCodes()']]], - ['reliable_396',['reliable',['../structMQTTClient__connectOptions.html#acd6367d7a402e7b668f8ec9760cd42c8',1,'MQTTClient_connectOptions']]], - ['reserved_397',['reserved',['../structConnack.html#a455bf40d0da52ccfd9b546e7fa23b1d0',1,'Connack']]], - ['retain_398',['retain',['../unionHeader.html#afa52b52e4b84075cf31612a6ac3a0299',1,'Header']]], - ['retainaspublished_399',['retainAsPublished',['../structMQTTSubscribe__options.html#a9c66f0773c0484dde0e582b4c47d9bf7',1,'MQTTSubscribe_options']]], - ['retained_400',['retained',['../structMQTTAsync__message.html#a680f5368d5a13ff605466ab6a3d881bd',1,'MQTTAsync_message::retained()'],['../structMQTTAsync__willOptions.html#ab61a8f7cd82a4cbd919625031b1b51d6',1,'MQTTAsync_willOptions::retained()'],['../structMQTTClient__message.html#aad83220f265db124174ad79f528bb367',1,'MQTTClient_message::retained()'],['../structMQTTClient__willOptions.html#a09d69c3e208f40ab963dbd0ac2edcd5b',1,'MQTTClient_willOptions::retained()']]], - ['retainhandling_401',['retainHandling',['../structMQTTSubscribe__options.html#a8375543f39c16e32698226db118076e6',1,'MQTTSubscribe_options']]], - ['retryinterval_402',['retryInterval',['../structClients.html#a6b2188e352433ff089b1b7d08976a63b',1,'Clients::retryInterval()'],['../structMQTTAsync__connectOptions.html#a7f4026dad0479c6658aac68d719950a1',1,'MQTTAsync_connectOptions::retryInterval()'],['../structMQTTClient__connectOptions.html#aabeb07cc7a2aa18fc1fb365503185c62',1,'MQTTClient_connectOptions::retryInterval()']]], - ['returned_403',['returned',['../structMQTTClient__connectOptions.html#a198e91c4adb81b5851cbd5c2eb14424e',1,'MQTTClient_connectOptions']]], - ['root_404',['root',['../structTree.html#ad8e46ce0aead5778cbdd784d1e370d5f',1,'Tree']]] + ['rc_401',['rc',['../structAck.html#a54d6ed9d045c38877e27bdf5802e3efe',1,'Ack::rc()'],['../structConnack.html#a5a963839f48e7f1319af687621f6e3ec',1,'Connack::rc()']]], + ['readchar_402',['readChar',['../MQTTPacket_8c.html#aff1d10b221f5b4ce421b4c2588cbe511',1,'MQTTPacket.c']]], + ['readint_403',['readInt',['../MQTTPacket_8c.html#a132d2d5b304d37cd2348a973f7b315de',1,'MQTTPacket.c']]], + ['readint4_404',['readInt4',['../MQTTPacket_8c.html#a84586f1ffeb9d37e7aeb695ec5bebe1d',1,'MQTTPacket.c']]], + ['readutf_405',['readUTF',['../MQTTPacket_8c.html#adca3afbe588ae7e6f342c5a697e4ee45',1,'MQTTPacket.c']]], + ['readutflen_406',['readUTFlen',['../MQTTPacket_8c.html#ae1ec2d8714335c6ec88c93e957b644d2',1,'MQTTPacket.c']]], + ['reasoncode_407',['reasonCode',['../structMQTTAsync__failureData5.html#a42afb6bf2c55f9830dc1d0984b251019',1,'MQTTAsync_failureData5::reasonCode()'],['../structMQTTAsync__successData5.html#a966b7fc75d0b1fbbc9791aa3eeef06a5',1,'MQTTAsync_successData5::reasonCode()'],['../structMQTTAsync__disconnectOptions.html#af99498836b80011b4e38a9aa18772921',1,'MQTTAsync_disconnectOptions::reasonCode()']]], + ['reasoncodecount_408',['reasonCodeCount',['../structMQTTAsync__successData5.html#a0bfa041c9ce783614786235c650a80aa',1,'MQTTAsync_successData5']]], + ['reasoncodes_409',['reasonCodes',['../structUnsuback.html#ac5fabab5aa00869b6ef4901cb4849122',1,'Unsuback::reasonCodes()'],['../structMQTTAsync__successData5.html#abe4fb1e0907a7a1e77fdb6851879b605',1,'MQTTAsync_successData5::reasonCodes()']]], + ['reliable_410',['reliable',['../structMQTTClient__connectOptions.html#acd6367d7a402e7b668f8ec9760cd42c8',1,'MQTTClient_connectOptions']]], + ['reserved_411',['reserved',['../structConnack.html#a455bf40d0da52ccfd9b546e7fa23b1d0',1,'Connack']]], + ['retain_412',['retain',['../unionHeader.html#afa52b52e4b84075cf31612a6ac3a0299',1,'Header']]], + ['retainaspublished_413',['retainAsPublished',['../structMQTTSubscribe__options.html#a9c66f0773c0484dde0e582b4c47d9bf7',1,'MQTTSubscribe_options']]], + ['retained_414',['retained',['../structMQTTClient__message.html#aad83220f265db124174ad79f528bb367',1,'MQTTClient_message::retained()'],['../structMQTTClient__willOptions.html#a09d69c3e208f40ab963dbd0ac2edcd5b',1,'MQTTClient_willOptions::retained()'],['../structMQTTAsync__willOptions.html#ab61a8f7cd82a4cbd919625031b1b51d6',1,'MQTTAsync_willOptions::retained()'],['../structMQTTAsync__message.html#a680f5368d5a13ff605466ab6a3d881bd',1,'MQTTAsync_message::retained()']]], + ['retainhandling_415',['retainHandling',['../structMQTTSubscribe__options.html#a8375543f39c16e32698226db118076e6',1,'MQTTSubscribe_options']]], + ['retryinterval_416',['retryInterval',['../structClients.html#a6b2188e352433ff089b1b7d08976a63b',1,'Clients::retryInterval()'],['../structMQTTAsync__connectOptions.html#a7f4026dad0479c6658aac68d719950a1',1,'MQTTAsync_connectOptions::retryInterval()'],['../structMQTTClient__connectOptions.html#aabeb07cc7a2aa18fc1fb365503185c62',1,'MQTTClient_connectOptions::retryInterval()']]], + ['returned_417',['returned',['../structMQTTClient__connectOptions.html#a198e91c4adb81b5851cbd5c2eb14424e',1,'MQTTClient_connectOptions']]], + ['root_418',['root',['../structTree.html#ad8e46ce0aead5778cbdd784d1e370d5f',1,'Tree']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_12.html b/docs/MQTTClient_internal/html/search/all_12.html index dd9ff1d5..ab934722 100644 --- a/docs/MQTTClient_internal/html/search/all_12.html +++ b/docs/MQTTClient_internal/html/search/all_12.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_12.js b/docs/MQTTClient_internal/html/search/all_12.js index bd0e01d7..e8db528d 100644 --- a/docs/MQTTClient_internal/html/search/all_12.js +++ b/docs/MQTTClient_internal/html/search/all_12.js @@ -1,66 +1,66 @@ var searchData= [ - ['sendwhiledisconnected_405',['sendWhileDisconnected',['../structMQTTAsync__createOptions.html#a7142a01ee58f39a950f8627c4bb05318',1,'MQTTAsync_createOptions']]], - ['serveruri_406',['serverURI',['../structMQTTAsync__successData.html#a622eceefeaf9679af35841b1e7564f48',1,'MQTTAsync_successData::serverURI()'],['../structMQTTAsync__successData5.html#ad5af721250d01a2d0a4d1cd7932b81eb',1,'MQTTAsync_successData5::serverURI()'],['../structMQTTClient__connectOptions.html#a31f882b2966272a53b2bee33cb1aea8c',1,'MQTTClient_connectOptions::serverURI()']]], - ['serveruricount_407',['serverURIcount',['../structMQTTAsync__connectOptions.html#ae772aa4b3707c5c11d6be39f51ec4551',1,'MQTTAsync_connectOptions::serverURIcount()'],['../structMQTTClient__connectOptions.html#a71667cbc2aa857db5b831a1e6a4a1ec9',1,'MQTTClient_connectOptions::serverURIcount()']]], - ['serveruris_408',['serverURIs',['../structMQTTAsync__connectOptions.html#a50f0a294c8f7311ccd7f7803b432bb69',1,'MQTTAsync_connectOptions::serverURIs()'],['../structMQTTClient__connectOptions.html#aec63485af96db24d26868d3a19a83504',1,'MQTTClient_connectOptions::serverURIs()']]], - ['sessionexpiry_409',['sessionExpiry',['../structClients.html#a3ead27f8653d4866faed5d7b711159d1',1,'Clients']]], - ['sessionpresent_410',['sessionPresent',['../structMQTTAsync__successData.html#a71879fec2eb0c6b891a48ed813b2a9da',1,'MQTTAsync_successData::sessionPresent()'],['../structMQTTAsync__successData5.html#ab8a0f5e336f3abe06921a22a5a134ab2',1,'MQTTAsync_successData5::sessionPresent()'],['../structMQTTClient__connectOptions.html#a2ed78107fecaa4639a170f63ca42d507',1,'MQTTClient_connectOptions::sessionPresent()'],['../structConnack.html#a57f2834e64d4e3ff4f73012491f73f48',1,'Connack::sessionPresent()']]], - ['sha_5fctx_5fs_411',['SHA_CTX_S',['../structSHA__CTX__S.html',1,'']]], - ['size_412',['size',['../structstorageElement.html#ac19ad736a483a3d3b3a5d6d6cd3ecfcf',1,'storageElement::size()'],['../structList.html#a166530a166abd81afec0e6b0283f7e80',1,'List::size()'],['../structNodeStruct.html#a4ac882ab7e5ab868d9449aec51a25adb',1,'NodeStruct::size()'],['../structTree.html#a784563aee04c7123724fceb5d56a0e6a',1,'Tree::size()']]], - ['socket_2ec_413',['Socket.c',['../Socket_8c.html',1,'']]], - ['socket_5fabortwrite_414',['Socket_abortWrite',['../Socket_8c.html#aa24d7c85b03f09f16c78de0c1a9b3580',1,'Socket.c']]], - ['socket_5faddpendingwrite_415',['Socket_addPendingWrite',['../Socket_8c.html#a65be62649c8529bcafa111e37ffcb5d2',1,'Socket.c']]], - ['socket_5faddsocket_416',['Socket_addSocket',['../Socket_8c.html#a4c933d467e9ab2848b9590fe45f21f2f',1,'Socket.c']]], - ['socket_5fclearpendingwrite_417',['Socket_clearPendingWrite',['../Socket_8c.html#a3274d9743dd4d1c6e9392b74164d6379',1,'Socket.c']]], - ['socket_5fclose_418',['Socket_close',['../Socket_8c.html#a9da80ce7e69ae76dee95c94a2349c462',1,'Socket.c']]], - ['socket_5fclose_5fonly_419',['Socket_close_only',['../Socket_8c.html#a0e0f2981efa6caf604e8f0fc1072af90',1,'Socket.c']]], - ['socket_5fcontinuewrite_420',['Socket_continueWrite',['../Socket_8c.html#aa77cff9e8173f9b8d35d062558d0cb57',1,'Socket.c']]], - ['socket_5fcontinuewrites_421',['Socket_continueWrites',['../Socket_8c.html#ac176152ef036b6cfd7330a9481a7b2ed',1,'Socket.c']]], - ['socket_5ferror_422',['Socket_error',['../Socket_8c.html#a39a32a0495e5cba033f3c7fee72ae797',1,'Socket.c']]], - ['socket_5fgetaddrname_423',['Socket_getaddrname',['../Socket_8c.html#a212e51c4ce12e19be59c4d0f93cfb5d9',1,'Socket.c']]], - ['socket_5fgetch_424',['Socket_getch',['../Socket_8c.html#a01e567eb0c5db3193aaa02f117fd1137',1,'Socket.c']]], - ['socket_5fgetdata_425',['Socket_getdata',['../Socket_8c.html#a12c397b0fb6187db7a66a44041055a13',1,'Socket.c']]], - ['socket_5fgetpeer_426',['Socket_getpeer',['../Socket_8c.html#af10088907080a5c517ee23ac022f6538',1,'Socket.c']]], - ['socket_5fgetreadysocket_427',['Socket_getReadySocket',['../Socket_8c.html#ab33a53c9fce80d5dfeb26426b157034a',1,'Socket.c']]], - ['socket_5fnew_428',['Socket_new',['../Socket_8c.html#accf7d8d1529e31b2ad8286627cb662c0',1,'Socket.c']]], - ['socket_5fnopendingwrites_429',['Socket_noPendingWrites',['../Socket_8c.html#a457d9a6a9d8e886c46fcd0c096f45614',1,'Socket.c']]], - ['socket_5foutinitialize_430',['Socket_outInitialize',['../Socket_8c.html#a573a6eea727016f3e8770f60e5eed958',1,'Socket.c']]], - ['socket_5foutterminate_431',['Socket_outTerminate',['../Socket_8c.html#af365aa1d5a29ffcb83bb15edaf3401e6',1,'Socket.c']]], - ['socket_5fputdatas_432',['Socket_putdatas',['../Socket_8c.html#a8fac284bb799c180ef68bb5c7b4b1df4',1,'Socket.c']]], - ['socket_5fqueue_433',['socket_queue',['../structsocket__queue.html',1,'']]], - ['socket_5fsetnonblocking_434',['Socket_setnonblocking',['../Socket_8c.html#ab8ff50df7c89391178aa754083d2f828',1,'Socket.c']]], - ['socket_5fwritev_435',['Socket_writev',['../Socket_8c.html#a550291985042dc080825ab27b16894fb',1,'Socket.c']]], - ['socketbuffer_2ec_436',['SocketBuffer.c',['../SocketBuffer_8c.html',1,'']]], - ['socketbuffer_5fcleanup_437',['SocketBuffer_cleanup',['../SocketBuffer_8c.html#abb5eae96f4c62d1e6fefed8d078ecba8',1,'SocketBuffer.c']]], - ['socketbuffer_5fcomplete_438',['SocketBuffer_complete',['../SocketBuffer_8c.html#a8b7b6acbf2ec65796c32da7fd55c3ee8',1,'SocketBuffer.c']]], - ['socketbuffer_5ffreedefq_439',['SocketBuffer_freeDefQ',['../SocketBuffer_8c.html#acb4511a3a4767187a2607027aff718b8',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetqueuedchar_440',['SocketBuffer_getQueuedChar',['../SocketBuffer_8c.html#a999ec229faa4b2e2c0f7db87693bc1f8',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetqueueddata_441',['SocketBuffer_getQueuedData',['../SocketBuffer_8c.html#afcc9b9b6bd255b0a6e4c7e4f5a36bb37',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetwrite_442',['SocketBuffer_getWrite',['../SocketBuffer_8c.html#a524311e577a7225a09fb944904c17886',1,'SocketBuffer.c']]], - ['socketbuffer_5finitialize_443',['SocketBuffer_initialize',['../SocketBuffer_8c.html#abc8599ffc6f7ad91a7748e5d78bbd926',1,'SocketBuffer.c']]], - ['socketbuffer_5finterrupted_444',['SocketBuffer_interrupted',['../SocketBuffer_8c.html#a412a40b44b12901e63e662ac0e5be0af',1,'SocketBuffer.c']]], - ['socketbuffer_5fnewdefq_445',['SocketBuffer_newDefQ',['../SocketBuffer_8c.html#a9293d4ef45aa2a51baab9be4eb73091b',1,'SocketBuffer.c']]], - ['socketbuffer_5fpendingwrite_446',['SocketBuffer_pendingWrite',['../SocketBuffer_8c.html#aa61a564b814b06d9cfd3fe9ce7ab1cf7',1,'SocketBuffer.c']]], - ['socketbuffer_5fqueuechar_447',['SocketBuffer_queueChar',['../SocketBuffer_8c.html#a2f6bac9a46fd116e58071ff49152d716',1,'SocketBuffer.c']]], - ['socketbuffer_5fterminate_448',['SocketBuffer_terminate',['../SocketBuffer_8c.html#a4a8d6188b4775789810a44396d05cf19',1,'SocketBuffer.c']]], - ['socketbuffer_5fupdatewrite_449',['SocketBuffer_updateWrite',['../SocketBuffer_8c.html#a7ba9075e011f49302304ce7b2d8e5b59',1,'SocketBuffer.c']]], - ['socketbuffer_5fwritecomplete_450',['SocketBuffer_writeComplete',['../SocketBuffer_8c.html#ae8667990c5933c3af9b90a163bba34dc',1,'SocketBuffer.c']]], - ['socketcompare_451',['socketcompare',['../SocketBuffer_8c.html#acebc1cbb93be4588f33b04ed404f6dbf',1,'SocketBuffer.c']]], - ['sockets_452',['Sockets',['../structSockets.html',1,'']]], - ['ssl_453',['ssl',['../structMQTTAsync__connectOptions.html#a04c88f4a4aba7ca2cfbd9ee5455f0850',1,'MQTTAsync_connectOptions::ssl()'],['../structMQTTClient__connectOptions.html#a4e6be3b2292800db30c65dd66af85976',1,'MQTTClient_connectOptions::ssl()']]], - ['ssl_5ferror_5fcb_454',['ssl_error_cb',['../structMQTTAsync__SSLOptions.html#a5214f2bfb8c6571c231792bb9560b00b',1,'MQTTAsync_SSLOptions::ssl_error_cb()'],['../structMQTTClient__SSLOptions.html#a997877b8c152310bc342202807ea1165',1,'MQTTClient_SSLOptions::ssl_error_cb()']]], - ['ssl_5ferror_5fcontext_455',['ssl_error_context',['../structMQTTAsync__SSLOptions.html#aa3af8ec1e7dd0f3921cb5eaddffe955d',1,'MQTTAsync_SSLOptions::ssl_error_context()'],['../structMQTTClient__SSLOptions.html#aeb2a43fde9dfc5627fda508a373bccfc',1,'MQTTClient_SSLOptions::ssl_error_context()']]], - ['ssl_5fpsk_5fcb_456',['ssl_psk_cb',['../structMQTTAsync__SSLOptions.html#a6ccefb9910bc96b326298c0db67ce185',1,'MQTTAsync_SSLOptions::ssl_psk_cb()'],['../structMQTTClient__SSLOptions.html#a38ecc397cbe9e2042b77c7a52c9ccc35',1,'MQTTClient_SSLOptions::ssl_psk_cb()']]], - ['ssl_5fpsk_5fcontext_457',['ssl_psk_context',['../structMQTTAsync__SSLOptions.html#a9cf93d98a2382b374b1e9bbf9a910d5e',1,'MQTTAsync_SSLOptions::ssl_psk_context()'],['../structMQTTClient__SSLOptions.html#ad459c7e3ab9f4558e9f239bf9b15f131',1,'MQTTClient_SSLOptions::ssl_psk_context()']]], - ['sslsocket_2ec_458',['SSLSocket.c',['../SSLSocket_8c.html',1,'']]], - ['sslversion_459',['sslVersion',['../structMQTTAsync__SSLOptions.html#ad14df49c90828d0d0efd93e707c3a4a6',1,'MQTTAsync_SSLOptions::sslVersion()'],['../structMQTTClient__SSLOptions.html#ace536bef1f2e763f28e761c0e3e3bdbe',1,'MQTTClient_SSLOptions::sslVersion()']]], - ['stackentry_460',['stackEntry',['../structstackEntry.html',1,'']]], - ['state_461',['state',['../Heap_8c.html#a20b83c8e52be131ca41d22b8bf2c3b38',1,'Heap.c']]], - ['storageelement_462',['storageElement',['../structstorageElement.html',1,'']]], - ['stringcompare_463',['stringcompare',['../LinkedList_8c.html#a936806c4b6f6c10d91cc128b63ab110c',1,'LinkedList.c']]], - ['struct_5fid_464',['struct_id',['../structMQTTAsync__init__options.html#a1f3cf365b97f7b7a362c4a6ca8eb5a42',1,'MQTTAsync_init_options::struct_id()'],['../structMQTTAsync__message.html#a4621b522c9923c68003d30e9dba9aa4e',1,'MQTTAsync_message::struct_id()'],['../structMQTTAsync__connectData.html#a0a5e8e4e111450187e0760dc04a6f26e',1,'MQTTAsync_connectData::struct_id()'],['../structMQTTAsync__failureData5.html#ab1408c66810d6761ec8b77190581f3bb',1,'MQTTAsync_failureData5::struct_id()'],['../structMQTTAsync__successData5.html#a25e5058a92e35c2cb7c86a5de45cba9d',1,'MQTTAsync_successData5::struct_id()'],['../structMQTTAsync__responseOptions.html#a4b82d5aca6f990de991c87c34f8a7d02',1,'MQTTAsync_responseOptions::struct_id()'],['../structMQTTAsync__createOptions.html#afff54eb461a8ec8544a36f09d33f07c2',1,'MQTTAsync_createOptions::struct_id()'],['../structMQTTAsync__willOptions.html#acc521d748a6a9806d8c839075e178a90',1,'MQTTAsync_willOptions::struct_id()'],['../structMQTTAsync__SSLOptions.html#a43ec1e81ca408162f4b8496ba7f6da75',1,'MQTTAsync_SSLOptions::struct_id()'],['../structMQTTAsync__connectOptions.html#ae6831f945c1353cd1fce5d94a5d0f54d',1,'MQTTAsync_connectOptions::struct_id()'],['../structMQTTAsync__disconnectOptions.html#a4a436daa9d391038e6e5748c31efb257',1,'MQTTAsync_disconnectOptions::struct_id()'],['../structMQTTClient__init__options.html#a1f162f079abc3f79c054715c0e5f71ad',1,'MQTTClient_init_options::struct_id()'],['../structMQTTClient__message.html#a7f5160eeef15b17f7c8ac493015f558d',1,'MQTTClient_message::struct_id()'],['../structMQTTClient__createOptions.html#ada7ad105de2fd2307a48a75fa598854f',1,'MQTTClient_createOptions::struct_id()'],['../structMQTTClient__willOptions.html#a6b64d983ab8586bc87c9c22b352a9717',1,'MQTTClient_willOptions::struct_id()'],['../structMQTTClient__SSLOptions.html#a931062a739a44b9879bb181514070d75',1,'MQTTClient_SSLOptions::struct_id()'],['../structMQTTClient__connectOptions.html#ab2e2302e3cc1105d6c93ae1e8205d60c',1,'MQTTClient_connectOptions::struct_id()'],['../structMQTTSubscribe__options.html#a2fe9d45e9ee31af976a232584d5a2409',1,'MQTTSubscribe_options::struct_id()']]], - ['struct_5fversion_465',['struct_version',['../structMQTTAsync__init__options.html#ad2a3507b60ec188dff83962192153991',1,'MQTTAsync_init_options::struct_version()'],['../structMQTTAsync__message.html#af79efdfc9a4e082cbbafaed8fd333ce1',1,'MQTTAsync_message::struct_version()'],['../structMQTTAsync__connectData.html#afb621feeaf54da918d9c5cfd084a1656',1,'MQTTAsync_connectData::struct_version()'],['../structMQTTAsync__failureData5.html#afc4100c8f3126342b75e60dcd720836f',1,'MQTTAsync_failureData5::struct_version()'],['../structMQTTAsync__successData5.html#a52c4260e2005d2067f3cccc70d7b4758',1,'MQTTAsync_successData5::struct_version()'],['../structMQTTAsync__responseOptions.html#aabf57368b8266f17e7951579897f7f66',1,'MQTTAsync_responseOptions::struct_version()'],['../structMQTTAsync__createOptions.html#a884363e807ef160450e64f7eb6ef0044',1,'MQTTAsync_createOptions::struct_version()'],['../structMQTTAsync__willOptions.html#a1b53c99ddd236e4b796bb90e035ed30b',1,'MQTTAsync_willOptions::struct_version()'],['../structMQTTAsync__SSLOptions.html#a6240108041774c99720c17afa45d4814',1,'MQTTAsync_SSLOptions::struct_version()'],['../structMQTTAsync__connectOptions.html#a013018a3b17149d482051a1be78ac984',1,'MQTTAsync_connectOptions::struct_version()'],['../structMQTTAsync__disconnectOptions.html#aef6853e3c56c83ca3b49250578417848',1,'MQTTAsync_disconnectOptions::struct_version()'],['../structMQTTClient__init__options.html#abf7d43d1e40265cf8ff1ca4266fff0e6',1,'MQTTClient_init_options::struct_version()'],['../structMQTTClient__message.html#a27b983a1ac95eb5c335d40840129c0c8',1,'MQTTClient_message::struct_version()'],['../structMQTTClient__createOptions.html#ae94f345f0f147ed31b8fbd0cb6ebc784',1,'MQTTClient_createOptions::struct_version()'],['../structMQTTClient__willOptions.html#af05e1e3e865af050c5fefac5e597cc7a',1,'MQTTClient_willOptions::struct_version()'],['../structMQTTClient__SSLOptions.html#a770248be4bf5020b0f57f770afdaca7d',1,'MQTTClient_SSLOptions::struct_version()'],['../structMQTTClient__connectOptions.html#a0b07612dc569b59f7f937ff0c518a1bb',1,'MQTTClient_connectOptions::struct_version()'],['../structMQTTSubscribe__options.html#aed5f22c185be62363ac36df1d3778c6d',1,'MQTTSubscribe_options::struct_version()']]], - ['sub_466',['sub',['../structMQTTAsync__successData5.html#ab3131c77b8bf772ea06ee580816ebc32',1,'MQTTAsync_successData5']]], - ['suback_467',['Suback',['../structSuback.html',1,'']]] + ['sendwhiledisconnected_419',['sendWhileDisconnected',['../structMQTTAsync__createOptions.html#a7142a01ee58f39a950f8627c4bb05318',1,'MQTTAsync_createOptions']]], + ['serveruri_420',['serverURI',['../structMQTTClient__connectOptions.html#a31f882b2966272a53b2bee33cb1aea8c',1,'MQTTClient_connectOptions::serverURI()'],['../structMQTTAsync__successData5.html#ad5af721250d01a2d0a4d1cd7932b81eb',1,'MQTTAsync_successData5::serverURI()'],['../structMQTTAsync__successData.html#a622eceefeaf9679af35841b1e7564f48',1,'MQTTAsync_successData::serverURI()']]], + ['serveruricount_421',['serverURIcount',['../structMQTTClient__connectOptions.html#a71667cbc2aa857db5b831a1e6a4a1ec9',1,'MQTTClient_connectOptions::serverURIcount()'],['../structMQTTAsync__connectOptions.html#ae772aa4b3707c5c11d6be39f51ec4551',1,'MQTTAsync_connectOptions::serverURIcount()']]], + ['serveruris_422',['serverURIs',['../structMQTTClient__connectOptions.html#aec63485af96db24d26868d3a19a83504',1,'MQTTClient_connectOptions::serverURIs()'],['../structMQTTAsync__connectOptions.html#a50f0a294c8f7311ccd7f7803b432bb69',1,'MQTTAsync_connectOptions::serverURIs()']]], + ['sessionexpiry_423',['sessionExpiry',['../structClients.html#a54641954e17c0aef4e742c0a1e3e8391',1,'Clients']]], + ['sessionpresent_424',['sessionPresent',['../structMQTTAsync__successData5.html#ab8a0f5e336f3abe06921a22a5a134ab2',1,'MQTTAsync_successData5::sessionPresent()'],['../structMQTTAsync__successData.html#a71879fec2eb0c6b891a48ed813b2a9da',1,'MQTTAsync_successData::sessionPresent()'],['../structMQTTClient__connectOptions.html#a2ed78107fecaa4639a170f63ca42d507',1,'MQTTClient_connectOptions::sessionPresent()'],['../structConnack.html#a57f2834e64d4e3ff4f73012491f73f48',1,'Connack::sessionPresent()']]], + ['sha_5fctx_5fs_425',['SHA_CTX_S',['../structSHA__CTX__S.html',1,'']]], + ['size_426',['size',['../structstorageElement.html#ac19ad736a483a3d3b3a5d6d6cd3ecfcf',1,'storageElement::size()'],['../structList.html#a166530a166abd81afec0e6b0283f7e80',1,'List::size()'],['../structNodeStruct.html#a4ac882ab7e5ab868d9449aec51a25adb',1,'NodeStruct::size()'],['../structTree.html#a784563aee04c7123724fceb5d56a0e6a',1,'Tree::size()']]], + ['socket_2ec_427',['Socket.c',['../Socket_8c.html',1,'']]], + ['socket_5fabortwrite_428',['Socket_abortWrite',['../Socket_8c.html#aa24d7c85b03f09f16c78de0c1a9b3580',1,'Socket.c']]], + ['socket_5faddpendingwrite_429',['Socket_addPendingWrite',['../Socket_8c.html#a65be62649c8529bcafa111e37ffcb5d2',1,'Socket.c']]], + ['socket_5faddsocket_430',['Socket_addSocket',['../Socket_8c.html#a4c933d467e9ab2848b9590fe45f21f2f',1,'Socket.c']]], + ['socket_5fclearpendingwrite_431',['Socket_clearPendingWrite',['../Socket_8c.html#a3274d9743dd4d1c6e9392b74164d6379',1,'Socket.c']]], + ['socket_5fclose_432',['Socket_close',['../Socket_8c.html#a9da80ce7e69ae76dee95c94a2349c462',1,'Socket.c']]], + ['socket_5fclose_5fonly_433',['Socket_close_only',['../Socket_8c.html#a0e0f2981efa6caf604e8f0fc1072af90',1,'Socket.c']]], + ['socket_5fcontinuewrite_434',['Socket_continueWrite',['../Socket_8c.html#aa77cff9e8173f9b8d35d062558d0cb57',1,'Socket.c']]], + ['socket_5fcontinuewrites_435',['Socket_continueWrites',['../Socket_8c.html#ac176152ef036b6cfd7330a9481a7b2ed',1,'Socket.c']]], + ['socket_5ferror_436',['Socket_error',['../Socket_8c.html#a39a32a0495e5cba033f3c7fee72ae797',1,'Socket.c']]], + ['socket_5fgetaddrname_437',['Socket_getaddrname',['../Socket_8c.html#a212e51c4ce12e19be59c4d0f93cfb5d9',1,'Socket.c']]], + ['socket_5fgetch_438',['Socket_getch',['../Socket_8c.html#a01e567eb0c5db3193aaa02f117fd1137',1,'Socket.c']]], + ['socket_5fgetdata_439',['Socket_getdata',['../Socket_8c.html#a12c397b0fb6187db7a66a44041055a13',1,'Socket.c']]], + ['socket_5fgetpeer_440',['Socket_getpeer',['../Socket_8c.html#af10088907080a5c517ee23ac022f6538',1,'Socket.c']]], + ['socket_5fgetreadysocket_441',['Socket_getReadySocket',['../Socket_8c.html#ab33a53c9fce80d5dfeb26426b157034a',1,'Socket.c']]], + ['socket_5fnew_442',['Socket_new',['../Socket_8c.html#accf7d8d1529e31b2ad8286627cb662c0',1,'Socket.c']]], + ['socket_5fnopendingwrites_443',['Socket_noPendingWrites',['../Socket_8c.html#a457d9a6a9d8e886c46fcd0c096f45614',1,'Socket.c']]], + ['socket_5foutinitialize_444',['Socket_outInitialize',['../Socket_8c.html#a573a6eea727016f3e8770f60e5eed958',1,'Socket.c']]], + ['socket_5foutterminate_445',['Socket_outTerminate',['../Socket_8c.html#af365aa1d5a29ffcb83bb15edaf3401e6',1,'Socket.c']]], + ['socket_5fputdatas_446',['Socket_putdatas',['../Socket_8c.html#a8fac284bb799c180ef68bb5c7b4b1df4',1,'Socket.c']]], + ['socket_5fqueue_447',['socket_queue',['../structsocket__queue.html',1,'']]], + ['socket_5fsetnonblocking_448',['Socket_setnonblocking',['../Socket_8c.html#ab8ff50df7c89391178aa754083d2f828',1,'Socket.c']]], + ['socket_5fwritev_449',['Socket_writev',['../Socket_8c.html#a550291985042dc080825ab27b16894fb',1,'Socket.c']]], + ['socketbuffer_2ec_450',['SocketBuffer.c',['../SocketBuffer_8c.html',1,'']]], + ['socketbuffer_5fcleanup_451',['SocketBuffer_cleanup',['../SocketBuffer_8c.html#abb5eae96f4c62d1e6fefed8d078ecba8',1,'SocketBuffer.c']]], + ['socketbuffer_5fcomplete_452',['SocketBuffer_complete',['../SocketBuffer_8c.html#a8b7b6acbf2ec65796c32da7fd55c3ee8',1,'SocketBuffer.c']]], + ['socketbuffer_5ffreedefq_453',['SocketBuffer_freeDefQ',['../SocketBuffer_8c.html#acb4511a3a4767187a2607027aff718b8',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetqueuedchar_454',['SocketBuffer_getQueuedChar',['../SocketBuffer_8c.html#a999ec229faa4b2e2c0f7db87693bc1f8',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetqueueddata_455',['SocketBuffer_getQueuedData',['../SocketBuffer_8c.html#afcc9b9b6bd255b0a6e4c7e4f5a36bb37',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetwrite_456',['SocketBuffer_getWrite',['../SocketBuffer_8c.html#a524311e577a7225a09fb944904c17886',1,'SocketBuffer.c']]], + ['socketbuffer_5finitialize_457',['SocketBuffer_initialize',['../SocketBuffer_8c.html#abc8599ffc6f7ad91a7748e5d78bbd926',1,'SocketBuffer.c']]], + ['socketbuffer_5finterrupted_458',['SocketBuffer_interrupted',['../SocketBuffer_8c.html#a412a40b44b12901e63e662ac0e5be0af',1,'SocketBuffer.c']]], + ['socketbuffer_5fnewdefq_459',['SocketBuffer_newDefQ',['../SocketBuffer_8c.html#a9293d4ef45aa2a51baab9be4eb73091b',1,'SocketBuffer.c']]], + ['socketbuffer_5fpendingwrite_460',['SocketBuffer_pendingWrite',['../SocketBuffer_8c.html#aa61a564b814b06d9cfd3fe9ce7ab1cf7',1,'SocketBuffer.c']]], + ['socketbuffer_5fqueuechar_461',['SocketBuffer_queueChar',['../SocketBuffer_8c.html#a2f6bac9a46fd116e58071ff49152d716',1,'SocketBuffer.c']]], + ['socketbuffer_5fterminate_462',['SocketBuffer_terminate',['../SocketBuffer_8c.html#a4a8d6188b4775789810a44396d05cf19',1,'SocketBuffer.c']]], + ['socketbuffer_5fupdatewrite_463',['SocketBuffer_updateWrite',['../SocketBuffer_8c.html#a7ba9075e011f49302304ce7b2d8e5b59',1,'SocketBuffer.c']]], + ['socketbuffer_5fwritecomplete_464',['SocketBuffer_writeComplete',['../SocketBuffer_8c.html#ae8667990c5933c3af9b90a163bba34dc',1,'SocketBuffer.c']]], + ['socketcompare_465',['socketcompare',['../SocketBuffer_8c.html#acebc1cbb93be4588f33b04ed404f6dbf',1,'SocketBuffer.c']]], + ['sockets_466',['Sockets',['../structSockets.html',1,'']]], + ['ssl_467',['ssl',['../structMQTTClient__connectOptions.html#a4e6be3b2292800db30c65dd66af85976',1,'MQTTClient_connectOptions::ssl()'],['../structMQTTAsync__connectOptions.html#a04c88f4a4aba7ca2cfbd9ee5455f0850',1,'MQTTAsync_connectOptions::ssl()']]], + ['ssl_5ferror_5fcb_468',['ssl_error_cb',['../structMQTTClient__SSLOptions.html#a997877b8c152310bc342202807ea1165',1,'MQTTClient_SSLOptions::ssl_error_cb()'],['../structMQTTAsync__SSLOptions.html#a5214f2bfb8c6571c231792bb9560b00b',1,'MQTTAsync_SSLOptions::ssl_error_cb()']]], + ['ssl_5ferror_5fcontext_469',['ssl_error_context',['../structMQTTClient__SSLOptions.html#aeb2a43fde9dfc5627fda508a373bccfc',1,'MQTTClient_SSLOptions::ssl_error_context()'],['../structMQTTAsync__SSLOptions.html#aa3af8ec1e7dd0f3921cb5eaddffe955d',1,'MQTTAsync_SSLOptions::ssl_error_context()']]], + ['ssl_5fpsk_5fcb_470',['ssl_psk_cb',['../structMQTTClient__SSLOptions.html#a38ecc397cbe9e2042b77c7a52c9ccc35',1,'MQTTClient_SSLOptions::ssl_psk_cb()'],['../structMQTTAsync__SSLOptions.html#a6ccefb9910bc96b326298c0db67ce185',1,'MQTTAsync_SSLOptions::ssl_psk_cb()']]], + ['ssl_5fpsk_5fcontext_471',['ssl_psk_context',['../structMQTTClient__SSLOptions.html#ad459c7e3ab9f4558e9f239bf9b15f131',1,'MQTTClient_SSLOptions::ssl_psk_context()'],['../structMQTTAsync__SSLOptions.html#a9cf93d98a2382b374b1e9bbf9a910d5e',1,'MQTTAsync_SSLOptions::ssl_psk_context()']]], + ['sslsocket_2ec_472',['SSLSocket.c',['../SSLSocket_8c.html',1,'']]], + ['sslversion_473',['sslVersion',['../structMQTTClient__SSLOptions.html#ace536bef1f2e763f28e761c0e3e3bdbe',1,'MQTTClient_SSLOptions::sslVersion()'],['../structMQTTAsync__SSLOptions.html#ad14df49c90828d0d0efd93e707c3a4a6',1,'MQTTAsync_SSLOptions::sslVersion()']]], + ['stackentry_474',['stackEntry',['../structstackEntry.html',1,'']]], + ['state_475',['state',['../Heap_8c.html#a20b83c8e52be131ca41d22b8bf2c3b38',1,'Heap.c']]], + ['storageelement_476',['storageElement',['../structstorageElement.html',1,'']]], + ['stringcompare_477',['stringcompare',['../LinkedList_8c.html#a936806c4b6f6c10d91cc128b63ab110c',1,'LinkedList.c']]], + ['struct_5fid_478',['struct_id',['../structMQTTAsync__SSLOptions.html#a43ec1e81ca408162f4b8496ba7f6da75',1,'MQTTAsync_SSLOptions::struct_id()'],['../structMQTTSubscribe__options.html#a2fe9d45e9ee31af976a232584d5a2409',1,'MQTTSubscribe_options::struct_id()'],['../structMQTTClient__connectOptions.html#ab2e2302e3cc1105d6c93ae1e8205d60c',1,'MQTTClient_connectOptions::struct_id()'],['../structMQTTClient__SSLOptions.html#a931062a739a44b9879bb181514070d75',1,'MQTTClient_SSLOptions::struct_id()'],['../structMQTTClient__willOptions.html#a6b64d983ab8586bc87c9c22b352a9717',1,'MQTTClient_willOptions::struct_id()'],['../structMQTTClient__createOptions.html#ada7ad105de2fd2307a48a75fa598854f',1,'MQTTClient_createOptions::struct_id()'],['../structMQTTClient__message.html#a7f5160eeef15b17f7c8ac493015f558d',1,'MQTTClient_message::struct_id()'],['../structMQTTClient__init__options.html#a1f162f079abc3f79c054715c0e5f71ad',1,'MQTTClient_init_options::struct_id()'],['../structMQTTAsync__disconnectOptions.html#a4a436daa9d391038e6e5748c31efb257',1,'MQTTAsync_disconnectOptions::struct_id()'],['../structMQTTAsync__connectOptions.html#ae6831f945c1353cd1fce5d94a5d0f54d',1,'MQTTAsync_connectOptions::struct_id()'],['../structMQTTAsync__willOptions.html#acc521d748a6a9806d8c839075e178a90',1,'MQTTAsync_willOptions::struct_id()'],['../structMQTTAsync__createOptions.html#afff54eb461a8ec8544a36f09d33f07c2',1,'MQTTAsync_createOptions::struct_id()'],['../structMQTTAsync__responseOptions.html#a4b82d5aca6f990de991c87c34f8a7d02',1,'MQTTAsync_responseOptions::struct_id()'],['../structMQTTAsync__successData5.html#a25e5058a92e35c2cb7c86a5de45cba9d',1,'MQTTAsync_successData5::struct_id()'],['../structMQTTAsync__failureData5.html#ab1408c66810d6761ec8b77190581f3bb',1,'MQTTAsync_failureData5::struct_id()'],['../structMQTTAsync__connectData.html#a0a5e8e4e111450187e0760dc04a6f26e',1,'MQTTAsync_connectData::struct_id()'],['../structMQTTAsync__message.html#a4621b522c9923c68003d30e9dba9aa4e',1,'MQTTAsync_message::struct_id()'],['../structMQTTAsync__init__options.html#a1f3cf365b97f7b7a362c4a6ca8eb5a42',1,'MQTTAsync_init_options::struct_id()']]], + ['struct_5fversion_479',['struct_version',['../structMQTTSubscribe__options.html#aed5f22c185be62363ac36df1d3778c6d',1,'MQTTSubscribe_options::struct_version()'],['../structMQTTAsync__message.html#af79efdfc9a4e082cbbafaed8fd333ce1',1,'MQTTAsync_message::struct_version()'],['../structMQTTClient__connectOptions.html#a0b07612dc569b59f7f937ff0c518a1bb',1,'MQTTClient_connectOptions::struct_version()'],['../structMQTTClient__SSLOptions.html#a770248be4bf5020b0f57f770afdaca7d',1,'MQTTClient_SSLOptions::struct_version()'],['../structMQTTClient__willOptions.html#af05e1e3e865af050c5fefac5e597cc7a',1,'MQTTClient_willOptions::struct_version()'],['../structMQTTClient__createOptions.html#ae94f345f0f147ed31b8fbd0cb6ebc784',1,'MQTTClient_createOptions::struct_version()'],['../structMQTTClient__message.html#a27b983a1ac95eb5c335d40840129c0c8',1,'MQTTClient_message::struct_version()'],['../structMQTTClient__init__options.html#abf7d43d1e40265cf8ff1ca4266fff0e6',1,'MQTTClient_init_options::struct_version()'],['../structMQTTAsync__disconnectOptions.html#aef6853e3c56c83ca3b49250578417848',1,'MQTTAsync_disconnectOptions::struct_version()'],['../structMQTTAsync__connectOptions.html#a013018a3b17149d482051a1be78ac984',1,'MQTTAsync_connectOptions::struct_version()'],['../structMQTTAsync__SSLOptions.html#a6240108041774c99720c17afa45d4814',1,'MQTTAsync_SSLOptions::struct_version()'],['../structMQTTAsync__willOptions.html#a1b53c99ddd236e4b796bb90e035ed30b',1,'MQTTAsync_willOptions::struct_version()'],['../structMQTTAsync__createOptions.html#a884363e807ef160450e64f7eb6ef0044',1,'MQTTAsync_createOptions::struct_version()'],['../structMQTTAsync__responseOptions.html#aabf57368b8266f17e7951579897f7f66',1,'MQTTAsync_responseOptions::struct_version()'],['../structMQTTAsync__successData5.html#a52c4260e2005d2067f3cccc70d7b4758',1,'MQTTAsync_successData5::struct_version()'],['../structMQTTAsync__failureData5.html#afc4100c8f3126342b75e60dcd720836f',1,'MQTTAsync_failureData5::struct_version()'],['../structMQTTAsync__connectData.html#afb621feeaf54da918d9c5cfd084a1656',1,'MQTTAsync_connectData::struct_version()'],['../structMQTTAsync__init__options.html#ad2a3507b60ec188dff83962192153991',1,'MQTTAsync_init_options::struct_version()']]], + ['sub_480',['sub',['../structMQTTAsync__successData5.html#ab3131c77b8bf772ea06ee580816ebc32',1,'MQTTAsync_successData5']]], + ['suback_481',['Suback',['../structSuback.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_13.html b/docs/MQTTClient_internal/html/search/all_13.html index 2611a100..51172c2f 100644 --- a/docs/MQTTClient_internal/html/search/all_13.html +++ b/docs/MQTTClient_internal/html/search/all_13.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_13.js b/docs/MQTTClient_internal/html/search/all_13.js index 733f55ed..e0aea147 100644 --- a/docs/MQTTClient_internal/html/search/all_13.js +++ b/docs/MQTTClient_internal/html/search/all_13.js @@ -1,39 +1,33 @@ var searchData= [ - ['thread_2ec_468',['Thread.c',['../Thread_8c.html',1,'']]], - ['thread_5fcheck_5fsem_469',['Thread_check_sem',['../Thread_8c.html#ad327c467c568b27be4c3676fc698e129',1,'Thread.c']]], - ['thread_5fcreate_5fcond_470',['Thread_create_cond',['../Thread_8c.html#afdd152c518f968c777012d7dfb20ef96',1,'Thread.c']]], - ['thread_5fcreate_5fmutex_471',['Thread_create_mutex',['../Thread_8c.html#a6c1b6aaeb2f7e1d5b4a4936f0568b868',1,'Thread.c']]], - ['thread_5fcreate_5fsem_472',['Thread_create_sem',['../Thread_8c.html#a3b9b6cb543ee55442d2037a971f651db',1,'Thread.c']]], - ['thread_5fdestroy_5fcond_473',['Thread_destroy_cond',['../Thread_8c.html#a95309628f2c15de1f3ea8047b086a707',1,'Thread.c']]], - ['thread_5fdestroy_5fmutex_474',['Thread_destroy_mutex',['../Thread_8c.html#ab586558bf9d7030f479ca574ea7e55a4',1,'Thread.c']]], - ['thread_5fdestroy_5fsem_475',['Thread_destroy_sem',['../Thread_8c.html#ad075ec07f801ac1a2a7dee7097048182',1,'Thread.c']]], - ['thread_5fgetid_476',['Thread_getid',['../Thread_8c.html#a216e79bc196440343aa802dfad8dc38b',1,'Thread.c']]], - ['thread_5flock_5fmutex_477',['Thread_lock_mutex',['../Thread_8c.html#a7e92185eb22775c76e1b6b8865468f17',1,'Thread.c']]], - ['thread_5fpost_5fsem_478',['Thread_post_sem',['../Thread_8c.html#ac023f527bed9c6c3a20244fa7efe272c',1,'Thread.c']]], - ['thread_5fsignal_5fcond_479',['Thread_signal_cond',['../Thread_8c.html#a7b0d40dc1603a6e93db0ee970bb6750f',1,'Thread.c']]], - ['thread_5fstart_480',['Thread_start',['../Thread_8c.html#a25288643d5e1a2ab1369132a80c58ce4',1,'Thread.c']]], - ['thread_5funlock_5fmutex_481',['Thread_unlock_mutex',['../Thread_8c.html#a5faf758226199e7cf93f6b489aca07f7',1,'Thread.c']]], - ['thread_5fwait_5fcond_482',['Thread_wait_cond',['../Thread_8c.html#acd23266878de6faaee0a972ef74c4db6',1,'Thread.c']]], - ['thread_5fwait_5fsem_483',['Thread_wait_sem',['../Thread_8c.html#a4d0bbfc059da3cd10626244d3468d319',1,'Thread.c']]], - ['threadentry_484',['threadEntry',['../structthreadEntry.html',1,'']]], - ['timeout_485',['timeout',['../structMQTTAsync__disconnectOptions.html#a71f6175d58e01af30b064c19967d42ca',1,'MQTTAsync_disconnectOptions']]], - ['token_486',['token',['../structMQTTAsync__failureData.html#a9f3af8dc8c24876c319bc466188440d7',1,'MQTTAsync_failureData::token()'],['../structMQTTAsync__failureData5.html#af3be141ec32e131429a1ea9df6386eb5',1,'MQTTAsync_failureData5::token()'],['../structMQTTAsync__successData.html#afd00f6f09b4cd92b5815202fc339be68',1,'MQTTAsync_successData::token()'],['../structMQTTAsync__successData5.html#ab31fe8cffc2ff14c1ebaee1a12feb787',1,'MQTTAsync_successData5::token()'],['../structMQTTAsync__responseOptions.html#aaf6926989620579f2590cdaf1ff16bfe',1,'MQTTAsync_responseOptions::token()']]], - ['topic_487',['topic',['../structPublish.html#af25a32a9a9bccf70af72fa5a19fa7864',1,'Publish']]], - ['topicname_488',['topicName',['../structMQTTAsync__willOptions.html#a19983de96d2ae2df35c588e36200374e',1,'MQTTAsync_willOptions::topicName()'],['../structMQTTClient__willOptions.html#a9273da2e77ed9b60b018b43c8d868d47',1,'MQTTClient_willOptions::topicName()']]], - ['trace_5fdestination_489',['trace_destination',['../Log_8c.html#a29606f1185cb957cd23842125d7d8ecd',1,'Log.c']]], - ['trace_5fdestination_5fbackup_5fname_490',['trace_destination_backup_name',['../Log_8c.html#a6e2c5a6602ec82079f7b7c3c1a622f8a',1,'Log.c']]], - ['trace_5fdestination_5fname_491',['trace_destination_name',['../Log_8c.html#aa46cc371a2f34c92be9e5df8ac162566',1,'Log.c']]], - ['trace_5flevel_492',['trace_level',['../structtrace__settings__type.html#a169138f5e03c0408ca30820418dcf186',1,'trace_settings_type']]], - ['trace_5foutput_5flevel_493',['trace_output_level',['../structtrace__settings__type.html#af861eec94e990b63af949f50d630ee0d',1,'trace_settings_type']]], - ['trace_5fsettings_5ftype_494',['trace_settings_type',['../structtrace__settings__type.html',1,'']]], - ['traceentry_495',['traceEntry',['../structtraceEntry.html',1,'']]], - ['tree_496',['Tree',['../structTree.html',1,'']]], - ['tree_2ec_497',['Tree.c',['../Tree_8c.html',1,'']]], - ['treeaddbyindex_498',['TreeAddByIndex',['../Tree_8c.html#afa8473167abb71831644bf8a322bc3b6',1,'Tree.c']]], - ['treeinitialize_499',['TreeInitialize',['../Tree_8c.html#aa5ee1e466d266b289dc45cbd97116b83',1,'Tree.c']]], - ['treeremoveindex_500',['TreeRemoveIndex',['../Tree_8c.html#a1263bdfc6a906db3023ca1a6ad5302a4',1,'Tree.c']]], - ['treeremovenodeindex_501',['TreeRemoveNodeIndex',['../Tree_8c.html#a9c3b81e7e63498e3a8f7bd28c4caec10',1,'Tree.c']]], - ['truststore_502',['trustStore',['../structMQTTAsync__SSLOptions.html#a90760033b5ae9962126770c3527603fd',1,'MQTTAsync_SSLOptions::trustStore()'],['../structMQTTClient__SSLOptions.html#a4583779998f6b3b51c7c1d3226701a4c',1,'MQTTClient_SSLOptions::trustStore()']]], - ['type_503',['type',['../unionHeader.html#a05b7c9c6b02e41c54899caee9fdd50d6',1,'Header']]] + ['thread_2ec_482',['Thread.c',['../Thread_8c.html',1,'']]], + ['thread_5fcheck_5fsem_483',['Thread_check_sem',['../Thread_8c.html#ad327c467c568b27be4c3676fc698e129',1,'Thread.c']]], + ['thread_5fcreate_5fcond_484',['Thread_create_cond',['../Thread_8c.html#afdd152c518f968c777012d7dfb20ef96',1,'Thread.c']]], + ['thread_5fcreate_5fsem_485',['Thread_create_sem',['../Thread_8c.html#a3b9b6cb543ee55442d2037a971f651db',1,'Thread.c']]], + ['thread_5fdestroy_5fcond_486',['Thread_destroy_cond',['../Thread_8c.html#a95309628f2c15de1f3ea8047b086a707',1,'Thread.c']]], + ['thread_5fdestroy_5fsem_487',['Thread_destroy_sem',['../Thread_8c.html#ad075ec07f801ac1a2a7dee7097048182',1,'Thread.c']]], + ['thread_5fpost_5fsem_488',['Thread_post_sem',['../Thread_8c.html#ac023f527bed9c6c3a20244fa7efe272c',1,'Thread.c']]], + ['thread_5fsignal_5fcond_489',['Thread_signal_cond',['../Thread_8c.html#a7b0d40dc1603a6e93db0ee970bb6750f',1,'Thread.c']]], + ['thread_5fwait_5fcond_490',['Thread_wait_cond',['../Thread_8c.html#acd23266878de6faaee0a972ef74c4db6',1,'Thread.c']]], + ['thread_5fwait_5fsem_491',['Thread_wait_sem',['../Thread_8c.html#a4d0bbfc059da3cd10626244d3468d319',1,'Thread.c']]], + ['threadentry_492',['threadEntry',['../structthreadEntry.html',1,'']]], + ['timeout_493',['timeout',['../structMQTTAsync__disconnectOptions.html#a71f6175d58e01af30b064c19967d42ca',1,'MQTTAsync_disconnectOptions']]], + ['token_494',['token',['../structMQTTAsync__successData.html#afd00f6f09b4cd92b5815202fc339be68',1,'MQTTAsync_successData::token()'],['../structMQTTAsync__successData5.html#ab31fe8cffc2ff14c1ebaee1a12feb787',1,'MQTTAsync_successData5::token()'],['../structMQTTAsync__responseOptions.html#aaf6926989620579f2590cdaf1ff16bfe',1,'MQTTAsync_responseOptions::token()'],['../structMQTTAsync__failureData5.html#af3be141ec32e131429a1ea9df6386eb5',1,'MQTTAsync_failureData5::token()'],['../structMQTTAsync__failureData.html#a9f3af8dc8c24876c319bc466188440d7',1,'MQTTAsync_failureData::token()']]], + ['topic_495',['topic',['../structPublish.html#af25a32a9a9bccf70af72fa5a19fa7864',1,'Publish']]], + ['topicname_496',['topicName',['../structMQTTAsync__willOptions.html#a19983de96d2ae2df35c588e36200374e',1,'MQTTAsync_willOptions::topicName()'],['../structMQTTClient__willOptions.html#a9273da2e77ed9b60b018b43c8d868d47',1,'MQTTClient_willOptions::topicName()']]], + ['trace_5fdestination_497',['trace_destination',['../Log_8c.html#a29606f1185cb957cd23842125d7d8ecd',1,'Log.c']]], + ['trace_5fdestination_5fbackup_5fname_498',['trace_destination_backup_name',['../Log_8c.html#a6e2c5a6602ec82079f7b7c3c1a622f8a',1,'Log.c']]], + ['trace_5fdestination_5fname_499',['trace_destination_name',['../Log_8c.html#aa46cc371a2f34c92be9e5df8ac162566',1,'Log.c']]], + ['trace_5flevel_500',['trace_level',['../structtrace__settings__type.html#a169138f5e03c0408ca30820418dcf186',1,'trace_settings_type']]], + ['trace_5foutput_5flevel_501',['trace_output_level',['../structtrace__settings__type.html#af861eec94e990b63af949f50d630ee0d',1,'trace_settings_type']]], + ['trace_5fsettings_5ftype_502',['trace_settings_type',['../structtrace__settings__type.html',1,'']]], + ['traceentry_503',['traceEntry',['../structtraceEntry.html',1,'']]], + ['tree_504',['Tree',['../structTree.html',1,'']]], + ['tree_2ec_505',['Tree.c',['../Tree_8c.html',1,'']]], + ['treeaddbyindex_506',['TreeAddByIndex',['../Tree_8c.html#afa8473167abb71831644bf8a322bc3b6',1,'Tree.c']]], + ['treeinitialize_507',['TreeInitialize',['../Tree_8c.html#aa5ee1e466d266b289dc45cbd97116b83',1,'Tree.c']]], + ['treeremoveindex_508',['TreeRemoveIndex',['../Tree_8c.html#a1263bdfc6a906db3023ca1a6ad5302a4',1,'Tree.c']]], + ['treeremovenodeindex_509',['TreeRemoveNodeIndex',['../Tree_8c.html#a9c3b81e7e63498e3a8f7bd28c4caec10',1,'Tree.c']]], + ['truststore_510',['trustStore',['../structMQTTClient__SSLOptions.html#a4583779998f6b3b51c7c1d3226701a4c',1,'MQTTClient_SSLOptions::trustStore()'],['../structMQTTAsync__SSLOptions.html#a90760033b5ae9962126770c3527603fd',1,'MQTTAsync_SSLOptions::trustStore()']]], + ['type_511',['type',['../unionHeader.html#a05b7c9c6b02e41c54899caee9fdd50d6',1,'Header']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_14.html b/docs/MQTTClient_internal/html/search/all_14.html index 72d12e90..afecf563 100644 --- a/docs/MQTTClient_internal/html/search/all_14.html +++ b/docs/MQTTClient_internal/html/search/all_14.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_14.js b/docs/MQTTClient_internal/html/search/all_14.js index 21ca5f0e..6e71d874 100644 --- a/docs/MQTTClient_internal/html/search/all_14.js +++ b/docs/MQTTClient_internal/html/search/all_14.js @@ -1,11 +1,11 @@ var searchData= [ - ['unsub_504',['unsub',['../structMQTTAsync__successData5.html#a8f6209416359018b215c22008f08bc9c',1,'MQTTAsync_successData5']]], - ['unsuback_505',['Unsuback',['../structUnsuback.html',1,'']]], - ['upper_506',['upper',['../utf-8_8c.html#a716463de5d02ad40678f2376abcdd90a',1,'utf-8.c']]], - ['username_507',['username',['../structClients.html#af8cc24a8d289b4950b7c929b03cba031',1,'Clients::username()'],['../structMQTTAsync__connectData.html#ac239ae2f64049458d1b7ae6110c86657',1,'MQTTAsync_connectData::username()'],['../structMQTTAsync__connectOptions.html#ae03dec50fd54f49582e50883072ea81e',1,'MQTTAsync_connectOptions::username()'],['../structMQTTClient__connectOptions.html#a82e337534835601827defa911325299a',1,'MQTTClient_connectOptions::username()'],['../structConnect.html#a68d27f5f6b5fad14969d69340acfc5e9',1,'Connect::username()']]], - ['utf_2d8_2ec_508',['utf-8.c',['../utf-8_8c.html',1,'']]], - ['utf8_5fchar_5fvalidate_509',['UTF8_char_validate',['../utf-8_8c.html#a9727caa7417e6bed8cfad4121a22628d',1,'utf-8.c']]], - ['utf8_5fvalidate_510',['UTF8_validate',['../utf-8_8c.html#ad2012627fca4b4bdd9f67bde49b0d1cb',1,'utf-8.c']]], - ['utf8_5fvalidatestring_511',['UTF8_validateString',['../utf-8_8c.html#a4f3cf77538d867bb5b421bcb687dccdf',1,'utf-8.c']]] + ['unsub_512',['unsub',['../structMQTTAsync__successData5.html#a8f6209416359018b215c22008f08bc9c',1,'MQTTAsync_successData5']]], + ['unsuback_513',['Unsuback',['../structUnsuback.html',1,'']]], + ['upper_514',['upper',['../utf-8_8c.html#a716463de5d02ad40678f2376abcdd90a',1,'utf-8.c']]], + ['username_515',['username',['../structClients.html#af8cc24a8d289b4950b7c929b03cba031',1,'Clients::username()'],['../structMQTTAsync__connectData.html#ac239ae2f64049458d1b7ae6110c86657',1,'MQTTAsync_connectData::username()'],['../structMQTTAsync__connectOptions.html#ae03dec50fd54f49582e50883072ea81e',1,'MQTTAsync_connectOptions::username()'],['../structMQTTClient__connectOptions.html#a82e337534835601827defa911325299a',1,'MQTTClient_connectOptions::username()'],['../structConnect.html#a68d27f5f6b5fad14969d69340acfc5e9',1,'Connect::username()']]], + ['utf_2d8_2ec_516',['utf-8.c',['../utf-8_8c.html',1,'']]], + ['utf8_5fchar_5fvalidate_517',['UTF8_char_validate',['../utf-8_8c.html#a9727caa7417e6bed8cfad4121a22628d',1,'utf-8.c']]], + ['utf8_5fvalidate_518',['UTF8_validate',['../utf-8_8c.html#ad2012627fca4b4bdd9f67bde49b0d1cb',1,'utf-8.c']]], + ['utf8_5fvalidatestring_519',['UTF8_validateString',['../utf-8_8c.html#a4f3cf77538d867bb5b421bcb687dccdf',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_15.html b/docs/MQTTClient_internal/html/search/all_15.html index 767aec36..69f382b3 100644 --- a/docs/MQTTClient_internal/html/search/all_15.html +++ b/docs/MQTTClient_internal/html/search/all_15.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_15.js b/docs/MQTTClient_internal/html/search/all_15.js index 30bb011b..e46063e9 100644 --- a/docs/MQTTClient_internal/html/search/all_15.js +++ b/docs/MQTTClient_internal/html/search/all_15.js @@ -1,7 +1,7 @@ var searchData= [ - ['valid_5franges_512',['valid_ranges',['../utf-8_8c.html#a03bdcd5f0e47e86161d8f8a6e6d2ed1d',1,'utf-8.c']]], - ['value_513',['value',['../structMQTTAsync__nameValue.html#abbedbc0cab6677016451fe6c62553f35',1,'MQTTAsync_nameValue::value()'],['../structMQTTProperty.html#a43389d2bd2814580edc9ea59933cbe25',1,'MQTTProperty::value()'],['../structMQTTProperty.html#a1d54fb750a1783debd04c57ecb907332',1,'MQTTProperty::value()']]], - ['verify_514',['verify',['../structMQTTAsync__SSLOptions.html#af3a54c718001dc76eb77d2f35fc31301',1,'MQTTAsync_SSLOptions::verify()'],['../structMQTTClient__SSLOptions.html#a61dd2a56858da45451f45640b056189d',1,'MQTTClient_SSLOptions::verify()']]], - ['version_515',['version',['../structConnect.html#a35cba4252092877e572c5c74b41be6e2',1,'Connect']]] + ['valid_5franges_520',['valid_ranges',['../utf-8_8c.html#a03bdcd5f0e47e86161d8f8a6e6d2ed1d',1,'utf-8.c']]], + ['value_521',['value',['../structMQTTAsync__nameValue.html#abbedbc0cab6677016451fe6c62553f35',1,'MQTTAsync_nameValue::value()'],['../structMQTTProperty.html#a43389d2bd2814580edc9ea59933cbe25',1,'MQTTProperty::value()'],['../structMQTTProperty.html#a1d54fb750a1783debd04c57ecb907332',1,'MQTTProperty::value()']]], + ['verify_522',['verify',['../structMQTTAsync__SSLOptions.html#af3a54c718001dc76eb77d2f35fc31301',1,'MQTTAsync_SSLOptions::verify()'],['../structMQTTClient__SSLOptions.html#a61dd2a56858da45451f45640b056189d',1,'MQTTClient_SSLOptions::verify()']]], + ['version_523',['version',['../structConnect.html#a35cba4252092877e572c5c74b41be6e2',1,'Connect']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_16.html b/docs/MQTTClient_internal/html/search/all_16.html index 7bd7afe6..b19867ad 100644 --- a/docs/MQTTClient_internal/html/search/all_16.html +++ b/docs/MQTTClient_internal/html/search/all_16.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_16.js b/docs/MQTTClient_internal/html/search/all_16.js index 7d2f6a24..8de55b8c 100644 --- a/docs/MQTTClient_internal/html/search/all_16.js +++ b/docs/MQTTClient_internal/html/search/all_16.js @@ -1,19 +1,19 @@ var searchData= [ - ['websocket_516',['websocket',['../structnetworkHandles.html#a01839c3f477c9f737c13f7e2c994e5cc',1,'networkHandles']]], - ['will_517',['will',['../structClients.html#ad593ed8add1448fe1f1e01b4d60f28a7',1,'Clients::will()'],['../structMQTTAsync__connectOptions.html#a2190db10b854d016a291ccb378c3eda2',1,'MQTTAsync_connectOptions::will()'],['../structMQTTClient__connectOptions.html#a8d51a29a49d2a964d5079c9bae3fcffd',1,'MQTTClient_connectOptions::will()'],['../structConnect.html#a9dc30d7b95feb8e55e98514cad4066bd',1,'Connect::will()']]], - ['willmessages_518',['willMessages',['../structwillMessages.html',1,'']]], - ['willmsg_519',['willMsg',['../structConnect.html#a525eb0974d4e5b3158808e0bb23f03e6',1,'Connect']]], - ['willproperties_520',['willProperties',['../structMQTTAsync__connectOptions.html#ab72dbcdcff60e5dd79ac8fcea0e31478',1,'MQTTAsync_connectOptions']]], - ['willqos_521',['willQoS',['../structConnect.html#a91e5dd7084da0e9a40397c5532de5ef9',1,'Connect']]], - ['willretain_522',['willRetain',['../structConnect.html#a0810709a016db0b8be49fc6f859bab39',1,'Connect']]], - ['willtopic_523',['willTopic',['../structConnect.html#a8e0ff745f3800cf1a56a0cd467b5138e',1,'Connect']]], - ['write_5fpending_524',['write_pending',['../structSockets.html#a852db7c3edf654d8ee451be18b3f5743',1,'Sockets']]], - ['writechar_525',['writeChar',['../MQTTPacket_8c.html#ad29ec8b2fbf0ec0195621b44f8945923',1,'MQTTPacket.c']]], - ['writedata_526',['writeData',['../MQTTPacket_8c.html#a8886398fbf89872f8e593444d351a5aa',1,'MQTTPacket.c']]], - ['writeint_527',['writeInt',['../MQTTPacket_8c.html#a07aa0146eda3d32979142e7df8ad5fc3',1,'MQTTPacket.c']]], - ['writeint4_528',['writeInt4',['../MQTTPacket_8c.html#aefc0aa52c1cb13fa7bfcd77810d6a617',1,'MQTTPacket.c']]], - ['writes_529',['writes',['../SocketBuffer_8c.html#a913f78789f0cbfb26a5dcf6618d51d87',1,'SocketBuffer.c']]], - ['writeutf_530',['writeUTF',['../MQTTPacket_8c.html#af0fcaa11ac05ce448a433a53f9cae420',1,'MQTTPacket.c']]], - ['ws_5fframe_531',['ws_frame',['../structws__frame.html',1,'']]] + ['websocket_524',['websocket',['../structnetworkHandles.html#a01839c3f477c9f737c13f7e2c994e5cc',1,'networkHandles']]], + ['will_525',['will',['../structClients.html#ad593ed8add1448fe1f1e01b4d60f28a7',1,'Clients::will()'],['../structMQTTAsync__connectOptions.html#a2190db10b854d016a291ccb378c3eda2',1,'MQTTAsync_connectOptions::will()'],['../structMQTTClient__connectOptions.html#a8d51a29a49d2a964d5079c9bae3fcffd',1,'MQTTClient_connectOptions::will()'],['../structConnect.html#a9dc30d7b95feb8e55e98514cad4066bd',1,'Connect::will()']]], + ['willmessages_526',['willMessages',['../structwillMessages.html',1,'']]], + ['willmsg_527',['willMsg',['../structConnect.html#a525eb0974d4e5b3158808e0bb23f03e6',1,'Connect']]], + ['willproperties_528',['willProperties',['../structMQTTAsync__connectOptions.html#ab72dbcdcff60e5dd79ac8fcea0e31478',1,'MQTTAsync_connectOptions']]], + ['willqos_529',['willQoS',['../structConnect.html#a91e5dd7084da0e9a40397c5532de5ef9',1,'Connect']]], + ['willretain_530',['willRetain',['../structConnect.html#a0810709a016db0b8be49fc6f859bab39',1,'Connect']]], + ['willtopic_531',['willTopic',['../structConnect.html#a8e0ff745f3800cf1a56a0cd467b5138e',1,'Connect']]], + ['write_5fpending_532',['write_pending',['../structSockets.html#a852db7c3edf654d8ee451be18b3f5743',1,'Sockets']]], + ['writechar_533',['writeChar',['../MQTTPacket_8c.html#ad29ec8b2fbf0ec0195621b44f8945923',1,'MQTTPacket.c']]], + ['writedata_534',['writeData',['../MQTTPacket_8c.html#a8886398fbf89872f8e593444d351a5aa',1,'MQTTPacket.c']]], + ['writeint_535',['writeInt',['../MQTTPacket_8c.html#a07aa0146eda3d32979142e7df8ad5fc3',1,'MQTTPacket.c']]], + ['writeint4_536',['writeInt4',['../MQTTPacket_8c.html#aa9130985a524757f3f0d4e00d21cd680',1,'MQTTPacket.c']]], + ['writes_537',['writes',['../SocketBuffer_8c.html#a913f78789f0cbfb26a5dcf6618d51d87',1,'SocketBuffer.c']]], + ['writeutf_538',['writeUTF',['../MQTTPacket_8c.html#af0fcaa11ac05ce448a433a53f9cae420',1,'MQTTPacket.c']]], + ['ws_5fframe_539',['ws_frame',['../structws__frame.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_2.html b/docs/MQTTClient_internal/html/search/all_2.html index b26d9165..02cfffc2 100644 --- a/docs/MQTTClient_internal/html/search/all_2.html +++ b/docs/MQTTClient_internal/html/search/all_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_3.html b/docs/MQTTClient_internal/html/search/all_3.html index b61b96f8..39767b85 100644 --- a/docs/MQTTClient_internal/html/search/all_3.html +++ b/docs/MQTTClient_internal/html/search/all_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_3.js b/docs/MQTTClient_internal/html/search/all_3.js index 56c71d52..2e6741e4 100644 --- a/docs/MQTTClient_internal/html/search/all_3.js +++ b/docs/MQTTClient_internal/html/search/all_3.js @@ -3,7 +3,7 @@ var searchData= ['call_5fdisconnected_21',['call_disconnected',['../MQTTClient_8c.html#adbcf69dbaf0a0dcbcc87d23f99e73fca',1,'MQTTClient.c']]], ['capath_22',['CApath',['../structMQTTAsync__SSLOptions.html#a2c5cc887b0fd4a388b0bef9163d5b1ab',1,'MQTTAsync_SSLOptions::CApath()'],['../structMQTTClient__SSLOptions.html#a1901b5590afdc86db8e542c0d49f5106',1,'MQTTClient_SSLOptions::CApath()']]], ['child_23',['child',['../structNodeStruct.html#a6f84842a1ac8bf4ea19a3bb6b4af9c4d',1,'NodeStruct']]], - ['cleansession_24',['cleansession',['../structClients.html#a9853b4a06c38478148ab09fe9ccff423',1,'Clients::cleansession()'],['../structMQTTAsync__connectOptions.html#ac4addd2c4614cfc12c9dd7e199a989ff',1,'MQTTAsync_connectOptions::cleansession()'],['../structMQTTClient__connectOptions.html#a03a2cfaf17483f1b0aab2a70f3ef30d9',1,'MQTTClient_connectOptions::cleansession()']]], + ['cleansession_24',['cleansession',['../structMQTTClient__connectOptions.html#a03a2cfaf17483f1b0aab2a70f3ef30d9',1,'MQTTClient_connectOptions::cleansession()'],['../structMQTTAsync__connectOptions.html#ac4addd2c4614cfc12c9dd7e199a989ff',1,'MQTTAsync_connectOptions::cleansession()'],['../structClients.html#a9853b4a06c38478148ab09fe9ccff423',1,'Clients::cleansession()']]], ['cleanstart_25',['cleanstart',['../structClients.html#a8e1ca3c305b51f86c29d246a60d0fec2',1,'Clients::cleanstart()'],['../structConnect.html#a1ecdff766bc9f572a2d1a3ae22bd0bca',1,'Connect::cleanstart()']]], ['clientid_26',['clientID',['../structClients.html#aab6a37dbb279f1f1819bd89f75695e92',1,'Clients::clientID()'],['../structConnect.html#aa0063fa6349a7fb5be89cf1cbe4043b4',1,'Connect::clientID()']]], ['clientidcompare_27',['clientIDCompare',['../Clients_8c.html#a961b1c46020c65b7ffd662500d1c849d',1,'Clients.c']]], @@ -12,22 +12,23 @@ var searchData= ['clientsockcompare_30',['clientSockCompare',['../MQTTClient_8c.html#ac35494adea1f11d3480b50b8a7f0c17d',1,'MQTTClient.c']]], ['clientsocketcompare_31',['clientSocketCompare',['../Clients_8c.html#a82dc4e265fecdaea2810ccdeab0abf52',1,'Clients.c']]], ['clientstates_32',['ClientStates',['../structClientStates.html',1,'']]], - ['code_33',['code',['../structMQTTAsync__failureData.html#acbdff200c2c6ac593c88cd0b677921e2',1,'MQTTAsync_failureData::code()'],['../structMQTTAsync__failureData5.html#ac92de089ce2d9ae81b2c4b0dc1f97792',1,'MQTTAsync_failureData5::code()']]], + ['code_33',['code',['../structMQTTAsync__failureData5.html#ac92de089ce2d9ae81b2c4b0dc1f97792',1,'MQTTAsync_failureData5::code()'],['../structMQTTAsync__failureData.html#acbdff200c2c6ac593c88cd0b677921e2',1,'MQTTAsync_failureData::code()']]], ['compare_34',['compare',['../structTree.html#a9c7cc2fbf66ff51c0d90be03f3562c84',1,'Tree']]], ['cond_5ftype_5fstruct_35',['cond_type_struct',['../structcond__type__struct.html',1,'']]], - ['connack_36',['Connack',['../structConnack.html',1,'']]], - ['connect_37',['Connect',['../structConnect.html',1,'']]], - ['connect_5fcount_38',['connect_count',['../structClients.html#a46550d6ea8cf3480bb754afa56f516d5',1,'Clients']]], - ['connect_5fpending_39',['connect_pending',['../structSockets.html#ac1b74c5f7fd463159318d2ef3c8fcee6',1,'Sockets']]], - ['connect_5fsent_40',['connect_sent',['../structClients.html#a02e9acc54d3df8770178f16694c1f405',1,'Clients']]], - ['connected_41',['connected',['../structClients.html#adc2f2a83ccacde92ad6b4ee304fc3e6a',1,'Clients']]], - ['connectionlost_5fcall_42',['connectionLost_call',['../MQTTClient_8c.html#a0c0d8194bf8a449928881cf83276728e',1,'MQTTClient.c']]], - ['connectproperties_43',['connectProperties',['../structMQTTAsync__connectOptions.html#ad10d2f263a6802ec6a3a74e0cf9a7453',1,'MQTTAsync_connectOptions']]], - ['connecttimeout_44',['connectTimeout',['../structMQTTAsync__connectOptions.html#a0f2fb050e48f46332523fe1e48c04980',1,'MQTTAsync_connectOptions::connectTimeout()'],['../structMQTTClient__connectOptions.html#ab6713be91e99a94a7168bbcac02f6beb',1,'MQTTClient_connectOptions::connectTimeout()']]], - ['content_45',['content',['../structListElementStruct.html#a808c5a8a407bec041d0817705561ffd5',1,'ListElementStruct::content()'],['../structNodeStruct.html#aa605b943d1cb013da384c37f5a074285',1,'NodeStruct::content()']]], - ['context_46',['context',['../structClients.html#ae0c3a79f1943071fe9d336014cf5826a',1,'Clients::context()'],['../structMQTTAsync__responseOptions.html#a1d39a3f47712791b00ec7faab14c839a',1,'MQTTAsync_responseOptions::context()'],['../structMQTTAsync__connectOptions.html#ab1def8c5155a84603d6827664d59537c',1,'MQTTAsync_connectOptions::context()'],['../structMQTTAsync__disconnectOptions.html#a6c8a7ef5c761e46d17750919eb4dadd3',1,'MQTTAsync_disconnectOptions::context()'],['../structMQTTClient__persistence.html#a2066e737e00f3fcb016152b4a9cedad6',1,'MQTTClient_persistence::context()']]], - ['count_47',['count',['../structList.html#a7d50f0a95a04faab8c250bc6ea28a67d',1,'List::count()'],['../structMQTTProperties.html#a0eaa838640c90af2a963d7e0b23ff4e5',1,'MQTTProperties::count()'],['../structTree.html#ad13cc776048feb0a19c640c8f1d1ffd6',1,'Tree::count()']]], - ['cur_5ffd_48',['cur_fd',['../structSockets.html#a4ebc1178e3d1516f31b7dbc276cfde2b',1,'Sockets']]], - ['current_49',['current',['../structList.html#a76dacd2c880fb9a86ab7c0f3aa4ee624',1,'List']]], - ['current_5fsize_50',['current_size',['../structheap__info.html#a26c9bfacf416872c953138adc64e1a3d',1,'heap_info']]] + ['conlost_5fsync_5fdata_36',['conlost_sync_data',['../structconlost__sync__data.html',1,'']]], + ['connack_37',['Connack',['../structConnack.html',1,'']]], + ['connect_38',['Connect',['../structConnect.html',1,'']]], + ['connect_5fcount_39',['connect_count',['../structClients.html#a46550d6ea8cf3480bb754afa56f516d5',1,'Clients']]], + ['connect_5fpending_40',['connect_pending',['../structSockets.html#ac1b74c5f7fd463159318d2ef3c8fcee6',1,'Sockets']]], + ['connect_5fsent_41',['connect_sent',['../structClients.html#a02e9acc54d3df8770178f16694c1f405',1,'Clients']]], + ['connected_42',['connected',['../structClients.html#adc2f2a83ccacde92ad6b4ee304fc3e6a',1,'Clients']]], + ['connectionlost_5fcall_43',['connectionLost_call',['../MQTTClient_8c.html#a0c0d8194bf8a449928881cf83276728e',1,'MQTTClient.c']]], + ['connectproperties_44',['connectProperties',['../structMQTTAsync__connectOptions.html#ad10d2f263a6802ec6a3a74e0cf9a7453',1,'MQTTAsync_connectOptions']]], + ['connecttimeout_45',['connectTimeout',['../structMQTTAsync__connectOptions.html#a0f2fb050e48f46332523fe1e48c04980',1,'MQTTAsync_connectOptions::connectTimeout()'],['../structMQTTClient__connectOptions.html#ab6713be91e99a94a7168bbcac02f6beb',1,'MQTTClient_connectOptions::connectTimeout()']]], + ['content_46',['content',['../structNodeStruct.html#aa605b943d1cb013da384c37f5a074285',1,'NodeStruct::content()'],['../structListElementStruct.html#a808c5a8a407bec041d0817705561ffd5',1,'ListElementStruct::content()']]], + ['context_47',['context',['../structMQTTClient__persistence.html#a2066e737e00f3fcb016152b4a9cedad6',1,'MQTTClient_persistence::context()'],['../structMQTTAsync__disconnectOptions.html#a6c8a7ef5c761e46d17750919eb4dadd3',1,'MQTTAsync_disconnectOptions::context()'],['../structMQTTAsync__connectOptions.html#ab1def8c5155a84603d6827664d59537c',1,'MQTTAsync_connectOptions::context()'],['../structMQTTAsync__responseOptions.html#a1d39a3f47712791b00ec7faab14c839a',1,'MQTTAsync_responseOptions::context()'],['../structClients.html#ae0c3a79f1943071fe9d336014cf5826a',1,'Clients::context()']]], + ['count_48',['count',['../structList.html#a7d50f0a95a04faab8c250bc6ea28a67d',1,'List::count()'],['../structMQTTProperties.html#a0eaa838640c90af2a963d7e0b23ff4e5',1,'MQTTProperties::count()'],['../structTree.html#ad13cc776048feb0a19c640c8f1d1ffd6',1,'Tree::count()']]], + ['cur_5ffd_49',['cur_fd',['../structSockets.html#a4ebc1178e3d1516f31b7dbc276cfde2b',1,'Sockets']]], + ['current_50',['current',['../structList.html#a76dacd2c880fb9a86ab7c0f3aa4ee624',1,'List']]], + ['current_5fsize_51',['current_size',['../structheap__info.html#a26c9bfacf416872c953138adc64e1a3d',1,'heap_info']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_4.html b/docs/MQTTClient_internal/html/search/all_4.html index 06de1550..fc40463c 100644 --- a/docs/MQTTClient_internal/html/search/all_4.html +++ b/docs/MQTTClient_internal/html/search/all_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_4.js b/docs/MQTTClient_internal/html/search/all_4.js index 737e1005..8c31af24 100644 --- a/docs/MQTTClient_internal/html/search/all_4.js +++ b/docs/MQTTClient_internal/html/search/all_4.js @@ -1,10 +1,10 @@ var searchData= [ - ['data_51',['data',['../structMQTTAsync__connectData.html#a3a5188d10f6aab79d85d0468a56e5033',1,'MQTTAsync_connectData::data()'],['../structMQTTAsync__willOptions.html#a9e18ae16bb17c09708e7f767390a9638',1,'MQTTAsync_willOptions::data()'],['../structMQTTAsync__connectOptions.html#aad75b20bff67aa3462602fe41465931a',1,'MQTTAsync_connectOptions::data()'],['../structMQTTClient__willOptions.html#aceaee06cb85a7dd485e58f0cd26c289d',1,'MQTTClient_willOptions::data()'],['../structMQTTClient__connectOptions.html#aaa44742ad0345bf7f3aea7628dea6bca',1,'MQTTClient_connectOptions::data()'],['../structMQTTLenString.html#ac875ffa1e0af752d17a10be055c33377',1,'MQTTLenString::data()'],['../structMQTTProperty.html#af08778d86fb08643620cefabd205bc11',1,'MQTTProperty::data()']]], - ['datalen_52',['datalen',['../structsocket__queue.html#a812ce9bb00766c3e91a593842414b693',1,'socket_queue']]], - ['def_5fqueue_53',['def_queue',['../SocketBuffer_8c.html#ace376d23d15b97a487298fa0c8a238ea',1,'SocketBuffer.c']]], - ['destinationname_54',['destinationName',['../structMQTTAsync__successData.html#af3eef8b306fc96c9a0e36f2d0fd1e322',1,'MQTTAsync_successData::destinationName()'],['../structMQTTAsync__successData5.html#a3aa03bcf1e08deeaacb237d014181e80',1,'MQTTAsync_successData5::destinationName()']]], - ['disabledefaulttruststore_55',['disableDefaultTrustStore',['../structMQTTAsync__SSLOptions.html#a349454d7fe6021b62004874d7efa6277',1,'MQTTAsync_SSLOptions::disableDefaultTrustStore()'],['../structMQTTClient__SSLOptions.html#a09caf7e179009d70fff6205e89fcc434',1,'MQTTClient_SSLOptions::disableDefaultTrustStore()']]], - ['do_5fopenssl_5finit_56',['do_openssl_init',['../structMQTTAsync__init__options.html#a97caac4b94254b6b9251c07e9532f18b',1,'MQTTAsync_init_options::do_openssl_init()'],['../structMQTTClient__init__options.html#acb4f69163cbb7cf8fcc44ca086354dbc',1,'MQTTClient_init_options::do_openssl_init()']]], - ['dup_57',['dup',['../structMQTTAsync__message.html#aa9da73253863089ee90033c7f0dd28bf',1,'MQTTAsync_message::dup()'],['../structMQTTClient__message.html#abbb5f23377bd9f39cc79756786fa45cc',1,'MQTTClient_message::dup()'],['../unionHeader.html#a35c1c5537424b9307f4ff0803f16a25f',1,'Header::dup()']]] + ['data_52',['data',['../structMQTTAsync__willOptions.html#a9e18ae16bb17c09708e7f767390a9638',1,'MQTTAsync_willOptions::data()'],['../structMQTTAsync__connectOptions.html#aad75b20bff67aa3462602fe41465931a',1,'MQTTAsync_connectOptions::data()'],['../structMQTTClient__willOptions.html#aceaee06cb85a7dd485e58f0cd26c289d',1,'MQTTClient_willOptions::data()'],['../structMQTTClient__connectOptions.html#aaa44742ad0345bf7f3aea7628dea6bca',1,'MQTTClient_connectOptions::data()'],['../structMQTTLenString.html#ac875ffa1e0af752d17a10be055c33377',1,'MQTTLenString::data()'],['../structMQTTProperty.html#af08778d86fb08643620cefabd205bc11',1,'MQTTProperty::data()'],['../structMQTTAsync__connectData.html#a3a5188d10f6aab79d85d0468a56e5033',1,'MQTTAsync_connectData::data()']]], + ['datalen_53',['datalen',['../structsocket__queue.html#a812ce9bb00766c3e91a593842414b693',1,'socket_queue']]], + ['def_5fqueue_54',['def_queue',['../SocketBuffer_8c.html#ace376d23d15b97a487298fa0c8a238ea',1,'SocketBuffer.c']]], + ['destinationname_55',['destinationName',['../structMQTTAsync__successData5.html#a3aa03bcf1e08deeaacb237d014181e80',1,'MQTTAsync_successData5::destinationName()'],['../structMQTTAsync__successData.html#af3eef8b306fc96c9a0e36f2d0fd1e322',1,'MQTTAsync_successData::destinationName()']]], + ['disabledefaulttruststore_56',['disableDefaultTrustStore',['../structMQTTAsync__SSLOptions.html#a349454d7fe6021b62004874d7efa6277',1,'MQTTAsync_SSLOptions::disableDefaultTrustStore()'],['../structMQTTClient__SSLOptions.html#a09caf7e179009d70fff6205e89fcc434',1,'MQTTClient_SSLOptions::disableDefaultTrustStore()']]], + ['do_5fopenssl_5finit_57',['do_openssl_init',['../structMQTTAsync__init__options.html#a97caac4b94254b6b9251c07e9532f18b',1,'MQTTAsync_init_options::do_openssl_init()'],['../structMQTTClient__init__options.html#acb4f69163cbb7cf8fcc44ca086354dbc',1,'MQTTClient_init_options::do_openssl_init()']]], + ['dup_58',['dup',['../structMQTTAsync__message.html#aa9da73253863089ee90033c7f0dd28bf',1,'MQTTAsync_message::dup()'],['../structMQTTClient__message.html#abbb5f23377bd9f39cc79756786fa45cc',1,'MQTTClient_message::dup()'],['../unionHeader.html#a35c1c5537424b9307f4ff0803f16a25f',1,'Header::dup()']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_5.html b/docs/MQTTClient_internal/html/search/all_5.html index 2544c4e5..9dd9344b 100644 --- a/docs/MQTTClient_internal/html/search/all_5.html +++ b/docs/MQTTClient_internal/html/search/all_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_5.js b/docs/MQTTClient_internal/html/search/all_5.js index b52b68c6..72223b65 100644 --- a/docs/MQTTClient_internal/html/search/all_5.js +++ b/docs/MQTTClient_internal/html/search/all_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['enabledciphersuites_58',['enabledCipherSuites',['../structMQTTAsync__SSLOptions.html#a45ea4eb5a79cb0b6150c86d15c3143c9',1,'MQTTAsync_SSLOptions::enabledCipherSuites()'],['../structMQTTClient__SSLOptions.html#a0e07f3de1807ab841646cbb8bfa94657',1,'MQTTClient_SSLOptions::enabledCipherSuites()']]], - ['enableservercertauth_59',['enableServerCertAuth',['../structMQTTAsync__SSLOptions.html#ab349eef3682c23527cf73bd9cea8782c',1,'MQTTAsync_SSLOptions::enableServerCertAuth()'],['../structMQTTClient__SSLOptions.html#ac21e3ad623dd35533e7101001299fb6f',1,'MQTTClient_SSLOptions::enableServerCertAuth()']]] + ['enabledciphersuites_59',['enabledCipherSuites',['../structMQTTAsync__SSLOptions.html#a45ea4eb5a79cb0b6150c86d15c3143c9',1,'MQTTAsync_SSLOptions::enabledCipherSuites()'],['../structMQTTClient__SSLOptions.html#a0e07f3de1807ab841646cbb8bfa94657',1,'MQTTClient_SSLOptions::enabledCipherSuites()']]], + ['enableservercertauth_60',['enableServerCertAuth',['../structMQTTAsync__SSLOptions.html#ab349eef3682c23527cf73bd9cea8782c',1,'MQTTAsync_SSLOptions::enableServerCertAuth()'],['../structMQTTClient__SSLOptions.html#ac21e3ad623dd35533e7101001299fb6f',1,'MQTTClient_SSLOptions::enableServerCertAuth()']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_6.html b/docs/MQTTClient_internal/html/search/all_6.html index 43f14eab..f1e516d7 100644 --- a/docs/MQTTClient_internal/html/search/all_6.html +++ b/docs/MQTTClient_internal/html/search/all_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_6.js b/docs/MQTTClient_internal/html/search/all_6.js index cc5caaf3..b1e80927 100644 --- a/docs/MQTTClient_internal/html/search/all_6.js +++ b/docs/MQTTClient_internal/html/search/all_6.js @@ -1,11 +1,11 @@ var searchData= [ - ['fds_5fread_60',['fds_read',['../structSockets.html#a9e91e6577708542a4aab9c43976f7923',1,'Sockets']]], - ['file_61',['file',['../structstorageElement.html#aa13f42ed8f43459d289dec1bc4e259dd',1,'storageElement']]], - ['findstring_62',['FindString',['../MQTTVersion_8c.html#a60231c316988ddb6d3ecf20a3195fe8d',1,'MQTTVersion.c']]], - ['first_63',['first',['../structList.html#ab6dd52dbb617d263723015ef055caffe',1,'List']]], - ['fixed_5fheader_64',['fixed_header',['../structsocket__queue.html#a8cc2b561b0b418fbbcc7ede680c71169',1,'socket_queue']]], - ['flags_65',['flags',['../structConnect.html#a0c84bf238adaf04ea32a2b759247d80a',1,'Connect::flags()'],['../structConnack.html#a296f82b2061fa92586c8c2212ffd6efd',1,'Connack::flags()']]], - ['framedata_66',['frameData',['../structframeData.html',1,'']]], - ['frees_67',['frees',['../structPacketBuffers.html#a3cd5992bdafa89f7e7a7083b20ff9390',1,'PacketBuffers']]] + ['fds_5fread_61',['fds_read',['../structSockets.html#a9e91e6577708542a4aab9c43976f7923',1,'Sockets']]], + ['file_62',['file',['../structstorageElement.html#aa13f42ed8f43459d289dec1bc4e259dd',1,'storageElement']]], + ['findstring_63',['FindString',['../MQTTVersion_8c.html#a60231c316988ddb6d3ecf20a3195fe8d',1,'MQTTVersion.c']]], + ['first_64',['first',['../structList.html#ab6dd52dbb617d263723015ef055caffe',1,'List']]], + ['fixed_5fheader_65',['fixed_header',['../structsocket__queue.html#a8cc2b561b0b418fbbcc7ede680c71169',1,'socket_queue']]], + ['flags_66',['flags',['../structConnect.html#a0c84bf238adaf04ea32a2b759247d80a',1,'Connect::flags()'],['../structConnack.html#a296f82b2061fa92586c8c2212ffd6efd',1,'Connack::flags()']]], + ['framedata_67',['frameData',['../structframeData.html',1,'']]], + ['frees_68',['frees',['../structPacketBuffers.html#a3cd5992bdafa89f7e7a7083b20ff9390',1,'PacketBuffers']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_7.html b/docs/MQTTClient_internal/html/search/all_7.html index af52f82a..8ddbf6c8 100644 --- a/docs/MQTTClient_internal/html/search/all_7.html +++ b/docs/MQTTClient_internal/html/search/all_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_7.js b/docs/MQTTClient_internal/html/search/all_7.js index 654c8ac1..5d868f72 100644 --- a/docs/MQTTClient_internal/html/search/all_7.js +++ b/docs/MQTTClient_internal/html/search/all_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['good_68',['good',['../structClients.html#a45dde398d2d928794de3886c74c435f6',1,'Clients']]] + ['good_69',['good',['../structClients.html#a45dde398d2d928794de3886c74c435f6',1,'Clients']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_8.html b/docs/MQTTClient_internal/html/search/all_8.html index cf2b5df9..83c55ae2 100644 --- a/docs/MQTTClient_internal/html/search/all_8.html +++ b/docs/MQTTClient_internal/html/search/all_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_8.js b/docs/MQTTClient_internal/html/search/all_8.js index 099ffc55..eb6d7577 100644 --- a/docs/MQTTClient_internal/html/search/all_8.js +++ b/docs/MQTTClient_internal/html/search/all_8.js @@ -1,20 +1,21 @@ var searchData= [ - ['header_69',['Header',['../unionHeader.html',1,'Header'],['../structConnect.html#a64c92596b5ce2c01452d53d91fdf41c4',1,'Connect::header()'],['../structConnack.html#af532b37a9b73aaf2254d9e5789814d71',1,'Connack::header()'],['../structMQTTPacket.html#a0f16e8684e0dd97e5b61785b18c48151',1,'MQTTPacket::header()'],['../structSuback.html#a18c1a08ef8f60791bd6495d4ecba0066',1,'Suback::header()'],['../structUnsuback.html#a7751d1086fd1c6d9ba948b10e816a0dc',1,'Unsuback::header()'],['../structPublish.html#a05131ded5e4a7768aee72f66df37f67d',1,'Publish::header()'],['../structAck.html#a8be1d032b4a67550dc6020d450ad65b6',1,'Ack::header()']]], - ['heap_70',['heap',['../Heap_8c.html#aa337931db6f2e3b78d5dce6a8d228257',1,'Heap.c']]], - ['heap_2ec_71',['Heap.c',['../Heap_8c.html',1,'']]], - ['heap_5ffinditem_72',['Heap_findItem',['../Heap_8c.html#a0f10ff94faca02a6f81953c889802954',1,'Heap.c']]], - ['heap_5fget_5finfo_73',['Heap_get_info',['../Heap_8c.html#a20faecf28cdd9d2fbf7d975c5b0863ef',1,'Heap.c']]], - ['heap_5finfo_74',['heap_info',['../structheap__info.html',1,'']]], - ['heap_5finitialize_75',['Heap_initialize',['../Heap_8c.html#a7fb8bd5f7469fc9c1e48c3a1f17de88a',1,'Heap.c']]], - ['heap_5froundup_76',['Heap_roundup',['../Heap_8c.html#ae75b06db0cdfce5c281f8672e8577854',1,'Heap.c']]], - ['heap_5fterminate_77',['Heap_terminate',['../Heap_8c.html#a669dfefa789daec52dd8ddc03ff1f9f9',1,'Heap.c']]], - ['heap_5ftracking_78',['heap_tracking',['../structTree.html#ad3f36479166a4a7d4124c6a79ee770f4',1,'Tree']]], - ['heap_5funlink_79',['Heap_unlink',['../Heap_8c.html#a5f453bffe39551109e282c904a6f2902',1,'Heap.c']]], - ['heapdump_80',['HeapDump',['../Heap_8c.html#aea7ea58998f69f14e16a3237c1d02d8a',1,'Heap.c']]], - ['heapdumpstring_81',['HeapDumpString',['../Heap_8c.html#a6cdadd76da21b7269cf5d9fc92dedb68',1,'Heap.c']]], - ['heapscan_82',['HeapScan',['../Heap_8c.html#aafff91620a02cc5f8160ee55dc1d7bf4',1,'Heap.c']]], - ['httpheaders_83',['httpHeaders',['../structMQTTAsync__connectOptions.html#a804e7ee013338a83a6f573f6644829ca',1,'MQTTAsync_connectOptions::httpHeaders()'],['../structMQTTClient__connectOptions.html#a843b077a0524dcc6a1ce6db12d2e7412',1,'MQTTClient_connectOptions::httpHeaders()']]], - ['httpproxy_84',['httpProxy',['../structClients.html#a70540b5d48c05815309215b18de69f8a',1,'Clients::httpProxy()'],['../structMQTTAsync__connectOptions.html#a2290cec827700b22efca37ea4bce3abd',1,'MQTTAsync_connectOptions::httpProxy()'],['../structMQTTClient__connectOptions.html#a4c801d96d7a0013928d6a475fd48fe3c',1,'MQTTClient_connectOptions::httpProxy()']]], - ['httpsproxy_85',['httpsProxy',['../structClients.html#a3864bdb9426f9fc646eff80109a831b3',1,'Clients::httpsProxy()'],['../structMQTTAsync__connectOptions.html#ad4937ddf0e089fb0e0e054ae3a3aea55',1,'MQTTAsync_connectOptions::httpsProxy()'],['../structMQTTClient__connectOptions.html#aff577bef3a72e4aa9022fda4cffd4544',1,'MQTTClient_connectOptions::httpsProxy()']]] + ['header_70',['header',['../structConnect.html#a64c92596b5ce2c01452d53d91fdf41c4',1,'Connect::header()'],['../structConnack.html#af532b37a9b73aaf2254d9e5789814d71',1,'Connack::header()'],['../structMQTTPacket.html#a0f16e8684e0dd97e5b61785b18c48151',1,'MQTTPacket::header()'],['../structSuback.html#a18c1a08ef8f60791bd6495d4ecba0066',1,'Suback::header()'],['../structUnsuback.html#a7751d1086fd1c6d9ba948b10e816a0dc',1,'Unsuback::header()'],['../structPublish.html#a05131ded5e4a7768aee72f66df37f67d',1,'Publish::header()'],['../structAck.html#a8be1d032b4a67550dc6020d450ad65b6',1,'Ack::header()']]], + ['header_71',['Header',['../unionHeader.html',1,'']]], + ['heap_72',['heap',['../Heap_8c.html#aa337931db6f2e3b78d5dce6a8d228257',1,'Heap.c']]], + ['heap_2ec_73',['Heap.c',['../Heap_8c.html',1,'']]], + ['heap_5ffinditem_74',['Heap_findItem',['../Heap_8c.html#a0f10ff94faca02a6f81953c889802954',1,'Heap.c']]], + ['heap_5fget_5finfo_75',['Heap_get_info',['../Heap_8c.html#a20faecf28cdd9d2fbf7d975c5b0863ef',1,'Heap.c']]], + ['heap_5finfo_76',['heap_info',['../structheap__info.html',1,'']]], + ['heap_5finitialize_77',['Heap_initialize',['../Heap_8c.html#a7fb8bd5f7469fc9c1e48c3a1f17de88a',1,'Heap.c']]], + ['heap_5froundup_78',['Heap_roundup',['../Heap_8c.html#ae75b06db0cdfce5c281f8672e8577854',1,'Heap.c']]], + ['heap_5fterminate_79',['Heap_terminate',['../Heap_8c.html#a669dfefa789daec52dd8ddc03ff1f9f9',1,'Heap.c']]], + ['heap_5ftracking_80',['heap_tracking',['../structTree.html#ad3f36479166a4a7d4124c6a79ee770f4',1,'Tree']]], + ['heap_5funlink_81',['Heap_unlink',['../Heap_8c.html#a5f453bffe39551109e282c904a6f2902',1,'Heap.c']]], + ['heapdump_82',['HeapDump',['../Heap_8c.html#aea7ea58998f69f14e16a3237c1d02d8a',1,'Heap.c']]], + ['heapdumpstring_83',['HeapDumpString',['../Heap_8c.html#a6cdadd76da21b7269cf5d9fc92dedb68',1,'Heap.c']]], + ['heapscan_84',['HeapScan',['../Heap_8c.html#aafff91620a02cc5f8160ee55dc1d7bf4',1,'Heap.c']]], + ['httpheaders_85',['httpHeaders',['../structMQTTClient__connectOptions.html#a843b077a0524dcc6a1ce6db12d2e7412',1,'MQTTClient_connectOptions::httpHeaders()'],['../structMQTTAsync__connectOptions.html#a804e7ee013338a83a6f573f6644829ca',1,'MQTTAsync_connectOptions::httpHeaders()']]], + ['httpproxy_86',['httpProxy',['../structMQTTClient__connectOptions.html#a4c801d96d7a0013928d6a475fd48fe3c',1,'MQTTClient_connectOptions::httpProxy()'],['../structMQTTAsync__connectOptions.html#a2290cec827700b22efca37ea4bce3abd',1,'MQTTAsync_connectOptions::httpProxy()'],['../structClients.html#a70540b5d48c05815309215b18de69f8a',1,'Clients::httpProxy()']]], + ['httpsproxy_87',['httpsProxy',['../structMQTTClient__connectOptions.html#aff577bef3a72e4aa9022fda4cffd4544',1,'MQTTClient_connectOptions::httpsProxy()'],['../structMQTTAsync__connectOptions.html#ad4937ddf0e089fb0e0e054ae3a3aea55',1,'MQTTAsync_connectOptions::httpsProxy()'],['../structClients.html#a3864bdb9426f9fc646eff80109a831b3',1,'Clients::httpsProxy()']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_9.html b/docs/MQTTClient_internal/html/search/all_9.html index 690785a5..1e263c13 100644 --- a/docs/MQTTClient_internal/html/search/all_9.html +++ b/docs/MQTTClient_internal/html/search/all_9.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_9.js b/docs/MQTTClient_internal/html/search/all_9.js index f86ca360..b46571c6 100644 --- a/docs/MQTTClient_internal/html/search/all_9.js +++ b/docs/MQTTClient_internal/html/search/all_9.js @@ -1,11 +1,11 @@ var searchData= [ - ['identifier_86',['identifier',['../structMQTTProperty.html#a5e407f4d2a2ba51cc784b7660fc06e6f',1,'MQTTProperty']]], - ['inboundmsgs_87',['inboundMsgs',['../structClients.html#a6e1576ebc386f04d2a70b943677b54d6',1,'Clients']]], - ['indexes_88',['indexes',['../structTree.html#a970b46e9c386139ad4fe213c043238e5',1,'Tree']]], - ['intcompare_89',['intcompare',['../LinkedList_8c.html#a1738915a6d6f10022e9ee1481c0ae452',1,'LinkedList.c']]], - ['integer2_90',['integer2',['../structMQTTProperty.html#a940cbb3bf8211c5f207e3e1b6495c573',1,'MQTTProperty']]], - ['integer4_91',['integer4',['../structMQTTProperty.html#a64f07dae61291856a24828ff9fd70dd2',1,'MQTTProperty']]], - ['internal_5fheap_5funlink_92',['Internal_heap_unlink',['../Heap_8c.html#ac23c370399a3c7b9aa9fa9d0672be122',1,'Heap.c']]], - ['isready_93',['isReady',['../Socket_8c.html#a42a217310f6f55473525764038ac367d',1,'Socket.c']]] + ['identifier_88',['identifier',['../structMQTTProperty.html#a5e407f4d2a2ba51cc784b7660fc06e6f',1,'MQTTProperty']]], + ['inboundmsgs_89',['inboundMsgs',['../structClients.html#a6e1576ebc386f04d2a70b943677b54d6',1,'Clients']]], + ['indexes_90',['indexes',['../structTree.html#a970b46e9c386139ad4fe213c043238e5',1,'Tree']]], + ['intcompare_91',['intcompare',['../LinkedList_8c.html#a1738915a6d6f10022e9ee1481c0ae452',1,'LinkedList.c']]], + ['integer2_92',['integer2',['../structMQTTProperty.html#a940cbb3bf8211c5f207e3e1b6495c573',1,'MQTTProperty']]], + ['integer4_93',['integer4',['../structMQTTProperty.html#a64f07dae61291856a24828ff9fd70dd2',1,'MQTTProperty']]], + ['internal_5fheap_5funlink_94',['Internal_heap_unlink',['../Heap_8c.html#ac23c370399a3c7b9aa9fa9d0672be122',1,'Heap.c']]], + ['isready_95',['isReady',['../Socket_8c.html#a42a217310f6f55473525764038ac367d',1,'Socket.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_a.html b/docs/MQTTClient_internal/html/search/all_a.html index f2f3d3a3..3a6cac10 100644 --- a/docs/MQTTClient_internal/html/search/all_a.html +++ b/docs/MQTTClient_internal/html/search/all_a.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_a.js b/docs/MQTTClient_internal/html/search/all_a.js index 31b7dd4c..6b7fd88b 100644 --- a/docs/MQTTClient_internal/html/search/all_a.js +++ b/docs/MQTTClient_internal/html/search/all_a.js @@ -1,6 +1,6 @@ var searchData= [ - ['keepaliveinterval_94',['keepAliveInterval',['../structClients.html#a0c9720f6d2df33e40ca5a28ced0036bb',1,'Clients::keepAliveInterval()'],['../structMQTTAsync__connectOptions.html#ad6ed277d7db13a98ecef45ff3dd10044',1,'MQTTAsync_connectOptions::keepAliveInterval()'],['../structMQTTClient__connectOptions.html#a7de757dd172a63d699290d582aa0f798',1,'MQTTClient_connectOptions::keepAliveInterval()']]], - ['keepalivetimer_95',['keepAliveTimer',['../structConnect.html#a5274defe9badb8c5e46e7b674c548441',1,'Connect']]], - ['keystore_96',['keyStore',['../structMQTTAsync__SSLOptions.html#ac1b1a5ae74a807d672b5d44c7ecc4a9b',1,'MQTTAsync_SSLOptions::keyStore()'],['../structMQTTClient__SSLOptions.html#aab300df31cebc087303c4e5b8071e12c',1,'MQTTClient_SSLOptions::keyStore()']]] + ['keepaliveinterval_96',['keepAliveInterval',['../structClients.html#a0c9720f6d2df33e40ca5a28ced0036bb',1,'Clients::keepAliveInterval()'],['../structMQTTAsync__connectOptions.html#ad6ed277d7db13a98ecef45ff3dd10044',1,'MQTTAsync_connectOptions::keepAliveInterval()'],['../structMQTTClient__connectOptions.html#a7de757dd172a63d699290d582aa0f798',1,'MQTTClient_connectOptions::keepAliveInterval()']]], + ['keepalivetimer_97',['keepAliveTimer',['../structConnect.html#a5274defe9badb8c5e46e7b674c548441',1,'Connect']]], + ['keystore_98',['keyStore',['../structMQTTAsync__SSLOptions.html#ac1b1a5ae74a807d672b5d44c7ecc4a9b',1,'MQTTAsync_SSLOptions::keyStore()'],['../structMQTTClient__SSLOptions.html#aab300df31cebc087303c4e5b8071e12c',1,'MQTTClient_SSLOptions::keyStore()']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_b.html b/docs/MQTTClient_internal/html/search/all_b.html index 14f34036..130deb4e 100644 --- a/docs/MQTTClient_internal/html/search/all_b.html +++ b/docs/MQTTClient_internal/html/search/all_b.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_b.js b/docs/MQTTClient_internal/html/search/all_b.js index 5972e4ef..d3a4eabe 100644 --- a/docs/MQTTClient_internal/html/search/all_b.js +++ b/docs/MQTTClient_internal/html/search/all_b.js @@ -1,36 +1,36 @@ var searchData= [ - ['last_97',['last',['../structList.html#a7be27419b0df1734d1028fa1729eb96c',1,'List']]], - ['len_98',['len',['../structMessages.html#a4751604bf85bccbff2273a069f976679',1,'Messages::len()'],['../structMQTTAsync__connectData.html#a34da6971227839d7ae96394a8bb2c31c',1,'MQTTAsync_connectData::len()'],['../structMQTTAsync__willOptions.html#af6f445357e4993806ceedbe7bafb2c20',1,'MQTTAsync_willOptions::len()'],['../structMQTTAsync__connectOptions.html#ac6d0d8d8e9c2f55f24b3219c18886be5',1,'MQTTAsync_connectOptions::len()'],['../structMQTTClient__willOptions.html#abfa72c814f19cbd87bf777da96ff2860',1,'MQTTClient_willOptions::len()'],['../structMQTTClient__connectOptions.html#a3e0d107b093f17c9623f4d1b76d18db6',1,'MQTTClient_connectOptions::len()'],['../structMQTTLenString.html#a7eb20db2b77f5e224e12d94c78573fa3',1,'MQTTLenString::len()'],['../structws__frame.html#a39b63d46db10302225327f57a20ce099',1,'ws_frame::len()'],['../utf-8_8c.html#afed088663f8704004425cdae2120b9b3',1,'len(): utf-8.c']]], - ['length_99',['length',['../structMQTTProperties.html#a9538dfb5688661da09829a64f582c3c2',1,'MQTTProperties']]], - ['line_100',['line',['../structstorageElement.html#aa378660045dffaebb2804fd8ba6c5982',1,'storageElement']]], - ['lines_5fwritten_101',['lines_written',['../Log_8c.html#af6d2621ee2d6d01ab6b42b9afbc1c56e',1,'Log.c']]], - ['linkedlist_2ec_102',['LinkedList.c',['../LinkedList_8c.html',1,'']]], - ['list_103',['List',['../structList.html',1,'']]], - ['listappend_104',['ListAppend',['../LinkedList_8c.html#abc7a28449893dfa775c2f709349968b4',1,'LinkedList.c']]], - ['listappendnomalloc_105',['ListAppendNoMalloc',['../LinkedList_8c.html#a321a3598d6979c7af3f995b77ea2cec3',1,'LinkedList.c']]], - ['listdetach_106',['ListDetach',['../LinkedList_8c.html#ab2bcc1897abf1d98490ea81c474dba52',1,'LinkedList.c']]], - ['listdetachhead_107',['ListDetachHead',['../LinkedList_8c.html#ab0f3597d344e09ad6636c8bc72029337',1,'LinkedList.c']]], - ['listdetachitem_108',['ListDetachItem',['../LinkedList_8c.html#a9ed745f7ba486d16d009e86433fece7b',1,'LinkedList.c']]], - ['listelementstruct_109',['ListElementStruct',['../structListElementStruct.html',1,'']]], - ['listempty_110',['ListEmpty',['../LinkedList_8c.html#a3cf8578dba23f97dd0411e85fe3b7ff2',1,'LinkedList.c']]], - ['listfind_111',['ListFind',['../LinkedList_8c.html#ad2879a10b723fb7c1f95c0ad0abdbc50',1,'LinkedList.c']]], - ['listfinditem_112',['ListFindItem',['../LinkedList_8c.html#acad319e9ce896ff1fff30ddbeb06d22d',1,'LinkedList.c']]], - ['listfree_113',['ListFree',['../LinkedList_8c.html#a276950531b3f54e0dda27d597572c192',1,'LinkedList.c']]], - ['listfreenocontent_114',['ListFreeNoContent',['../LinkedList_8c.html#a8b3e61bc873a90ad2ea43a15e6c001f4',1,'LinkedList.c']]], - ['listinitialize_115',['ListInitialize',['../LinkedList_8c.html#a27e2cccab9752618ead91eafbe2a9a46',1,'LinkedList.c']]], - ['listinsert_116',['ListInsert',['../LinkedList_8c.html#aabca387fa4b86475bc9e4da40c3977fc',1,'LinkedList.c']]], - ['listnextelement_117',['ListNextElement',['../LinkedList_8c.html#a7c6fba7f4b569c69829676bed2852ee9',1,'LinkedList.c']]], - ['listpoptail_118',['ListPopTail',['../LinkedList_8c.html#a84b0ad14e7cebcd7b9ebab89a8d48321',1,'LinkedList.c']]], - ['listprevelement_119',['ListPrevElement',['../LinkedList_8c.html#a371f4a5021e6aa639bab6ab1457fc1d2',1,'LinkedList.c']]], - ['listremove_120',['ListRemove',['../LinkedList_8c.html#a8430370b2b15c56ec95bb8e7e36753a5',1,'LinkedList.c']]], - ['listremovehead_121',['ListRemoveHead',['../LinkedList_8c.html#a5ee7cd1d29fd9299231d40c011174fcd',1,'LinkedList.c']]], - ['listremoveitem_122',['ListRemoveItem',['../LinkedList_8c.html#a4bb7c34fe9a5832d65f530091e0fad0d',1,'LinkedList.c']]], - ['listunlink_123',['ListUnlink',['../LinkedList_8c.html#ab82181e0c1d96954f82dee67cee41296',1,'LinkedList.c']]], - ['listzero_124',['ListZero',['../LinkedList_8c.html#aa254fb1eab8e30d0e03859b333dc22ed',1,'LinkedList.c']]], - ['log_125',['Log',['../Log_8c.html#a669722e3f57811871f97c12392aba85d',1,'Log.c']]], - ['log_2ec_126',['Log.c',['../Log_8c.html',1,'']]], - ['log_5fnamevalue_127',['Log_nameValue',['../structLog__nameValue.html',1,'']]], - ['log_5fstacktrace_128',['Log_stackTrace',['../Log_8c.html#aeb93e137086d574a96548cecca9e9217',1,'Log.c']]], - ['lower_129',['lower',['../utf-8_8c.html#a17ae1b83727db4230c8df98b4ee953fc',1,'utf-8.c']]] + ['last_99',['last',['../structList.html#a7be27419b0df1734d1028fa1729eb96c',1,'List']]], + ['len_100',['len',['../utf-8_8c.html#afed088663f8704004425cdae2120b9b3',1,'len(): utf-8.c'],['../structMessages.html#a4751604bf85bccbff2273a069f976679',1,'Messages::len()'],['../structMQTTAsync__connectData.html#a34da6971227839d7ae96394a8bb2c31c',1,'MQTTAsync_connectData::len()'],['../structMQTTAsync__willOptions.html#af6f445357e4993806ceedbe7bafb2c20',1,'MQTTAsync_willOptions::len()'],['../structMQTTAsync__connectOptions.html#ac6d0d8d8e9c2f55f24b3219c18886be5',1,'MQTTAsync_connectOptions::len()'],['../structMQTTClient__willOptions.html#abfa72c814f19cbd87bf777da96ff2860',1,'MQTTClient_willOptions::len()'],['../structMQTTClient__connectOptions.html#a3e0d107b093f17c9623f4d1b76d18db6',1,'MQTTClient_connectOptions::len()'],['../structMQTTLenString.html#a7eb20db2b77f5e224e12d94c78573fa3',1,'MQTTLenString::len()'],['../structws__frame.html#a39b63d46db10302225327f57a20ce099',1,'ws_frame::len()']]], + ['length_101',['length',['../structMQTTProperties.html#a9538dfb5688661da09829a64f582c3c2',1,'MQTTProperties']]], + ['line_102',['line',['../structstorageElement.html#aa378660045dffaebb2804fd8ba6c5982',1,'storageElement']]], + ['lines_5fwritten_103',['lines_written',['../Log_8c.html#af6d2621ee2d6d01ab6b42b9afbc1c56e',1,'Log.c']]], + ['linkedlist_2ec_104',['LinkedList.c',['../LinkedList_8c.html',1,'']]], + ['list_105',['List',['../structList.html',1,'']]], + ['listappend_106',['ListAppend',['../LinkedList_8c.html#abc7a28449893dfa775c2f709349968b4',1,'LinkedList.c']]], + ['listappendnomalloc_107',['ListAppendNoMalloc',['../LinkedList_8c.html#a321a3598d6979c7af3f995b77ea2cec3',1,'LinkedList.c']]], + ['listdetach_108',['ListDetach',['../LinkedList_8c.html#ab2bcc1897abf1d98490ea81c474dba52',1,'LinkedList.c']]], + ['listdetachhead_109',['ListDetachHead',['../LinkedList_8c.html#ab0f3597d344e09ad6636c8bc72029337',1,'LinkedList.c']]], + ['listdetachitem_110',['ListDetachItem',['../LinkedList_8c.html#a9ed745f7ba486d16d009e86433fece7b',1,'LinkedList.c']]], + ['listelementstruct_111',['ListElementStruct',['../structListElementStruct.html',1,'']]], + ['listempty_112',['ListEmpty',['../LinkedList_8c.html#a3cf8578dba23f97dd0411e85fe3b7ff2',1,'LinkedList.c']]], + ['listfind_113',['ListFind',['../LinkedList_8c.html#ad2879a10b723fb7c1f95c0ad0abdbc50',1,'LinkedList.c']]], + ['listfinditem_114',['ListFindItem',['../LinkedList_8c.html#acad319e9ce896ff1fff30ddbeb06d22d',1,'LinkedList.c']]], + ['listfree_115',['ListFree',['../LinkedList_8c.html#a276950531b3f54e0dda27d597572c192',1,'LinkedList.c']]], + ['listfreenocontent_116',['ListFreeNoContent',['../LinkedList_8c.html#a8b3e61bc873a90ad2ea43a15e6c001f4',1,'LinkedList.c']]], + ['listinitialize_117',['ListInitialize',['../LinkedList_8c.html#a27e2cccab9752618ead91eafbe2a9a46',1,'LinkedList.c']]], + ['listinsert_118',['ListInsert',['../LinkedList_8c.html#aabca387fa4b86475bc9e4da40c3977fc',1,'LinkedList.c']]], + ['listnextelement_119',['ListNextElement',['../LinkedList_8c.html#a7c6fba7f4b569c69829676bed2852ee9',1,'LinkedList.c']]], + ['listpoptail_120',['ListPopTail',['../LinkedList_8c.html#a84b0ad14e7cebcd7b9ebab89a8d48321',1,'LinkedList.c']]], + ['listprevelement_121',['ListPrevElement',['../LinkedList_8c.html#a371f4a5021e6aa639bab6ab1457fc1d2',1,'LinkedList.c']]], + ['listremove_122',['ListRemove',['../LinkedList_8c.html#a8430370b2b15c56ec95bb8e7e36753a5',1,'LinkedList.c']]], + ['listremovehead_123',['ListRemoveHead',['../LinkedList_8c.html#a5ee7cd1d29fd9299231d40c011174fcd',1,'LinkedList.c']]], + ['listremoveitem_124',['ListRemoveItem',['../LinkedList_8c.html#a4bb7c34fe9a5832d65f530091e0fad0d',1,'LinkedList.c']]], + ['listunlink_125',['ListUnlink',['../LinkedList_8c.html#ab82181e0c1d96954f82dee67cee41296',1,'LinkedList.c']]], + ['listzero_126',['ListZero',['../LinkedList_8c.html#aa254fb1eab8e30d0e03859b333dc22ed',1,'LinkedList.c']]], + ['log_127',['Log',['../Log_8c.html#a669722e3f57811871f97c12392aba85d',1,'Log.c']]], + ['log_2ec_128',['Log.c',['../Log_8c.html',1,'']]], + ['log_5fnamevalue_129',['Log_nameValue',['../structLog__nameValue.html',1,'']]], + ['log_5fstacktrace_130',['Log_stackTrace',['../Log_8c.html#aeb93e137086d574a96548cecca9e9217',1,'Log.c']]], + ['lower_131',['lower',['../utf-8_8c.html#a17ae1b83727db4230c8df98b4ee953fc',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_c.html b/docs/MQTTClient_internal/html/search/all_c.html index da60ab8d..3dd5af06 100644 --- a/docs/MQTTClient_internal/html/search/all_c.html +++ b/docs/MQTTClient_internal/html/search/all_c.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_c.js b/docs/MQTTClient_internal/html/search/all_c.js index d854f582..236fe8ee 100644 --- a/docs/MQTTClient_internal/html/search/all_c.js +++ b/docs/MQTTClient_internal/html/search/all_c.js @@ -1,185 +1,190 @@ var searchData= [ - ['mqtt_20client_20library_20internals_130',['MQTT Client Library Internals',['../index.html',1,'']]], - ['mask_131',['mask',['../structPublish.html#a8a70d60f90d1418ebf501ad33eba2e11',1,'Publish::mask()'],['../structPacketBuffers.html#a9f29c58d295427b93e1e52fa7fd043ce',1,'PacketBuffers::mask()']]], - ['max_5fcount_132',['max_count',['../structMQTTProperties.html#ad3bd5700ed60fb16c072e8a65672a581',1,'MQTTProperties']]], - ['max_5flines_5fper_5ffile_133',['max_lines_per_file',['../Log_8c.html#ab0c0e8addd9dc5b2a54aafa15b606435',1,'Log.c']]], - ['max_5fsize_134',['max_size',['../structheap__info.html#acca9bc1ad656bc11b35406f8588d2c43',1,'heap_info']]], - ['max_5ftrace_5fentries_135',['max_trace_entries',['../structtrace__settings__type.html#acecf92991c3008b020b44f44f661f03f',1,'trace_settings_type']]], - ['maxbufferedmessages_136',['maxBufferedMessages',['../structMQTTAsync__createOptions.html#a39d76a63782adbd9526bad0b33603522',1,'MQTTAsync_createOptions']]], - ['maxinflight_137',['maxInflight',['../structMQTTAsync__connectOptions.html#afbcfee31a89fb634456290f22c4e32da',1,'MQTTAsync_connectOptions']]], - ['maxinflightmessages_138',['maxInflightMessages',['../structClients.html#af0963eb25f36dfafdd29bfc3007181b7',1,'Clients::maxInflightMessages()'],['../structMQTTClient__connectOptions.html#a23eefc54da515a0c189ed6d5918470b0',1,'MQTTClient_connectOptions::maxInflightMessages()']]], - ['maxretryinterval_139',['maxRetryInterval',['../structMQTTAsync__connectOptions.html#a7d1e6443a9050f3e54b02dfa6854feb4',1,'MQTTAsync_connectOptions']]], - ['message_140',['message',['../structMQTTAsync__failureData.html#a13f03bf80fd0024437af833d0964304d',1,'MQTTAsync_failureData::message()'],['../structMQTTAsync__failureData5.html#a2f82528951018af0eb73b313b94a470e',1,'MQTTAsync_failureData5::message()'],['../structMQTTAsync__successData.html#a0b2e85af2333e5775907d3f2b53907d4',1,'MQTTAsync_successData::message()'],['../structMQTTAsync__successData5.html#a83d34de369f169d5c1ee099720b964cf',1,'MQTTAsync_successData5::message()'],['../structMQTTAsync__willOptions.html#a0a4c40ef8b1f73a67326cd9987fd1894',1,'MQTTAsync_willOptions::message()'],['../structMQTTClient__willOptions.html#af367d507f25f09942ff12376b50a5ffb',1,'MQTTClient_willOptions::message()']]], - ['messageidcompare_141',['messageIDCompare',['../MQTTProtocolClient_8c.html#a286c2ef2904b5eb4a0ffa5b598961c67',1,'MQTTProtocolClient.c']]], - ['messagequeue_142',['messageQueue',['../structClients.html#a19263eecc43962ac977832e124b4529f',1,'Clients']]], - ['messages_143',['Messages',['../structMessages.html',1,'']]], - ['messages_2ec_144',['Messages.c',['../Messages_8c.html',1,'']]], - ['messages_5fget_145',['Messages_get',['../Messages_8c.html#ab0c342273f8f7d3c206314ae8215a14c',1,'Messages.c']]], - ['minretryinterval_146',['minRetryInterval',['../structMQTTAsync__connectOptions.html#a60bb7a0c6afaaff456f7fa4f18c84b66',1,'MQTTAsync_connectOptions']]], - ['mod_5fs_147',['mod_s',['../Socket_8c.html#a6caeed4a8d4f884c57a815034cee275e',1,'Socket.c']]], - ['mqttasync_5fcommand_148',['MQTTAsync_command',['../structMQTTAsync__command.html',1,'']]], - ['mqttasync_5fconnectdata_149',['MQTTAsync_connectData',['../structMQTTAsync__connectData.html',1,'']]], - ['mqttasync_5fconnectoptions_150',['MQTTAsync_connectOptions',['../structMQTTAsync__connectOptions.html',1,'']]], - ['mqttasync_5fcreateoptions_151',['MQTTAsync_createOptions',['../structMQTTAsync__createOptions.html',1,'']]], - ['mqttasync_5fdisconnectoptions_152',['MQTTAsync_disconnectOptions',['../structMQTTAsync__disconnectOptions.html',1,'']]], - ['mqttasync_5ffailuredata_153',['MQTTAsync_failureData',['../structMQTTAsync__failureData.html',1,'']]], - ['mqttasync_5ffailuredata5_154',['MQTTAsync_failureData5',['../structMQTTAsync__failureData5.html',1,'']]], - ['mqttasync_5finit_5foptions_155',['MQTTAsync_init_options',['../structMQTTAsync__init__options.html',1,'']]], - ['mqttasync_5fmessage_156',['MQTTAsync_message',['../structMQTTAsync__message.html',1,'']]], - ['mqttasync_5fnamevalue_157',['MQTTAsync_nameValue',['../structMQTTAsync__nameValue.html',1,'']]], - ['mqttasync_5fqueuedcommand_158',['MQTTAsync_queuedCommand',['../structMQTTAsync__queuedCommand.html',1,'']]], - ['mqttasync_5fresponseoptions_159',['MQTTAsync_responseOptions',['../structMQTTAsync__responseOptions.html',1,'']]], - ['mqttasync_5fssloptions_160',['MQTTAsync_SSLOptions',['../structMQTTAsync__SSLOptions.html',1,'']]], - ['mqttasync_5fstruct_161',['MQTTAsync_struct',['../structMQTTAsync__struct.html',1,'']]], - ['mqttasync_5fsuccessdata_162',['MQTTAsync_successData',['../structMQTTAsync__successData.html',1,'']]], - ['mqttasync_5fsuccessdata5_163',['MQTTAsync_successData5',['../structMQTTAsync__successData5.html',1,'']]], - ['mqttasync_5fwilloptions_164',['MQTTAsync_willOptions',['../structMQTTAsync__willOptions.html',1,'']]], - ['mqttclient_2ec_165',['MQTTClient.c',['../MQTTClient_8c.html',1,'']]], - ['mqttclient_5fconnect_166',['MQTTClient_connect',['../MQTTClient_8c.html#aaa8ae61cd65c9dc0846df10122d7bd4e',1,'MQTTClient.c']]], - ['mqttclient_5fconnect5_167',['MQTTClient_connect5',['../MQTTClient_8c.html#aa777f80cb3eec5610f976aff30b8c0d6',1,'MQTTClient.c']]], - ['mqttclient_5fconnectoptions_168',['MQTTClient_connectOptions',['../structMQTTClient__connectOptions.html',1,'']]], - ['mqttclient_5fcreate_169',['MQTTClient_create',['../MQTTClient_8c.html#a9a0518d9ca924d12c1329dbe3de5f2b6',1,'MQTTClient.c']]], - ['mqttclient_5fcreateoptions_170',['MQTTClient_createOptions',['../structMQTTClient__createOptions.html',1,'']]], - ['mqttclient_5fcreatewithoptions_171',['MQTTClient_createWithOptions',['../MQTTClient_8c.html#ade24f717a9b39d38b081e1d5e0db1661',1,'MQTTClient.c']]], - ['mqttclient_5fdestroy_172',['MQTTClient_destroy',['../MQTTClient_8c.html#ae700c3f5cfea3813264ce95e7c8cf498',1,'MQTTClient.c']]], - ['mqttclient_5fdisconnect_173',['MQTTClient_disconnect',['../MQTTClient_8c.html#a1e4d90c13a3c0705bc4a13bfe64e6525',1,'MQTTClient.c']]], - ['mqttclient_5fdisconnect1_174',['MQTTClient_disconnect1',['../MQTTClient_8c.html#a2eeb63b405d9aed880a79b38addf6df7',1,'MQTTClient.c']]], - ['mqttclient_5fdisconnect_5finternal_175',['MQTTClient_disconnect_internal',['../MQTTClient_8c.html#a6a08562ce9b763bf79c71029b94cd9f5',1,'MQTTClient.c']]], - ['mqttclient_5ffree_176',['MQTTClient_free',['../MQTTClient_8c.html#ab217acbfaf47603355ca430983f93095',1,'MQTTClient.c']]], - ['mqttclient_5ffreemessage_177',['MQTTClient_freeMessage',['../MQTTClient_8c.html#a2bc00ce11e0cac5dbc0938c512b4ab31',1,'MQTTClient.c']]], - ['mqttclient_5fgetpendingdeliverytokens_178',['MQTTClient_getPendingDeliveryTokens',['../MQTTClient_8c.html#a2a617c6b0492c04a4ddea592f5e53604',1,'MQTTClient.c']]], - ['mqttclient_5fgetversioninfo_179',['MQTTClient_getVersionInfo',['../MQTTClient_8c.html#abe842456c914ce9201d277a972cc085e',1,'MQTTClient.c']]], - ['mqttclient_5fglobal_5finit_180',['MQTTClient_global_init',['../MQTTClient_8c.html#a21804ede1a506d1d69a472bc30acc8ba',1,'MQTTClient.c']]], - ['mqttclient_5finit_5foptions_181',['MQTTClient_init_options',['../structMQTTClient__init__options.html',1,'']]], - ['mqttclient_5fisconnected_182',['MQTTClient_isConnected',['../MQTTClient_8c.html#a6e8231e8c47f6f67f7ebbb5dcb4c69c0',1,'MQTTClient.c']]], - ['mqttclient_5fmessage_183',['MQTTClient_message',['../structMQTTClient__message.html',1,'']]], - ['mqttclient_5fnamevalue_184',['MQTTClient_nameValue',['../structMQTTClient__nameValue.html',1,'']]], - ['mqttclient_5fpersistence_185',['MQTTClient_persistence',['../structMQTTClient__persistence.html',1,'']]], - ['mqttclient_5fpersistence_5fdefault_186',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../MQTTClientPersistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5ferror_187',['MQTTCLIENT_PERSISTENCE_ERROR',['../MQTTClientPersistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fnone_188',['MQTTCLIENT_PERSISTENCE_NONE',['../MQTTClientPersistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fuser_189',['MQTTCLIENT_PERSISTENCE_USER',['../MQTTClientPersistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpublish_190',['MQTTClient_publish',['../MQTTClient_8c.html#a3cd7a94b48d1d9c6b8af4b9203d69d37',1,'MQTTClient.c']]], - ['mqttclient_5fpublish5_191',['MQTTClient_publish5',['../MQTTClient_8c.html#a3c0ca97b393eee10d4f441ba68830e83',1,'MQTTClient.c']]], - ['mqttclient_5fpublishmessage_192',['MQTTClient_publishMessage',['../MQTTClient_8c.html#a5e0cfa14237d7557bee2a59747ecadd3',1,'MQTTClient.c']]], - ['mqttclient_5fpublishmessage5_193',['MQTTClient_publishMessage5',['../MQTTClient_8c.html#ae54936bf7680dcde353e6fc785a44461',1,'MQTTClient.c']]], - ['mqttclient_5freceive_194',['MQTTClient_receive',['../MQTTClient_8c.html#a4c2df88d00a3dadd510a8cb774739366',1,'MQTTClient.c']]], - ['mqttclient_5fsetcallbacks_195',['MQTTClient_setCallbacks',['../MQTTClient_8c.html#aad27d07782991a4937ebf2f39a021f83',1,'MQTTClient.c']]], - ['mqttclient_5fsetcommandtimeout_196',['MQTTClient_setCommandTimeout',['../MQTTClient_8c.html#a96067a2fb74d2a61c7e93015629548e0',1,'MQTTClient.c']]], - ['mqttclient_5fsetdisconnected_197',['MQTTClient_setDisconnected',['../MQTTClient_8c.html#adc7d708419664670063a0e7fd9c27bca',1,'MQTTClient.c']]], - ['mqttclient_5fsettracecallback_198',['MQTTClient_setTraceCallback',['../MQTTClient_8c.html#a22870f94aa4cb1827626612f1ded7c69',1,'MQTTClient.c']]], - ['mqttclient_5fsettracelevel_199',['MQTTClient_setTraceLevel',['../MQTTClient_8c.html#a4dfa35d29db54b10b15b8ac2d9a778be',1,'MQTTClient.c']]], - ['mqttclient_5fssloptions_200',['MQTTClient_SSLOptions',['../structMQTTClient__SSLOptions.html',1,'']]], - ['mqttclient_5fstrerror_201',['MQTTClient_strerror',['../MQTTClient_8c.html#a9defda2979f6fedaae64fd85f5c2f617',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribe_202',['MQTTClient_subscribe',['../MQTTClient_8c.html#a9c1c28258f0d5c6a44ff53a98618f5f3',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribe5_203',['MQTTClient_subscribe5',['../MQTTClient_8c.html#af35ab7375435f7b6388c5ff4610dad3d',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribemany_204',['MQTTClient_subscribeMany',['../MQTTClient_8c.html#a92fa1c13f3db8399e042fbdbdfb692b3',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribemany5_205',['MQTTClient_subscribeMany5',['../MQTTClient_8c.html#a5390c2402f135c12826ffbf6fc261f7c',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribe_206',['MQTTClient_unsubscribe',['../MQTTClient_8c.html#aa8731be3dbc6a25f41f037f8bbbb054b',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribe5_207',['MQTTClient_unsubscribe5',['../MQTTClient_8c.html#a58356c13867f18df60fd4c7ec9457c48',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribemany_208',['MQTTClient_unsubscribeMany',['../MQTTClient_8c.html#a50abbce720d50b9f84b97ff9fa1f546d',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribemany5_209',['MQTTClient_unsubscribeMany5',['../MQTTClient_8c.html#a46bdb532d2153110ccffb2f0748d1ba5',1,'MQTTClient.c']]], - ['mqttclient_5fwaitforcompletion_210',['MQTTClient_waitForCompletion',['../MQTTClient_8c.html#ab8786efdd6c3a50c6ca33cfb5d8fc283',1,'MQTTClient.c']]], - ['mqttclient_5fwilloptions_211',['MQTTClient_willOptions',['../structMQTTClient__willOptions.html',1,'']]], - ['mqttclient_5fyield_212',['MQTTClient_yield',['../MQTTClient_8c.html#a8ad3d29864a9ca08202b0832e0f6678e',1,'MQTTClient.c']]], - ['mqttclientpersistence_2eh_213',['MQTTClientPersistence.h',['../MQTTClientPersistence_8h.html',1,'']]], - ['mqttclients_214',['MQTTClients',['../structMQTTClients.html',1,'']]], - ['mqttlenstring_215',['MQTTLenString',['../structMQTTLenString.html',1,'']]], - ['mqttpacket_216',['MQTTPacket',['../structMQTTPacket.html',1,'']]], - ['mqttpacket_2ec_217',['MQTTPacket.c',['../MQTTPacket_8c.html',1,'']]], - ['mqttpacket_5fack_218',['MQTTPacket_ack',['../MQTTPacket_8c.html#a93c155059c80bd01b4a1561d9bec1d13',1,'MQTTPacket.c']]], - ['mqttpacket_5fconnack_219',['MQTTPacket_connack',['../MQTTPacketOut_8c.html#ad05dd32a547e82e0741d9d8279568a65',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fdecode_220',['MQTTPacket_decode',['../MQTTPacket_8c.html#ac1f61e571640513a9785b3164141dfbc',1,'MQTTPacket.c']]], - ['mqttpacket_5fencode_221',['MQTTPacket_encode',['../MQTTPacket_8c.html#aadd77a4fa1b2d5c7791e3542c56af856',1,'MQTTPacket.c']]], - ['mqttpacket_5ffactory_222',['MQTTPacket_Factory',['../MQTTPacket_8c.html#af922033c495b05fe4242afc54211f20d',1,'MQTTPacket.c']]], - ['mqttpacket_5ffree_5fpacket_223',['MQTTPacket_free_packet',['../MQTTPacket_8c.html#a28f1754fe1f090d54bc3b5687fb2dd8c',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreeack_224',['MQTTPacket_freeAck',['../MQTTPacket_8c.html#a0ef92fb0207ed6272de9ebc749745d0c',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreeconnack_225',['MQTTPacket_freeConnack',['../MQTTPacketOut_8c.html#a49e8e6789e17a29f5a448b8fab0a4137',1,'MQTTPacketOut.c']]], - ['mqttpacket_5ffreepublish_226',['MQTTPacket_freePublish',['../MQTTPacket_8c.html#a642e5f62d21f14e81f8fc70b491d89c8',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreesuback_227',['MQTTPacket_freeSuback',['../MQTTPacket_8c.html#a4262b8f35885dc123f59268fb74cec3d',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreeunsuback_228',['MQTTPacket_freeUnsuback',['../MQTTPacket_8c.html#a9dd0446112e7bc982f8e3bb8bbb6b409',1,'MQTTPacket.c']]], - ['mqttpacket_5fheader_5fonly_229',['MQTTPacket_header_only',['../MQTTPacket_8c.html#af3ddd9c1a35d51bf70f44a1aa6fa0bba',1,'MQTTPacket.c']]], - ['mqttpacket_5fname_230',['MQTTPacket_name',['../MQTTPacket_8c.html#a9f9e58aba3ed5d513862d76bc5e29743',1,'MQTTPacket.c']]], - ['mqttpacket_5fpublish_231',['MQTTPacket_publish',['../MQTTPacket_8c.html#a58feb89ee5616f2ea6d222bbbef927bb',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_232',['MQTTPacket_send',['../MQTTPacket_8c.html#a51f58f1c7864f9fe87b55cc6ccb10129',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fack_233',['MQTTPacket_send_ack',['../MQTTPacket_8c.html#ad89e627a37f7f7eb4355b076cd46e0b0',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fconnect_234',['MQTTPacket_send_connect',['../MQTTPacketOut_8c.html#ad3c3f0919760286998e9b9eafaa47a36',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsend_5fdisconnect_235',['MQTTPacket_send_disconnect',['../MQTTPacket_8c.html#aa9e17261b4d09d802dba6a65bcdc44fa',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpingreq_236',['MQTTPacket_send_pingreq',['../MQTTPacketOut_8c.html#acf4b3402e224ac22ffbe74731f374fe0',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsend_5fpuback_237',['MQTTPacket_send_puback',['../MQTTPacket_8c.html#a8b93325a6a336406497b20b489d6c46a',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpubcomp_238',['MQTTPacket_send_pubcomp',['../MQTTPacket_8c.html#a908f81381b1720e4a53d15c1c4690f5c',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpublish_239',['MQTTPacket_send_publish',['../MQTTPacket_8c.html#a9ebcf93ff2ba3bd103f016c975e9c9c4',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpubrec_240',['MQTTPacket_send_pubrec',['../MQTTPacket_8c.html#a8167e3188a4bdcfb30c10e0d76c82afe',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpubrel_241',['MQTTPacket_send_pubrel',['../MQTTPacket_8c.html#adec2c812b12255dab78f75163a4f1960',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fsubscribe_242',['MQTTPacket_send_subscribe',['../MQTTPacketOut_8c.html#a90212ed29c311f52a1dce0617133b1a7',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsend_5funsubscribe_243',['MQTTPacket_send_unsubscribe',['../MQTTPacketOut_8c.html#a1ad4c9b76c6ab88c394ee925eb4dcd44',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsends_244',['MQTTPacket_sends',['../MQTTPacket_8c.html#a3635fd8035177b20c478daea6bad9328',1,'MQTTPacket.c']]], - ['mqttpacket_5fsuback_245',['MQTTPacket_suback',['../MQTTPacketOut_8c.html#aee4b3e106128629671828ae7bfa70850',1,'MQTTPacketOut.c']]], - ['mqttpacket_5funsuback_246',['MQTTPacket_unsuback',['../MQTTPacketOut_8c.html#a93f6aa4b23d30f6c8c5be87b0b58e37c',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fvbidecode_247',['MQTTPacket_VBIdecode',['../MQTTPacket_8c.html#a4fc1ee4d2cf8fd9bd59d89aadab222df',1,'MQTTPacket.c']]], - ['mqttpacketout_2ec_248',['MQTTPacketOut.c',['../MQTTPacketOut_8c.html',1,'']]], - ['mqttpersistence_2ec_249',['MQTTPersistence.c',['../MQTTPersistence_8c.html',1,'']]], - ['mqttpersistence_5fafterread_250',['MQTTPersistence_afterRead',['../MQTTClientPersistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], - ['mqttpersistence_5fbeforewrite_251',['MQTTPersistence_beforeWrite',['../MQTTClientPersistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], - ['mqttpersistence_5fclear_252',['MQTTPersistence_clear',['../MQTTPersistence_8c.html#a6f6056b7418b66a3786a5028b2357a86',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fclose_253',['MQTTPersistence_close',['../MQTTPersistence_8c.html#a385b6c191dbf51652d3e3a81813848f1',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fcreate_254',['MQTTPersistence_create',['../MQTTPersistence_8c.html#a75e756280e499db530896c5b74b8d3b5',1,'MQTTPersistence.c']]], - ['mqttpersistence_5finitialize_255',['MQTTPersistence_initialize',['../MQTTPersistence_8c.html#a65b64467da967b6930966b98f249406e',1,'MQTTPersistence.c']]], - ['mqttpersistence_5finsertinorder_256',['MQTTPersistence_insertInOrder',['../MQTTPersistence_8c.html#a568adcd6ad3542d6f631a7f7a2e682e5',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fmessage_257',['MQTTPersistence_message',['../structMQTTPersistence__message.html',1,'']]], - ['mqttpersistence_5fputpacket_258',['MQTTPersistence_putPacket',['../MQTTPersistence_8c.html#a18eab666c3e6aecd92a6c8f10df808e3',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fqentry_259',['MQTTPersistence_qEntry',['../structMQTTPersistence__qEntry.html',1,'']]], - ['mqttpersistence_5fremove_260',['MQTTPersistence_remove',['../MQTTPersistence_8c.html#aba48f1a44c540fa37bca207cae3cbbd3',1,'MQTTPersistence.c']]], - ['mqttpersistence_5frestoremessagequeue_261',['MQTTPersistence_restoreMessageQueue',['../MQTTPersistence_8c.html#ab4f6437946ac80d5f9e882e92e59cc5c',1,'MQTTPersistence.c']]], - ['mqttpersistence_5frestorepacket_262',['MQTTPersistence_restorePacket',['../MQTTPersistence_8c.html#a6bc55eebf10d7a7f7e2849b3e33716d1',1,'MQTTPersistence.c']]], - ['mqttpersistence_5frestorepackets_263',['MQTTPersistence_restorePackets',['../MQTTPersistence_8c.html#a3e607d17e088a493097af07e9c7b0006',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fwrapmsgid_264',['MQTTPersistence_wrapMsgID',['../MQTTPersistence_8c.html#adbf5881a3c6ce9bd7062182dfffe27fa',1,'MQTTPersistence.c']]], - ['mqttpersistencedefault_2ec_265',['MQTTPersistenceDefault.c',['../MQTTPersistenceDefault_8c.html',1,'']]], - ['mqttproperties_266',['MQTTProperties',['../structMQTTProperties.html',1,'']]], - ['mqttproperty_267',['MQTTProperty',['../structMQTTProperty.html',1,'']]], - ['mqttprotocol_268',['MQTTProtocol',['../structMQTTProtocol.html',1,'']]], - ['mqttprotocol_5faddressport_269',['MQTTProtocol_addressPort',['../MQTTProtocolOut_8c.html#ae9a2970a33893540e42ff5a8d95411dc',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fassignmsgid_270',['MQTTProtocol_assignMsgId',['../MQTTProtocolClient_8c.html#a0fa824f9702cb6b0d7c800fd65198fce',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fcheckpendingwrites_271',['MQTTProtocol_checkPendingWrites',['../MQTTClient_8c.html#acdcf1aefca1dbb3d1b3d36c9bbaf3760',1,'MQTTClient.c']]], - ['mqttprotocol_5fclosesession_272',['MQTTProtocol_closeSession',['../MQTTClient_8c.html#a9f7b0789ff9ca9ded72dbad2e747b333',1,'MQTTClient.c']]], - ['mqttprotocol_5fconnect_273',['MQTTProtocol_connect',['../MQTTProtocolOut_8c.html#ad9baf307647cbe6516eadbbe975cda8c',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fcreatemessage_274',['MQTTProtocol_createMessage',['../MQTTProtocolClient_8c.html#afbf121be11a48fcda3e0d639bc47472b',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5femptymessagelist_275',['MQTTProtocol_emptyMessageList',['../MQTTProtocolClient_8c.html#ab9c5a22f0cbd4fa648663de7ae7118ab',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5ffreeclient_276',['MQTTProtocol_freeClient',['../MQTTProtocolClient_8c.html#a52e062f52e5a42275471eeb23040fc0e',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5ffreemessagelist_277',['MQTTProtocol_freeMessageList',['../MQTTProtocolClient_8c.html#a8514ddc8d0f346c0da19ab4d59b4062f',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandledisconnects_278',['MQTTProtocol_handleDisconnects',['../MQTTProtocolOut_8c.html#a4f914518a8e2d68cc9d9fbb2c22cdf6f',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fhandlepingresps_279',['MQTTProtocol_handlePingresps',['../MQTTProtocolOut_8c.html#ad298c92c74b5f1acda774fc95e3d61c3',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fhandlepubacks_280',['MQTTProtocol_handlePubacks',['../MQTTProtocolClient_8c.html#aa9f454819a84c7a43009253fabcea3f3',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepubcomps_281',['MQTTProtocol_handlePubcomps',['../MQTTProtocolClient_8c.html#a9aa163c85710d4936ae368b8b9412440',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepublishes_282',['MQTTProtocol_handlePublishes',['../MQTTProtocolClient_8c.html#a2d7897d575be486bf1ed0459d7b2b8e7',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepubrecs_283',['MQTTProtocol_handlePubrecs',['../MQTTProtocolClient_8c.html#ac09429577a185297d8797d791b7116a2',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepubrels_284',['MQTTProtocol_handlePubrels',['../MQTTProtocolClient_8c.html#a362e0560d6f4f0e50237664a1a8e89a7',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlesubacks_285',['MQTTProtocol_handleSubacks',['../MQTTProtocolOut_8c.html#a5424115bf427436c2d40058f15261ed0',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fhandleunsubacks_286',['MQTTProtocol_handleUnsubacks',['../MQTTProtocolOut_8c.html#a0b9648549a1a132eecadb74df2e84f57',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fkeepalive_287',['MQTTProtocol_keepalive',['../MQTTProtocolClient_8c.html#a218a69c333badc4a61b321bc830ac1e0',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fqueueack_288',['MQTTProtocol_queueAck',['../MQTTProtocolClient_8c.html#a68e5f17517e75326c0869a22c7995358',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fremovepublication_289',['MQTTProtocol_removePublication',['../MQTTProtocolClient_8c.html#a900fa28a8774ad6f5535104bb62e7abf',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fretries_290',['MQTTProtocol_retries',['../MQTTProtocolClient_8c.html#ad2f52c0fff61c891b174d69b95bcd173',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fretry_291',['MQTTProtocol_retry',['../MQTTProtocolClient_8c.html#a3a1acc3bd7b09ab9d52e15e4a97c4cb2',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fspecialchars_292',['MQTTProtocol_specialChars',['../MQTTProtocolOut_8c.html#a6b8949d7db9299fa5fd940e8e58f31b6',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fstartpublish_293',['MQTTProtocol_startPublish',['../MQTTProtocolClient_8c.html#a0f86c2cc2debfa39e275d3c76d5d0073',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fstartpublishcommon_294',['MQTTProtocol_startPublishCommon',['../MQTTProtocolClient_8c.html#a4502a4b9257b32508fac87e42fb1d85a',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fstorepublication_295',['MQTTProtocol_storePublication',['../MQTTProtocolClient_8c.html#ac753a3ad12292a0a9c2f4343bd33817e',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fsubscribe_296',['MQTTProtocol_subscribe',['../MQTTProtocolOut_8c.html#a460d021d06dd24cf975dfe20e17ab1ba',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5funsubscribe_297',['MQTTProtocol_unsubscribe',['../MQTTProtocolOut_8c.html#a69083f5a059d129d1030140ec1cd3d58',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fwriteavailable_298',['MQTTProtocol_writeAvailable',['../MQTTProtocolClient_8c.html#a5906689ff10dc091d1a2b317295d39b0',1,'MQTTProtocolClient.c']]], - ['mqttprotocolclient_2ec_299',['MQTTProtocolClient.c',['../MQTTProtocolClient_8c.html',1,'']]], - ['mqttprotocolout_2ec_300',['MQTTProtocolOut.c',['../MQTTProtocolOut_8c.html',1,'']]], - ['mqttresponse_301',['MQTTResponse',['../structMQTTResponse.html',1,'']]], - ['mqttresponse_5ffree_302',['MQTTResponse_free',['../MQTTClient_8c.html#a01bd2c5f98ec5c0636a106db33f2b01b',1,'MQTTClient.c']]], - ['mqttstrdup_303',['MQTTStrdup',['../MQTTProtocolClient_8c.html#a89588f085edc5cee4eb650e8ad114df4',1,'MQTTProtocolClient.c']]], - ['mqttstrncpy_304',['MQTTStrncpy',['../MQTTProtocolClient_8c.html#a447b65c664ebedef8fecb70e29dc1767',1,'MQTTProtocolClient.c']]], - ['mqttsubscribe_5foptions_305',['MQTTSubscribe_options',['../structMQTTSubscribe__options.html',1,'']]], - ['mqttversion_306',['MQTTVersion',['../structClients.html#a9cb1ad103af7c3aaf00e79037e6befba',1,'Clients::MQTTVersion()'],['../structMQTTAsync__successData.html#a2803f7c3e77845d14d7d54004b6c16f9',1,'MQTTAsync_successData::MQTTVersion()'],['../structMQTTAsync__successData5.html#a2a1956f782970dfdc24bb521bd90452b',1,'MQTTAsync_successData5::MQTTVersion()'],['../structMQTTAsync__createOptions.html#a538f8ca0715d75b79be91e8050a44402',1,'MQTTAsync_createOptions::MQTTVersion()'],['../structMQTTAsync__connectOptions.html#a03bb9a21cbbd0f9a2258204c1890ca40',1,'MQTTAsync_connectOptions::MQTTVersion()'],['../structMQTTAsync__command.html#aab15c3354653ca0d03644bcaa98f77fb',1,'MQTTAsync_command::MQTTVersion()'],['../structMQTTClient__createOptions.html#ae15c5b3e67be5967deb87d2830805565',1,'MQTTClient_createOptions::MQTTVersion()'],['../structMQTTClient__connectOptions.html#ac5990907e10165a71e6b3c163f2f1eef',1,'MQTTClient_connectOptions::MQTTVersion()'],['../structConnack.html#af1a10784220b77ccfbf549b2443f2332',1,'Connack::MQTTVersion()'],['../structSuback.html#aec7bfa50ec92509a7d7f9466173a064e',1,'Suback::MQTTVersion()'],['../structUnsuback.html#a25413381d1f688248d64a82e67746108',1,'Unsuback::MQTTVersion()'],['../structPublish.html#a5e5bc5c8445b9f8bdbc02315f91921a0',1,'Publish::MQTTVersion()'],['../structAck.html#a542acd6ed107a1dfffd225b668c0d961',1,'Ack::MQTTVersion()']]], - ['mqttversion_2ec_307',['MQTTVersion.c',['../MQTTVersion_8c.html',1,'']]], - ['msgid_308',['msgID',['../structClients.html#ad0aaa6d9fce1f8196ff859df00716055',1,'Clients::msgID()'],['../structMQTTAsync__message.html#a2c8572ec595842768848982321835bfe',1,'MQTTAsync_message::msgid()'],['../structMQTTClient__message.html#a3be81df63644606036c0a139564a1d92',1,'MQTTClient_message::msgid()'],['../structSuback.html#acb5971c2ca02372e41da6f1ccf202dba',1,'Suback::msgId()'],['../structUnsuback.html#a804d221a84b2306cb6040f405315abc3',1,'Unsuback::msgId()'],['../structPublish.html#ac1076c8b1dc5793c498f098f0a0d78cd',1,'Publish::msgId()'],['../structAck.html#aacfdbab79ac27e1a5ff80bccac4427a9',1,'Ack::msgId()']]], - ['myfree_309',['myfree',['../Heap_8c.html#a25214c297c998eba3cfc8282b1162c69',1,'Heap.c']]], - ['mymalloc_310',['mymalloc',['../Heap_8c.html#a59e53a989d69c3da767487596d9bfa1f',1,'Heap.c']]], - ['myrealloc_311',['myrealloc',['../Heap_8c.html#a699e6722cc8f195f853f09ac274413a3',1,'Heap.c']]] + ['mask_132',['mask',['../structPublish.html#a8a70d60f90d1418ebf501ad33eba2e11',1,'Publish::mask()'],['../structPacketBuffers.html#a9f29c58d295427b93e1e52fa7fd043ce',1,'PacketBuffers::mask()']]], + ['max_5fcount_133',['max_count',['../structMQTTProperties.html#ad3bd5700ed60fb16c072e8a65672a581',1,'MQTTProperties']]], + ['max_5flines_5fper_5ffile_134',['max_lines_per_file',['../Log_8c.html#ab0c0e8addd9dc5b2a54aafa15b606435',1,'Log.c']]], + ['max_5fsize_135',['max_size',['../structheap__info.html#acca9bc1ad656bc11b35406f8588d2c43',1,'heap_info']]], + ['max_5ftrace_5fentries_136',['max_trace_entries',['../structtrace__settings__type.html#acecf92991c3008b020b44f44f661f03f',1,'trace_settings_type']]], + ['maxbufferedmessages_137',['maxBufferedMessages',['../structMQTTAsync__createOptions.html#a39d76a63782adbd9526bad0b33603522',1,'MQTTAsync_createOptions']]], + ['maxinflight_138',['maxInflight',['../structMQTTAsync__connectOptions.html#afbcfee31a89fb634456290f22c4e32da',1,'MQTTAsync_connectOptions']]], + ['maxinflightmessages_139',['maxInflightMessages',['../structMQTTClient__connectOptions.html#a23eefc54da515a0c189ed6d5918470b0',1,'MQTTClient_connectOptions::maxInflightMessages()'],['../structClients.html#af0963eb25f36dfafdd29bfc3007181b7',1,'Clients::maxInflightMessages()']]], + ['maxretryinterval_140',['maxRetryInterval',['../structMQTTAsync__connectOptions.html#a7d1e6443a9050f3e54b02dfa6854feb4',1,'MQTTAsync_connectOptions']]], + ['message_141',['message',['../structMQTTClient__willOptions.html#af367d507f25f09942ff12376b50a5ffb',1,'MQTTClient_willOptions::message()'],['../structMQTTAsync__willOptions.html#a0a4c40ef8b1f73a67326cd9987fd1894',1,'MQTTAsync_willOptions::message()'],['../structMQTTAsync__successData5.html#a83d34de369f169d5c1ee099720b964cf',1,'MQTTAsync_successData5::message()'],['../structMQTTAsync__successData.html#a0b2e85af2333e5775907d3f2b53907d4',1,'MQTTAsync_successData::message()'],['../structMQTTAsync__failureData5.html#a2f82528951018af0eb73b313b94a470e',1,'MQTTAsync_failureData5::message()'],['../structMQTTAsync__failureData.html#a13f03bf80fd0024437af833d0964304d',1,'MQTTAsync_failureData::message()']]], + ['messageidcompare_142',['messageIDCompare',['../MQTTProtocolClient_8c.html#a286c2ef2904b5eb4a0ffa5b598961c67',1,'MQTTProtocolClient.c']]], + ['messagequeue_143',['messageQueue',['../structClients.html#a19263eecc43962ac977832e124b4529f',1,'Clients']]], + ['messages_144',['Messages',['../structMessages.html',1,'']]], + ['messages_2ec_145',['Messages.c',['../Messages_8c.html',1,'']]], + ['messages_5fget_146',['Messages_get',['../Messages_8c.html#ab0c342273f8f7d3c206314ae8215a14c',1,'Messages.c']]], + ['minretryinterval_147',['minRetryInterval',['../structMQTTAsync__connectOptions.html#a60bb7a0c6afaaff456f7fa4f18c84b66',1,'MQTTAsync_connectOptions']]], + ['mod_5fs_148',['mod_s',['../Socket_8c.html#a6caeed4a8d4f884c57a815034cee275e',1,'Socket.c']]], + ['mqtt_20client_20library_20internals_149',['MQTT Client Library Internals',['../index.html',1,'']]], + ['mqttasync_5fcommand_150',['MQTTAsync_command',['../structMQTTAsync__command.html',1,'']]], + ['mqttasync_5fconnectdata_151',['MQTTAsync_connectData',['../structMQTTAsync__connectData.html',1,'']]], + ['mqttasync_5fconnectoptions_152',['MQTTAsync_connectOptions',['../structMQTTAsync__connectOptions.html',1,'']]], + ['mqttasync_5fcreateoptions_153',['MQTTAsync_createOptions',['../structMQTTAsync__createOptions.html',1,'']]], + ['mqttasync_5fdisconnectoptions_154',['MQTTAsync_disconnectOptions',['../structMQTTAsync__disconnectOptions.html',1,'']]], + ['mqttasync_5ffailuredata_155',['MQTTAsync_failureData',['../structMQTTAsync__failureData.html',1,'']]], + ['mqttasync_5ffailuredata5_156',['MQTTAsync_failureData5',['../structMQTTAsync__failureData5.html',1,'']]], + ['mqttasync_5finit_5foptions_157',['MQTTAsync_init_options',['../structMQTTAsync__init__options.html',1,'']]], + ['mqttasync_5fmessage_158',['MQTTAsync_message',['../structMQTTAsync__message.html',1,'']]], + ['mqttasync_5fnamevalue_159',['MQTTAsync_nameValue',['../structMQTTAsync__nameValue.html',1,'']]], + ['mqttasync_5fqueuedcommand_160',['MQTTAsync_queuedCommand',['../structMQTTAsync__queuedCommand.html',1,'']]], + ['mqttasync_5fresponseoptions_161',['MQTTAsync_responseOptions',['../structMQTTAsync__responseOptions.html',1,'']]], + ['mqttasync_5fssloptions_162',['MQTTAsync_SSLOptions',['../structMQTTAsync__SSLOptions.html',1,'']]], + ['mqttasync_5fstruct_163',['MQTTAsync_struct',['../structMQTTAsync__struct.html',1,'']]], + ['mqttasync_5fsuccessdata_164',['MQTTAsync_successData',['../structMQTTAsync__successData.html',1,'']]], + ['mqttasync_5fsuccessdata5_165',['MQTTAsync_successData5',['../structMQTTAsync__successData5.html',1,'']]], + ['mqttasync_5fwilloptions_166',['MQTTAsync_willOptions',['../structMQTTAsync__willOptions.html',1,'']]], + ['mqttclient_2ec_167',['MQTTClient.c',['../MQTTClient_8c.html',1,'']]], + ['mqttclient_5fconnect_168',['MQTTClient_connect',['../MQTTClient_8c.html#aaa8ae61cd65c9dc0846df10122d7bd4e',1,'MQTTClient.c']]], + ['mqttclient_5fconnect5_169',['MQTTClient_connect5',['../MQTTClient_8c.html#aa777f80cb3eec5610f976aff30b8c0d6',1,'MQTTClient.c']]], + ['mqttclient_5fconnectoptions_170',['MQTTClient_connectOptions',['../structMQTTClient__connectOptions.html',1,'']]], + ['mqttclient_5fcreate_171',['MQTTClient_create',['../MQTTClient_8c.html#a9a0518d9ca924d12c1329dbe3de5f2b6',1,'MQTTClient.c']]], + ['mqttclient_5fcreateoptions_172',['MQTTClient_createOptions',['../structMQTTClient__createOptions.html',1,'']]], + ['mqttclient_5fcreatewithoptions_173',['MQTTClient_createWithOptions',['../MQTTClient_8c.html#ade24f717a9b39d38b081e1d5e0db1661',1,'MQTTClient.c']]], + ['mqttclient_5fdestroy_174',['MQTTClient_destroy',['../MQTTClient_8c.html#ae700c3f5cfea3813264ce95e7c8cf498',1,'MQTTClient.c']]], + ['mqttclient_5fdisconnect_175',['MQTTClient_disconnect',['../MQTTClient_8c.html#a1e4d90c13a3c0705bc4a13bfe64e6525',1,'MQTTClient.c']]], + ['mqttclient_5fdisconnect1_176',['MQTTClient_disconnect1',['../MQTTClient_8c.html#a2eeb63b405d9aed880a79b38addf6df7',1,'MQTTClient.c']]], + ['mqttclient_5fdisconnect_5finternal_177',['MQTTClient_disconnect_internal',['../MQTTClient_8c.html#a6a08562ce9b763bf79c71029b94cd9f5',1,'MQTTClient.c']]], + ['mqttclient_5ffree_178',['MQTTClient_free',['../MQTTClient_8c.html#ab217acbfaf47603355ca430983f93095',1,'MQTTClient.c']]], + ['mqttclient_5ffreemessage_179',['MQTTClient_freeMessage',['../MQTTClient_8c.html#a2bc00ce11e0cac5dbc0938c512b4ab31',1,'MQTTClient.c']]], + ['mqttclient_5fgetpendingdeliverytokens_180',['MQTTClient_getPendingDeliveryTokens',['../MQTTClient_8c.html#a2a617c6b0492c04a4ddea592f5e53604',1,'MQTTClient.c']]], + ['mqttclient_5fgetversioninfo_181',['MQTTClient_getVersionInfo',['../MQTTClient_8c.html#abe842456c914ce9201d277a972cc085e',1,'MQTTClient.c']]], + ['mqttclient_5fglobal_5finit_182',['MQTTClient_global_init',['../MQTTClient_8c.html#a21804ede1a506d1d69a472bc30acc8ba',1,'MQTTClient.c']]], + ['mqttclient_5finit_5foptions_183',['MQTTClient_init_options',['../structMQTTClient__init__options.html',1,'']]], + ['mqttclient_5fisconnected_184',['MQTTClient_isConnected',['../MQTTClient_8c.html#a6e8231e8c47f6f67f7ebbb5dcb4c69c0',1,'MQTTClient.c']]], + ['mqttclient_5fmalloc_185',['MQTTClient_malloc',['../MQTTClient_8c.html#a9a6a07529e252574db1f95d40ccc0784',1,'MQTTClient.c']]], + ['mqttclient_5fmessage_186',['MQTTClient_message',['../structMQTTClient__message.html',1,'']]], + ['mqttclient_5fnamevalue_187',['MQTTClient_nameValue',['../structMQTTClient__nameValue.html',1,'']]], + ['mqttclient_5fpersistence_188',['MQTTClient_persistence',['../structMQTTClient__persistence.html',1,'']]], + ['mqttclient_5fpersistence_5fdefault_189',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../MQTTClientPersistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5ferror_190',['MQTTCLIENT_PERSISTENCE_ERROR',['../MQTTClientPersistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fnone_191',['MQTTCLIENT_PERSISTENCE_NONE',['../MQTTClientPersistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fuser_192',['MQTTCLIENT_PERSISTENCE_USER',['../MQTTClientPersistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpublish_193',['MQTTClient_publish',['../MQTTClient_8c.html#a3cd7a94b48d1d9c6b8af4b9203d69d37',1,'MQTTClient.c']]], + ['mqttclient_5fpublish5_194',['MQTTClient_publish5',['../MQTTClient_8c.html#a3c0ca97b393eee10d4f441ba68830e83',1,'MQTTClient.c']]], + ['mqttclient_5fpublishmessage_195',['MQTTClient_publishMessage',['../MQTTClient_8c.html#a5e0cfa14237d7557bee2a59747ecadd3',1,'MQTTClient.c']]], + ['mqttclient_5fpublishmessage5_196',['MQTTClient_publishMessage5',['../MQTTClient_8c.html#ae54936bf7680dcde353e6fc785a44461',1,'MQTTClient.c']]], + ['mqttclient_5freceive_197',['MQTTClient_receive',['../MQTTClient_8c.html#a4c2df88d00a3dadd510a8cb774739366',1,'MQTTClient.c']]], + ['mqttclient_5fsetcallbacks_198',['MQTTClient_setCallbacks',['../MQTTClient_8c.html#aad27d07782991a4937ebf2f39a021f83',1,'MQTTClient.c']]], + ['mqttclient_5fsetcommandtimeout_199',['MQTTClient_setCommandTimeout',['../MQTTClient_8c.html#a96067a2fb74d2a61c7e93015629548e0',1,'MQTTClient.c']]], + ['mqttclient_5fsetdisconnected_200',['MQTTClient_setDisconnected',['../MQTTClient_8c.html#adc7d708419664670063a0e7fd9c27bca',1,'MQTTClient.c']]], + ['mqttclient_5fsettracecallback_201',['MQTTClient_setTraceCallback',['../MQTTClient_8c.html#a22870f94aa4cb1827626612f1ded7c69',1,'MQTTClient.c']]], + ['mqttclient_5fsettracelevel_202',['MQTTClient_setTraceLevel',['../MQTTClient_8c.html#a4dfa35d29db54b10b15b8ac2d9a778be',1,'MQTTClient.c']]], + ['mqttclient_5fssloptions_203',['MQTTClient_SSLOptions',['../structMQTTClient__SSLOptions.html',1,'']]], + ['mqttclient_5fstrerror_204',['MQTTClient_strerror',['../MQTTClient_8c.html#a9defda2979f6fedaae64fd85f5c2f617',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribe_205',['MQTTClient_subscribe',['../MQTTClient_8c.html#a9c1c28258f0d5c6a44ff53a98618f5f3',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribe5_206',['MQTTClient_subscribe5',['../MQTTClient_8c.html#af35ab7375435f7b6388c5ff4610dad3d',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribemany_207',['MQTTClient_subscribeMany',['../MQTTClient_8c.html#a92fa1c13f3db8399e042fbdbdfb692b3',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribemany5_208',['MQTTClient_subscribeMany5',['../MQTTClient_8c.html#a5390c2402f135c12826ffbf6fc261f7c',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribe_209',['MQTTClient_unsubscribe',['../MQTTClient_8c.html#aa8731be3dbc6a25f41f037f8bbbb054b',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribe5_210',['MQTTClient_unsubscribe5',['../MQTTClient_8c.html#a58356c13867f18df60fd4c7ec9457c48',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribemany_211',['MQTTClient_unsubscribeMany',['../MQTTClient_8c.html#a50abbce720d50b9f84b97ff9fa1f546d',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribemany5_212',['MQTTClient_unsubscribeMany5',['../MQTTClient_8c.html#a46bdb532d2153110ccffb2f0748d1ba5',1,'MQTTClient.c']]], + ['mqttclient_5fwaitforcompletion_213',['MQTTClient_waitForCompletion',['../MQTTClient_8c.html#ab8786efdd6c3a50c6ca33cfb5d8fc283',1,'MQTTClient.c']]], + ['mqttclient_5fwilloptions_214',['MQTTClient_willOptions',['../structMQTTClient__willOptions.html',1,'']]], + ['mqttclient_5fyield_215',['MQTTClient_yield',['../MQTTClient_8c.html#a8ad3d29864a9ca08202b0832e0f6678e',1,'MQTTClient.c']]], + ['mqttclientpersistence_2eh_216',['MQTTClientPersistence.h',['../MQTTClientPersistence_8h.html',1,'']]], + ['mqttclients_217',['MQTTClients',['../structMQTTClients.html',1,'']]], + ['mqttlenstring_218',['MQTTLenString',['../structMQTTLenString.html',1,'']]], + ['mqttpacket_219',['MQTTPacket',['../structMQTTPacket.html',1,'']]], + ['mqttpacket_2ec_220',['MQTTPacket.c',['../MQTTPacket_8c.html',1,'']]], + ['mqttpacket_5fack_221',['MQTTPacket_ack',['../MQTTPacket_8c.html#a93c155059c80bd01b4a1561d9bec1d13',1,'MQTTPacket.c']]], + ['mqttpacket_5fconnack_222',['MQTTPacket_connack',['../MQTTPacketOut_8c.html#ad05dd32a547e82e0741d9d8279568a65',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fdecode_223',['MQTTPacket_decode',['../MQTTPacket_8c.html#ac1f61e571640513a9785b3164141dfbc',1,'MQTTPacket.c']]], + ['mqttpacket_5fencode_224',['MQTTPacket_encode',['../MQTTPacket_8c.html#aadd77a4fa1b2d5c7791e3542c56af856',1,'MQTTPacket.c']]], + ['mqttpacket_5ffactory_225',['MQTTPacket_Factory',['../MQTTPacket_8c.html#af922033c495b05fe4242afc54211f20d',1,'MQTTPacket.c']]], + ['mqttpacket_5ffree_5fpacket_226',['MQTTPacket_free_packet',['../MQTTPacket_8c.html#a28f1754fe1f090d54bc3b5687fb2dd8c',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreeack_227',['MQTTPacket_freeAck',['../MQTTPacket_8c.html#a0ef92fb0207ed6272de9ebc749745d0c',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreeconnack_228',['MQTTPacket_freeConnack',['../MQTTPacketOut_8c.html#a49e8e6789e17a29f5a448b8fab0a4137',1,'MQTTPacketOut.c']]], + ['mqttpacket_5ffreepublish_229',['MQTTPacket_freePublish',['../MQTTPacket_8c.html#a642e5f62d21f14e81f8fc70b491d89c8',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreesuback_230',['MQTTPacket_freeSuback',['../MQTTPacket_8c.html#a4262b8f35885dc123f59268fb74cec3d',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreeunsuback_231',['MQTTPacket_freeUnsuback',['../MQTTPacket_8c.html#a9dd0446112e7bc982f8e3bb8bbb6b409',1,'MQTTPacket.c']]], + ['mqttpacket_5fheader_5fonly_232',['MQTTPacket_header_only',['../MQTTPacket_8c.html#af3ddd9c1a35d51bf70f44a1aa6fa0bba',1,'MQTTPacket.c']]], + ['mqttpacket_5fname_233',['MQTTPacket_name',['../MQTTPacket_8c.html#a9f9e58aba3ed5d513862d76bc5e29743',1,'MQTTPacket.c']]], + ['mqttpacket_5fpublish_234',['MQTTPacket_publish',['../MQTTPacket_8c.html#a58feb89ee5616f2ea6d222bbbef927bb',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_235',['MQTTPacket_send',['../MQTTPacket_8c.html#a51f58f1c7864f9fe87b55cc6ccb10129',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fack_236',['MQTTPacket_send_ack',['../MQTTPacket_8c.html#ad89e627a37f7f7eb4355b076cd46e0b0',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fconnect_237',['MQTTPacket_send_connect',['../MQTTPacketOut_8c.html#ad3c3f0919760286998e9b9eafaa47a36',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsend_5fdisconnect_238',['MQTTPacket_send_disconnect',['../MQTTPacket_8c.html#aa9e17261b4d09d802dba6a65bcdc44fa',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpingreq_239',['MQTTPacket_send_pingreq',['../MQTTPacketOut_8c.html#acf4b3402e224ac22ffbe74731f374fe0',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsend_5fpuback_240',['MQTTPacket_send_puback',['../MQTTPacket_8c.html#a8b93325a6a336406497b20b489d6c46a',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpubcomp_241',['MQTTPacket_send_pubcomp',['../MQTTPacket_8c.html#a908f81381b1720e4a53d15c1c4690f5c',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpublish_242',['MQTTPacket_send_publish',['../MQTTPacket_8c.html#a9ebcf93ff2ba3bd103f016c975e9c9c4',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpubrec_243',['MQTTPacket_send_pubrec',['../MQTTPacket_8c.html#a8167e3188a4bdcfb30c10e0d76c82afe',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpubrel_244',['MQTTPacket_send_pubrel',['../MQTTPacket_8c.html#adec2c812b12255dab78f75163a4f1960',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fsubscribe_245',['MQTTPacket_send_subscribe',['../MQTTPacketOut_8c.html#a90212ed29c311f52a1dce0617133b1a7',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsend_5funsubscribe_246',['MQTTPacket_send_unsubscribe',['../MQTTPacketOut_8c.html#a1ad4c9b76c6ab88c394ee925eb4dcd44',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsends_247',['MQTTPacket_sends',['../MQTTPacket_8c.html#a3635fd8035177b20c478daea6bad9328',1,'MQTTPacket.c']]], + ['mqttpacket_5fsuback_248',['MQTTPacket_suback',['../MQTTPacketOut_8c.html#aee4b3e106128629671828ae7bfa70850',1,'MQTTPacketOut.c']]], + ['mqttpacket_5funsuback_249',['MQTTPacket_unsuback',['../MQTTPacketOut_8c.html#a93f6aa4b23d30f6c8c5be87b0b58e37c',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fvbidecode_250',['MQTTPacket_VBIdecode',['../MQTTPacket_8c.html#a4fc1ee4d2cf8fd9bd59d89aadab222df',1,'MQTTPacket.c']]], + ['mqttpacketout_2ec_251',['MQTTPacketOut.c',['../MQTTPacketOut_8c.html',1,'']]], + ['mqttpersistence_2ec_252',['MQTTPersistence.c',['../MQTTPersistence_8c.html',1,'']]], + ['mqttpersistence_5fafterread_253',['MQTTPersistence_afterRead',['../MQTTClientPersistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], + ['mqttpersistence_5fbeforewrite_254',['MQTTPersistence_beforeWrite',['../MQTTClientPersistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], + ['mqttpersistence_5fclear_255',['MQTTPersistence_clear',['../MQTTPersistence_8c.html#a6f6056b7418b66a3786a5028b2357a86',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fclose_256',['MQTTPersistence_close',['../MQTTPersistence_8c.html#a385b6c191dbf51652d3e3a81813848f1',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fcreate_257',['MQTTPersistence_create',['../MQTTPersistence_8c.html#a75e756280e499db530896c5b74b8d3b5',1,'MQTTPersistence.c']]], + ['mqttpersistence_5finitialize_258',['MQTTPersistence_initialize',['../MQTTPersistence_8c.html#a65b64467da967b6930966b98f249406e',1,'MQTTPersistence.c']]], + ['mqttpersistence_5finsertinorder_259',['MQTTPersistence_insertInOrder',['../MQTTPersistence_8c.html#a568adcd6ad3542d6f631a7f7a2e682e5',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fmessage_260',['MQTTPersistence_message',['../structMQTTPersistence__message.html',1,'']]], + ['mqttpersistence_5fputpacket_261',['MQTTPersistence_putPacket',['../MQTTPersistence_8c.html#a18eab666c3e6aecd92a6c8f10df808e3',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fqentry_262',['MQTTPersistence_qEntry',['../structMQTTPersistence__qEntry.html',1,'']]], + ['mqttpersistence_5fremove_263',['MQTTPersistence_remove',['../MQTTPersistence_8c.html#aba48f1a44c540fa37bca207cae3cbbd3',1,'MQTTPersistence.c']]], + ['mqttpersistence_5frestoremessagequeue_264',['MQTTPersistence_restoreMessageQueue',['../MQTTPersistence_8c.html#ab4f6437946ac80d5f9e882e92e59cc5c',1,'MQTTPersistence.c']]], + ['mqttpersistence_5frestorepacket_265',['MQTTPersistence_restorePacket',['../MQTTPersistence_8c.html#a6bc55eebf10d7a7f7e2849b3e33716d1',1,'MQTTPersistence.c']]], + ['mqttpersistence_5frestorepackets_266',['MQTTPersistence_restorePackets',['../MQTTPersistence_8c.html#a3e607d17e088a493097af07e9c7b0006',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fwrapmsgid_267',['MQTTPersistence_wrapMsgID',['../MQTTPersistence_8c.html#adbf5881a3c6ce9bd7062182dfffe27fa',1,'MQTTPersistence.c']]], + ['mqttpersistencedefault_2ec_268',['MQTTPersistenceDefault.c',['../MQTTPersistenceDefault_8c.html',1,'']]], + ['mqttproperties_269',['MQTTProperties',['../structMQTTProperties.html',1,'']]], + ['mqttproperty_270',['MQTTProperty',['../structMQTTProperty.html',1,'']]], + ['mqttprotocol_271',['MQTTProtocol',['../structMQTTProtocol.html',1,'']]], + ['mqttprotocol_5faddressport_272',['MQTTProtocol_addressPort',['../MQTTProtocolOut_8c.html#ae9a2970a33893540e42ff5a8d95411dc',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fassignmsgid_273',['MQTTProtocol_assignMsgId',['../MQTTProtocolClient_8c.html#a0fa824f9702cb6b0d7c800fd65198fce',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fcheckpendingwrites_274',['MQTTProtocol_checkPendingWrites',['../MQTTClient_8c.html#acdcf1aefca1dbb3d1b3d36c9bbaf3760',1,'MQTTClient.c']]], + ['mqttprotocol_5fclosesession_275',['MQTTProtocol_closeSession',['../MQTTClient_8c.html#a9f7b0789ff9ca9ded72dbad2e747b333',1,'MQTTClient.c']]], + ['mqttprotocol_5fconnect_276',['MQTTProtocol_connect',['../MQTTProtocolOut_8c.html#ad9baf307647cbe6516eadbbe975cda8c',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fcreatemessage_277',['MQTTProtocol_createMessage',['../MQTTProtocolClient_8c.html#afbf121be11a48fcda3e0d639bc47472b',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5femptymessagelist_278',['MQTTProtocol_emptyMessageList',['../MQTTProtocolClient_8c.html#ab9c5a22f0cbd4fa648663de7ae7118ab',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5ffreeclient_279',['MQTTProtocol_freeClient',['../MQTTProtocolClient_8c.html#a52e062f52e5a42275471eeb23040fc0e',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5ffreemessagelist_280',['MQTTProtocol_freeMessageList',['../MQTTProtocolClient_8c.html#a8514ddc8d0f346c0da19ab4d59b4062f',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandledisconnects_281',['MQTTProtocol_handleDisconnects',['../MQTTProtocolOut_8c.html#a4f914518a8e2d68cc9d9fbb2c22cdf6f',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fhandlepingresps_282',['MQTTProtocol_handlePingresps',['../MQTTProtocolOut_8c.html#ad298c92c74b5f1acda774fc95e3d61c3',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fhandlepubacks_283',['MQTTProtocol_handlePubacks',['../MQTTProtocolClient_8c.html#aa9f454819a84c7a43009253fabcea3f3',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepubcomps_284',['MQTTProtocol_handlePubcomps',['../MQTTProtocolClient_8c.html#a9aa163c85710d4936ae368b8b9412440',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepublishes_285',['MQTTProtocol_handlePublishes',['../MQTTProtocolClient_8c.html#a2d7897d575be486bf1ed0459d7b2b8e7',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepubrecs_286',['MQTTProtocol_handlePubrecs',['../MQTTProtocolClient_8c.html#ac09429577a185297d8797d791b7116a2',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepubrels_287',['MQTTProtocol_handlePubrels',['../MQTTProtocolClient_8c.html#a362e0560d6f4f0e50237664a1a8e89a7',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlesubacks_288',['MQTTProtocol_handleSubacks',['../MQTTProtocolOut_8c.html#a5424115bf427436c2d40058f15261ed0',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fhandleunsubacks_289',['MQTTProtocol_handleUnsubacks',['../MQTTProtocolOut_8c.html#a0b9648549a1a132eecadb74df2e84f57',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fkeepalive_290',['MQTTProtocol_keepalive',['../MQTTProtocolClient_8c.html#a218a69c333badc4a61b321bc830ac1e0',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fqueueack_291',['MQTTProtocol_queueAck',['../MQTTProtocolClient_8c.html#a68e5f17517e75326c0869a22c7995358',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fremovepublication_292',['MQTTProtocol_removePublication',['../MQTTProtocolClient_8c.html#a900fa28a8774ad6f5535104bb62e7abf',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fretries_293',['MQTTProtocol_retries',['../MQTTProtocolClient_8c.html#ad2f52c0fff61c891b174d69b95bcd173',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fretry_294',['MQTTProtocol_retry',['../MQTTProtocolClient_8c.html#a3a1acc3bd7b09ab9d52e15e4a97c4cb2',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fspecialchars_295',['MQTTProtocol_specialChars',['../MQTTProtocolOut_8c.html#a6b8949d7db9299fa5fd940e8e58f31b6',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fstartpublish_296',['MQTTProtocol_startPublish',['../MQTTProtocolClient_8c.html#a0f86c2cc2debfa39e275d3c76d5d0073',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fstartpublishcommon_297',['MQTTProtocol_startPublishCommon',['../MQTTProtocolClient_8c.html#a4502a4b9257b32508fac87e42fb1d85a',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fstorepublication_298',['MQTTProtocol_storePublication',['../MQTTProtocolClient_8c.html#ac753a3ad12292a0a9c2f4343bd33817e',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fsubscribe_299',['MQTTProtocol_subscribe',['../MQTTProtocolOut_8c.html#a460d021d06dd24cf975dfe20e17ab1ba',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5funsubscribe_300',['MQTTProtocol_unsubscribe',['../MQTTProtocolOut_8c.html#a69083f5a059d129d1030140ec1cd3d58',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fwriteavailable_301',['MQTTProtocol_writeAvailable',['../MQTTProtocolClient_8c.html#a5906689ff10dc091d1a2b317295d39b0',1,'MQTTProtocolClient.c']]], + ['mqttprotocolclient_2ec_302',['MQTTProtocolClient.c',['../MQTTProtocolClient_8c.html',1,'']]], + ['mqttprotocolout_2ec_303',['MQTTProtocolOut.c',['../MQTTProtocolOut_8c.html',1,'']]], + ['mqttresponse_304',['MQTTResponse',['../structMQTTResponse.html',1,'']]], + ['mqttresponse_5ffree_305',['MQTTResponse_free',['../MQTTClient_8c.html#a01bd2c5f98ec5c0636a106db33f2b01b',1,'MQTTClient.c']]], + ['mqttstrdup_306',['MQTTStrdup',['../MQTTProtocolClient_8c.html#a89588f085edc5cee4eb650e8ad114df4',1,'MQTTProtocolClient.c']]], + ['mqttstrncpy_307',['MQTTStrncpy',['../MQTTProtocolClient_8c.html#a447b65c664ebedef8fecb70e29dc1767',1,'MQTTProtocolClient.c']]], + ['mqttsubscribe_5foptions_308',['MQTTSubscribe_options',['../structMQTTSubscribe__options.html',1,'']]], + ['mqttversion_309',['MQTTVersion',['../structMQTTClient__connectOptions.html#ac5990907e10165a71e6b3c163f2f1eef',1,'MQTTClient_connectOptions::MQTTVersion()'],['../structAck.html#a542acd6ed107a1dfffd225b668c0d961',1,'Ack::MQTTVersion()'],['../structPublish.html#a5e5bc5c8445b9f8bdbc02315f91921a0',1,'Publish::MQTTVersion()'],['../structUnsuback.html#a25413381d1f688248d64a82e67746108',1,'Unsuback::MQTTVersion()'],['../structSuback.html#aec7bfa50ec92509a7d7f9466173a064e',1,'Suback::MQTTVersion()'],['../structConnack.html#af1a10784220b77ccfbf549b2443f2332',1,'Connack::MQTTVersion()'],['../structMQTTClient__createOptions.html#ae15c5b3e67be5967deb87d2830805565',1,'MQTTClient_createOptions::MQTTVersion()'],['../structMQTTAsync__command.html#aab15c3354653ca0d03644bcaa98f77fb',1,'MQTTAsync_command::MQTTVersion()'],['../structMQTTAsync__connectOptions.html#a03bb9a21cbbd0f9a2258204c1890ca40',1,'MQTTAsync_connectOptions::MQTTVersion()'],['../structMQTTAsync__createOptions.html#a538f8ca0715d75b79be91e8050a44402',1,'MQTTAsync_createOptions::MQTTVersion()'],['../structMQTTAsync__successData5.html#a2a1956f782970dfdc24bb521bd90452b',1,'MQTTAsync_successData5::MQTTVersion()'],['../structMQTTAsync__successData.html#a2803f7c3e77845d14d7d54004b6c16f9',1,'MQTTAsync_successData::MQTTVersion()'],['../structClients.html#a9cb1ad103af7c3aaf00e79037e6befba',1,'Clients::MQTTVersion()']]], + ['mqttversion_2ec_310',['MQTTVersion.c',['../MQTTVersion_8c.html',1,'']]], + ['msgid_311',['msgid',['../structMQTTAsync__message.html#a2c8572ec595842768848982321835bfe',1,'MQTTAsync_message']]], + ['msgid_312',['msgId',['../structAck.html#aacfdbab79ac27e1a5ff80bccac4427a9',1,'Ack']]], + ['msgid_313',['msgid',['../structMQTTClient__message.html#a3be81df63644606036c0a139564a1d92',1,'MQTTClient_message']]], + ['msgid_314',['msgID',['../structClients.html#ad0aaa6d9fce1f8196ff859df00716055',1,'Clients']]], + ['msgid_315',['msgId',['../structPublish.html#ac1076c8b1dc5793c498f098f0a0d78cd',1,'Publish::msgId()'],['../structUnsuback.html#a804d221a84b2306cb6040f405315abc3',1,'Unsuback::msgId()'],['../structSuback.html#acb5971c2ca02372e41da6f1ccf202dba',1,'Suback::msgId()']]], + ['myfree_316',['myfree',['../Heap_8c.html#a25214c297c998eba3cfc8282b1162c69',1,'Heap.c']]], + ['mymalloc_317',['mymalloc',['../Heap_8c.html#a59e53a989d69c3da767487596d9bfa1f',1,'Heap.c']]], + ['myrealloc_318',['myrealloc',['../Heap_8c.html#a699e6722cc8f195f853f09ac274413a3',1,'Heap.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_d.html b/docs/MQTTClient_internal/html/search/all_d.html index bc376fec..af7f2f0f 100644 --- a/docs/MQTTClient_internal/html/search/all_d.html +++ b/docs/MQTTClient_internal/html/search/all_d.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_d.js b/docs/MQTTClient_internal/html/search/all_d.js index 6a82247e..17462a8a 100644 --- a/docs/MQTTClient_internal/html/search/all_d.js +++ b/docs/MQTTClient_internal/html/search/all_d.js @@ -1,13 +1,13 @@ var searchData= [ - ['name_312',['name',['../structMQTTAsync__nameValue.html#ad14f405ef73f1f2aa632bb22e6b26f51',1,'MQTTAsync_nameValue']]], - ['nametotype_313',['nameToType',['../structnameToType.html',1,'']]], - ['net_314',['net',['../structClients.html#a8521f3c0d7728e0bac41c1601ca8bbb9',1,'Clients']]], - ['networkhandles_315',['networkHandles',['../structnetworkHandles.html',1,'']]], - ['new_5fpackets_316',['new_packets',['../MQTTPacket_8c.html#a210a7b616c27aa7247824022285da784',1,'MQTTPacket.c']]], - ['next_317',['next',['../structListElementStruct.html#ae087afc0ce4e6e17592420764902f301',1,'ListElementStruct']]], - ['nextmessagetype_318',['nextMessageType',['../structMessages.html#aa31b6d8af2e0230eccdcc6ee7f2cefb1',1,'Messages']]], - ['nfds_319',['nfds',['../structSockets.html#a9bee5974437201a4b7728955de2ebd50',1,'Sockets']]], - ['nodestruct_320',['NodeStruct',['../structNodeStruct.html',1,'']]], - ['nolocal_321',['noLocal',['../structMQTTSubscribe__options.html#a52989a1198bc251aad22638e85f2b7b4',1,'MQTTSubscribe_options']]] + ['name_319',['name',['../structMQTTAsync__nameValue.html#ad14f405ef73f1f2aa632bb22e6b26f51',1,'MQTTAsync_nameValue']]], + ['nametotype_320',['nameToType',['../structnameToType.html',1,'']]], + ['net_321',['net',['../structClients.html#a8521f3c0d7728e0bac41c1601ca8bbb9',1,'Clients']]], + ['networkhandles_322',['networkHandles',['../structnetworkHandles.html',1,'']]], + ['new_5fpackets_323',['new_packets',['../MQTTPacket_8c.html#a210a7b616c27aa7247824022285da784',1,'MQTTPacket.c']]], + ['next_324',['next',['../structListElementStruct.html#ae087afc0ce4e6e17592420764902f301',1,'ListElementStruct']]], + ['nextmessagetype_325',['nextMessageType',['../structMessages.html#aa31b6d8af2e0230eccdcc6ee7f2cefb1',1,'Messages']]], + ['nfds_326',['nfds',['../structSockets.html#a9bee5974437201a4b7728955de2ebd50',1,'Sockets']]], + ['nodestruct_327',['NodeStruct',['../structNodeStruct.html',1,'']]], + ['nolocal_328',['noLocal',['../structMQTTSubscribe__options.html#a52989a1198bc251aad22638e85f2b7b4',1,'MQTTSubscribe_options']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_e.html b/docs/MQTTClient_internal/html/search/all_e.html index 2e3c74dc..e25df423 100644 --- a/docs/MQTTClient_internal/html/search/all_e.html +++ b/docs/MQTTClient_internal/html/search/all_e.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_e.js b/docs/MQTTClient_internal/html/search/all_e.js index 231c5f0c..665591aa 100644 --- a/docs/MQTTClient_internal/html/search/all_e.js +++ b/docs/MQTTClient_internal/html/search/all_e.js @@ -1,9 +1,9 @@ var searchData= [ - ['onfailure_322',['onFailure',['../structMQTTAsync__responseOptions.html#a180b2c728942d606a3fc4a4a79bb81f4',1,'MQTTAsync_responseOptions::onFailure()'],['../structMQTTAsync__connectOptions.html#a703d2a77602f3737eccf5123e16bb428',1,'MQTTAsync_connectOptions::onFailure()'],['../structMQTTAsync__disconnectOptions.html#a7719db20d0649fd1bd0edc239c289cdb',1,'MQTTAsync_disconnectOptions::onFailure()']]], - ['onfailure5_323',['onFailure5',['../structMQTTAsync__responseOptions.html#a134555eea729d1eeeb9427057834fa38',1,'MQTTAsync_responseOptions::onFailure5()'],['../structMQTTAsync__connectOptions.html#a48bd502d8028bb13afbce0793ebe3c76',1,'MQTTAsync_connectOptions::onFailure5()'],['../structMQTTAsync__disconnectOptions.html#a8d78996c4b349f10196450fe9900b943',1,'MQTTAsync_disconnectOptions::onFailure5()']]], - ['onsuccess_324',['onSuccess',['../structMQTTAsync__responseOptions.html#a4a6dffebf9a6f4ffb9fe2a5d949d8090',1,'MQTTAsync_responseOptions::onSuccess()'],['../structMQTTAsync__connectOptions.html#a99c3f6fd2c5238112a6ae90ce1013f10',1,'MQTTAsync_connectOptions::onSuccess()'],['../structMQTTAsync__disconnectOptions.html#afe4eec80b7037a59e459fb8643bed3e3',1,'MQTTAsync_disconnectOptions::onSuccess()']]], - ['onsuccess5_325',['onSuccess5',['../structMQTTAsync__responseOptions.html#a1294e96bc2d81fca8808fdca3bf4dd2e',1,'MQTTAsync_responseOptions::onSuccess5()'],['../structMQTTAsync__connectOptions.html#af108a647db655523e892938d3a67d6b4',1,'MQTTAsync_connectOptions::onSuccess5()'],['../structMQTTAsync__disconnectOptions.html#ad8a30361f986c6f32ee33e59591d736b',1,'MQTTAsync_disconnectOptions::onSuccess5()']]], - ['outboundmsgs_326',['outboundMsgs',['../structClients.html#a1d9f8325aa92c6f65a285e823091bbe1',1,'Clients']]], - ['outboundqueue_327',['outboundQueue',['../structClients.html#a9495d5b5b191a897c05ea8d298e6d6b5',1,'Clients']]] + ['onfailure_329',['onFailure',['../structMQTTAsync__responseOptions.html#a180b2c728942d606a3fc4a4a79bb81f4',1,'MQTTAsync_responseOptions::onFailure()'],['../structMQTTAsync__connectOptions.html#a703d2a77602f3737eccf5123e16bb428',1,'MQTTAsync_connectOptions::onFailure()'],['../structMQTTAsync__disconnectOptions.html#a7719db20d0649fd1bd0edc239c289cdb',1,'MQTTAsync_disconnectOptions::onFailure()']]], + ['onfailure5_330',['onFailure5',['../structMQTTAsync__responseOptions.html#a134555eea729d1eeeb9427057834fa38',1,'MQTTAsync_responseOptions::onFailure5()'],['../structMQTTAsync__connectOptions.html#a48bd502d8028bb13afbce0793ebe3c76',1,'MQTTAsync_connectOptions::onFailure5()'],['../structMQTTAsync__disconnectOptions.html#a8d78996c4b349f10196450fe9900b943',1,'MQTTAsync_disconnectOptions::onFailure5()']]], + ['onsuccess_331',['onSuccess',['../structMQTTAsync__responseOptions.html#a4a6dffebf9a6f4ffb9fe2a5d949d8090',1,'MQTTAsync_responseOptions::onSuccess()'],['../structMQTTAsync__connectOptions.html#a99c3f6fd2c5238112a6ae90ce1013f10',1,'MQTTAsync_connectOptions::onSuccess()'],['../structMQTTAsync__disconnectOptions.html#afe4eec80b7037a59e459fb8643bed3e3',1,'MQTTAsync_disconnectOptions::onSuccess()']]], + ['onsuccess5_332',['onSuccess5',['../structMQTTAsync__responseOptions.html#a1294e96bc2d81fca8808fdca3bf4dd2e',1,'MQTTAsync_responseOptions::onSuccess5()'],['../structMQTTAsync__connectOptions.html#af108a647db655523e892938d3a67d6b4',1,'MQTTAsync_connectOptions::onSuccess5()'],['../structMQTTAsync__disconnectOptions.html#ad8a30361f986c6f32ee33e59591d736b',1,'MQTTAsync_disconnectOptions::onSuccess5()']]], + ['outboundmsgs_333',['outboundMsgs',['../structClients.html#a1d9f8325aa92c6f65a285e823091bbe1',1,'Clients']]], + ['outboundqueue_334',['outboundQueue',['../structClients.html#a9495d5b5b191a897c05ea8d298e6d6b5',1,'Clients']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_f.html b/docs/MQTTClient_internal/html/search/all_f.html index 246f8ab1..b23da6ce 100644 --- a/docs/MQTTClient_internal/html/search/all_f.html +++ b/docs/MQTTClient_internal/html/search/all_f.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/all_f.js b/docs/MQTTClient_internal/html/search/all_f.js index 49c72ac4..14a9b6c1 100644 --- a/docs/MQTTClient_internal/html/search/all_f.js +++ b/docs/MQTTClient_internal/html/search/all_f.js @@ -1,57 +1,64 @@ var searchData= [ - ['packet_5fnames_328',['packet_names',['../MQTTPacket_8c.html#a4536b1c36ed06171f20baeb69c01aa02',1,'MQTTPacket.c']]], - ['packet_5ftype_329',['packet_type',['../structMQTTAsync__failureData5.html#a20603650f6fd4e429fc4c246d5005843',1,'MQTTAsync_failureData5']]], - ['packetbuffers_330',['PacketBuffers',['../structPacketBuffers.html',1,'']]], - ['parent_331',['parent',['../structNodeStruct.html#a1a00514fc5241f8b1391fa0eb433a128',1,'NodeStruct']]], - ['password_332',['password',['../structClients.html#a9f88bf65b015c91ec6ae7bc827513d66',1,'Clients::password()'],['../structMQTTAsync__connectOptions.html#a52a773222e567d8480c85b6a27bf36f2',1,'MQTTAsync_connectOptions::password()'],['../structMQTTClient__connectOptions.html#a8f0e7e9e217a913fa8e200e2d5e45f6e',1,'MQTTClient_connectOptions::password()'],['../structConnect.html#a5ad7b3bbaab88cc22692b849f31b2756',1,'Connect::password()']]], - ['passwordlen_333',['passwordlen',['../structClients.html#a9fc28cb6abab3247752403043c346aa1',1,'Clients']]], - ['payload_334',['payload',['../structMQTTAsync__message.html#a13d88e9c871b5b39b73370a0784331af',1,'MQTTAsync_message::payload()'],['../structMQTTAsync__willOptions.html#a359707f9e88d705bce91d482d9816e33',1,'MQTTAsync_willOptions::payload()'],['../structMQTTClient__message.html#a90437a223f235ad4412d0c7c69f08125',1,'MQTTClient_message::payload()'],['../structMQTTClient__willOptions.html#a7553866f76f2f01ee59bc2114da9a169',1,'MQTTClient_willOptions::payload()'],['../structPublish.html#abe2b6e569277a3c7fda52449e1ea31b6',1,'Publish::payload()']]], - ['payloadlen_335',['payloadlen',['../structMQTTAsync__message.html#a9271900e2789ff81e382a47842aaee8f',1,'MQTTAsync_message::payloadlen()'],['../structMQTTClient__message.html#a85b39bde61ef9f5ed853ad6489145a94',1,'MQTTClient_message::payloadlen()'],['../structPublish.html#ac250077e84d98fc44f95530793bae79b',1,'Publish::payloadlen()']]], - ['pclear_336',['pclear',['../structMQTTClient__persistence.html#a4eb919940dcc01a005abcdeb08a7eb10',1,'MQTTClient_persistence']]], - ['pclose_337',['pclose',['../structMQTTClient__persistence.html#a1bcc2ebaee1ab155b906493b14088a33',1,'MQTTClient_persistence']]], - ['pcontainskey_338',['pcontainskey',['../structMQTTClient__persistence.html#a049d548dc2bbe906309a9f869a60653c',1,'MQTTClient_persistence']]], - ['pending_5fsocketcompare_339',['pending_socketcompare',['../SocketBuffer_8c.html#a39f1ee9c98bc12a7be4d7a40b03550d5',1,'SocketBuffer.c']]], - ['pending_5fwrite_340',['pending_write',['../structpending__write.html',1,'']]], - ['pending_5fwrites_341',['pending_writes',['../structpending__writes.html',1,'']]], - ['persistence_342',['persistence',['../structClients.html#a8745ab9f05600fd3f97bf695e99a7f17',1,'Clients']]], - ['persistence_5fclear_343',['Persistence_clear',['../MQTTClientPersistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], - ['persistence_5fclose_344',['Persistence_close',['../MQTTClientPersistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], - ['persistence_5fcontainskey_345',['Persistence_containskey',['../MQTTClientPersistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], - ['persistence_5fget_346',['Persistence_get',['../MQTTClientPersistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], - ['persistence_5fkeys_347',['Persistence_keys',['../MQTTClientPersistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], - ['persistence_5fopen_348',['Persistence_open',['../MQTTClientPersistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], - ['persistence_5fput_349',['Persistence_put',['../MQTTClientPersistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], - ['persistence_5fremove_350',['Persistence_remove',['../MQTTClientPersistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]], - ['pget_351',['pget',['../structMQTTClient__persistence.html#a0f9fe9edd3946f0647862de7904e4098',1,'MQTTClient_persistence']]], - ['phandle_352',['phandle',['../structClients.html#a1a0ca8e87f5d963ea3ab5c2e7748aaa5',1,'Clients']]], - ['ping_5fdue_353',['ping_due',['../structClients.html#a121c64145977cb25dfd05a3297a4d6f1',1,'Clients']]], - ['ping_5fdue_5ftime_354',['ping_due_time',['../structClients.html#a4e6f0b2b23c1a2b86899c9ca7b06b29b',1,'Clients']]], - ['pkeys_355',['pkeys',['../structMQTTClient__persistence.html#a36a69926a618f7e0f5098db61ece101b',1,'MQTTClient_persistence']]], - ['popen_356',['popen',['../structMQTTClient__persistence.html#ae58084438624ad267f7c050debd1b2ff',1,'MQTTClient_persistence']]], - ['pos_357',['pos',['../structws__frame.html#a03099256dd943b73f0558039b6ff4c6b',1,'ws_frame']]], - ['pput_358',['pput',['../structMQTTClient__persistence.html#a0f7846e9b4118a7a63702c504f4c8e9d',1,'MQTTClient_persistence']]], - ['premove_359',['premove',['../structMQTTClient__persistence.html#a815d4110bfd7f2678a60f9264b13e075',1,'MQTTClient_persistence']]], - ['prev_360',['prev',['../structListElementStruct.html#a988db5828265edf844721e841e71fffe',1,'ListElementStruct']]], - ['privatekey_361',['privateKey',['../structMQTTAsync__SSLOptions.html#a8b56d6075568072840f02abc8c642f6a',1,'MQTTAsync_SSLOptions::privateKey()'],['../structMQTTClient__SSLOptions.html#a5f3cc2c0f36991db85aae88ccd4985f9',1,'MQTTClient_SSLOptions::privateKey()']]], - ['privatekeypassword_362',['privateKeyPassword',['../structMQTTAsync__SSLOptions.html#a498e4dfcb65894bfc04290ace6b9a4cd',1,'MQTTAsync_SSLOptions::privateKeyPassword()'],['../structMQTTClient__SSLOptions.html#a183af235478d93a6b14c204e9e291bab',1,'MQTTClient_SSLOptions::privateKeyPassword()']]], - ['properties_363',['properties',['../structMQTTAsync__message.html#a48ff43122b16a12b6b8a9890ebfb6410',1,'MQTTAsync_message::properties()'],['../structMQTTAsync__failureData5.html#a9c1807e86e398de6f4846d90b4a5eda6',1,'MQTTAsync_failureData5::properties()'],['../structMQTTAsync__successData5.html#ac425dfec67b3245e95a3e415d93ba5bf',1,'MQTTAsync_successData5::properties()'],['../structMQTTAsync__responseOptions.html#abc19c474b6908b2bcbd42f8410d46336',1,'MQTTAsync_responseOptions::properties()'],['../structMQTTAsync__disconnectOptions.html#a2df711f7d216b57a584195691ac5630f',1,'MQTTAsync_disconnectOptions::properties()'],['../structMQTTClient__message.html#aa24d24d388481c0616a704cabb041f95',1,'MQTTClient_message::properties()'],['../structConnack.html#ab5d35213eadd6bbecd56627b9680ac0c',1,'Connack::properties()'],['../structSuback.html#a57c418a7021b10c92aec4c4d010b7f67',1,'Suback::properties()'],['../structUnsuback.html#adc48396a054907a9806fef1dd46d1055',1,'Unsuback::properties()'],['../structPublish.html#a99fce902e497cd379686c6d447a17be3',1,'Publish::properties()'],['../structAck.html#a7eff67c84b323fc798eb3282b2981069',1,'Ack::properties()']]], - ['props_5frc_5fparms_364',['props_rc_parms',['../structprops__rc__parms.html',1,'']]], - ['protocol_365',['Protocol',['../structConnect.html#ab87417598de200c235ce28e8947f8804',1,'Connect']]], - ['protos_366',['protos',['../structMQTTAsync__SSLOptions.html#a9947024802d3fb16fc050f4741a46e04',1,'MQTTAsync_SSLOptions::protos()'],['../structMQTTClient__SSLOptions.html#ad3db47e7874990570d03758a3fa28dad',1,'MQTTClient_SSLOptions::protos()']]], - ['protos_5flen_367',['protos_len',['../structMQTTAsync__SSLOptions.html#ad9e390b02afbf856c5a9267d30f09208',1,'MQTTAsync_SSLOptions::protos_len()'],['../structMQTTClient__SSLOptions.html#ac2df368c72cfaa432f90e3b657bd0883',1,'MQTTClient_SSLOptions::protos_len()']]], - ['pstclear_368',['pstclear',['../MQTTPersistenceDefault_8c.html#a15b1457f7fd20dde1fd51ed434321e1a',1,'MQTTPersistenceDefault.c']]], - ['pstclose_369',['pstclose',['../MQTTPersistenceDefault_8c.html#a24f38d19ff3db61292d7b463e59174ef',1,'MQTTPersistenceDefault.c']]], - ['pstcontainskey_370',['pstcontainskey',['../MQTTPersistenceDefault_8c.html#a2a55461def3359a2b0aff6b3bb0644ad',1,'MQTTPersistenceDefault.c']]], - ['pstget_371',['pstget',['../MQTTPersistenceDefault_8c.html#a3aef9f9af29882fac9e76984e4c2954c',1,'MQTTPersistenceDefault.c']]], - ['pstkeys_372',['pstkeys',['../MQTTPersistenceDefault_8c.html#a9f358375b8e254983d00f8b057e97dd6',1,'MQTTPersistenceDefault.c']]], - ['pstmkdir_373',['pstmkdir',['../MQTTPersistenceDefault_8c.html#aecfbfa761dfca1b551d9ade325f480b1',1,'MQTTPersistenceDefault.c']]], - ['pstopen_374',['pstopen',['../MQTTPersistenceDefault_8c.html#a919cf4710a1f7d7ce0878599e9aa4700',1,'MQTTPersistenceDefault.c']]], - ['pstput_375',['pstput',['../MQTTPersistenceDefault_8c.html#a64e0c1a2fd06375b975d6643175572d8',1,'MQTTPersistenceDefault.c']]], - ['pstremove_376',['pstremove',['../MQTTPersistenceDefault_8c.html#a64b106b9a2778f97d271af7c9a7940f2',1,'MQTTPersistenceDefault.c']]], - ['ptr_377',['ptr',['../structstorageElement.html#a0d617635e796eaa92ace8cb5cd6d0925',1,'storageElement']]], - ['ptrcompare_378',['ptrCompare',['../Heap_8c.html#a45db32d4f454f94d7f4574deced5ee33',1,'Heap.c']]], - ['pub_379',['pub',['../structMQTTAsync__successData.html#a61d994959ff1350ab2a0986d33ecd204',1,'MQTTAsync_successData::pub()'],['../structMQTTAsync__successData5.html#a7e75879a42ba01477a3c921487e3c564',1,'MQTTAsync_successData5::pub()']]], - ['publications_380',['Publications',['../structPublications.html',1,'']]], - ['publish_381',['Publish',['../structPublish.html',1,'']]] + ['packet_5fnames_335',['packet_names',['../MQTTPacket_8c.html#a4536b1c36ed06171f20baeb69c01aa02',1,'MQTTPacket.c']]], + ['packet_5ftype_336',['packet_type',['../structMQTTAsync__failureData5.html#a20603650f6fd4e429fc4c246d5005843',1,'MQTTAsync_failureData5']]], + ['packetbuffers_337',['PacketBuffers',['../structPacketBuffers.html',1,'']]], + ['paho_5fthread_5fcreate_5fmutex_338',['Paho_thread_create_mutex',['../Thread_8c.html#a4dc03e919803e0af06fabbd4f394a51c',1,'Thread.c']]], + ['paho_5fthread_5fdestroy_5fmutex_339',['Paho_thread_destroy_mutex',['../Thread_8c.html#ad2c1a28aa3f8ae9cdd6677fd5477b8e4',1,'Thread.c']]], + ['paho_5fthread_5fgetid_340',['Paho_thread_getid',['../Thread_8c.html#aa3e166167a73a02b488d49e724d161c4',1,'Thread.c']]], + ['paho_5fthread_5flock_5fmutex_341',['Paho_thread_lock_mutex',['../Thread_8c.html#a1c9cd0a1556e72719a5ed3f9cdf6686f',1,'Thread.c']]], + ['paho_5fthread_5fstart_342',['Paho_thread_start',['../Thread_8c.html#a342744cc2c60c981c4558475a759ca6c',1,'Thread.c']]], + ['paho_5fthread_5funlock_5fmutex_343',['Paho_thread_unlock_mutex',['../Thread_8c.html#a1c21203efa0c10544d24585870fe4757',1,'Thread.c']]], + ['parent_344',['parent',['../structNodeStruct.html#a1a00514fc5241f8b1391fa0eb433a128',1,'NodeStruct']]], + ['password_345',['password',['../structClients.html#a9f88bf65b015c91ec6ae7bc827513d66',1,'Clients::password()'],['../structMQTTAsync__connectOptions.html#a52a773222e567d8480c85b6a27bf36f2',1,'MQTTAsync_connectOptions::password()'],['../structMQTTClient__connectOptions.html#a8f0e7e9e217a913fa8e200e2d5e45f6e',1,'MQTTClient_connectOptions::password()'],['../structConnect.html#a5ad7b3bbaab88cc22692b849f31b2756',1,'Connect::password()']]], + ['passwordlen_346',['passwordlen',['../structClients.html#a9fc28cb6abab3247752403043c346aa1',1,'Clients']]], + ['payload_347',['payload',['../structMQTTClient__message.html#a90437a223f235ad4412d0c7c69f08125',1,'MQTTClient_message::payload()'],['../structPublish.html#abe2b6e569277a3c7fda52449e1ea31b6',1,'Publish::payload()'],['../structMQTTClient__willOptions.html#a7553866f76f2f01ee59bc2114da9a169',1,'MQTTClient_willOptions::payload()'],['../structMQTTAsync__willOptions.html#a359707f9e88d705bce91d482d9816e33',1,'MQTTAsync_willOptions::payload()'],['../structMQTTAsync__message.html#a13d88e9c871b5b39b73370a0784331af',1,'MQTTAsync_message::payload()']]], + ['payloadlen_348',['payloadlen',['../structMQTTAsync__message.html#a9271900e2789ff81e382a47842aaee8f',1,'MQTTAsync_message::payloadlen()'],['../structMQTTClient__message.html#a85b39bde61ef9f5ed853ad6489145a94',1,'MQTTClient_message::payloadlen()'],['../structPublish.html#ac250077e84d98fc44f95530793bae79b',1,'Publish::payloadlen()']]], + ['pclear_349',['pclear',['../structMQTTClient__persistence.html#a4eb919940dcc01a005abcdeb08a7eb10',1,'MQTTClient_persistence']]], + ['pclose_350',['pclose',['../structMQTTClient__persistence.html#a1bcc2ebaee1ab155b906493b14088a33',1,'MQTTClient_persistence']]], + ['pcontainskey_351',['pcontainskey',['../structMQTTClient__persistence.html#a049d548dc2bbe906309a9f869a60653c',1,'MQTTClient_persistence']]], + ['pending_5fsocketcompare_352',['pending_socketcompare',['../SocketBuffer_8c.html#a39f1ee9c98bc12a7be4d7a40b03550d5',1,'SocketBuffer.c']]], + ['pending_5fwrite_353',['pending_write',['../structpending__write.html',1,'']]], + ['pending_5fwrites_354',['pending_writes',['../structpending__writes.html',1,'']]], + ['persistence_355',['persistence',['../structClients.html#a8745ab9f05600fd3f97bf695e99a7f17',1,'Clients']]], + ['persistence_5fclear_356',['Persistence_clear',['../MQTTClientPersistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], + ['persistence_5fclose_357',['Persistence_close',['../MQTTClientPersistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], + ['persistence_5fcontainskey_358',['Persistence_containskey',['../MQTTClientPersistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], + ['persistence_5fget_359',['Persistence_get',['../MQTTClientPersistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], + ['persistence_5fkeys_360',['Persistence_keys',['../MQTTClientPersistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], + ['persistence_5fopen_361',['Persistence_open',['../MQTTClientPersistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], + ['persistence_5fput_362',['Persistence_put',['../MQTTClientPersistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], + ['persistence_5fremove_363',['Persistence_remove',['../MQTTClientPersistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]], + ['pget_364',['pget',['../structMQTTClient__persistence.html#a0f9fe9edd3946f0647862de7904e4098',1,'MQTTClient_persistence']]], + ['phandle_365',['phandle',['../structClients.html#a1a0ca8e87f5d963ea3ab5c2e7748aaa5',1,'Clients']]], + ['ping_5fdue_366',['ping_due',['../structClients.html#a121c64145977cb25dfd05a3297a4d6f1',1,'Clients']]], + ['ping_5fdue_5ftime_367',['ping_due_time',['../structClients.html#a4e6f0b2b23c1a2b86899c9ca7b06b29b',1,'Clients']]], + ['pkeys_368',['pkeys',['../structMQTTClient__persistence.html#a36a69926a618f7e0f5098db61ece101b',1,'MQTTClient_persistence']]], + ['popen_369',['popen',['../structMQTTClient__persistence.html#ae58084438624ad267f7c050debd1b2ff',1,'MQTTClient_persistence']]], + ['pos_370',['pos',['../structws__frame.html#a03099256dd943b73f0558039b6ff4c6b',1,'ws_frame']]], + ['pput_371',['pput',['../structMQTTClient__persistence.html#a0f7846e9b4118a7a63702c504f4c8e9d',1,'MQTTClient_persistence']]], + ['premove_372',['premove',['../structMQTTClient__persistence.html#a815d4110bfd7f2678a60f9264b13e075',1,'MQTTClient_persistence']]], + ['prev_373',['prev',['../structListElementStruct.html#a988db5828265edf844721e841e71fffe',1,'ListElementStruct']]], + ['prieyecatcher_374',['PRIeyecatcher',['../Heap_8c.html#a8ee400b3ef078dd6b8075360a3b656a8',1,'Heap.c']]], + ['privatekey_375',['privateKey',['../structMQTTClient__SSLOptions.html#a5f3cc2c0f36991db85aae88ccd4985f9',1,'MQTTClient_SSLOptions::privateKey()'],['../structMQTTAsync__SSLOptions.html#a8b56d6075568072840f02abc8c642f6a',1,'MQTTAsync_SSLOptions::privateKey()']]], + ['privatekeypassword_376',['privateKeyPassword',['../structMQTTClient__SSLOptions.html#a183af235478d93a6b14c204e9e291bab',1,'MQTTClient_SSLOptions::privateKeyPassword()'],['../structMQTTAsync__SSLOptions.html#a498e4dfcb65894bfc04290ace6b9a4cd',1,'MQTTAsync_SSLOptions::privateKeyPassword()']]], + ['properties_377',['properties',['../structMQTTAsync__responseOptions.html#abc19c474b6908b2bcbd42f8410d46336',1,'MQTTAsync_responseOptions::properties()'],['../structMQTTAsync__message.html#a48ff43122b16a12b6b8a9890ebfb6410',1,'MQTTAsync_message::properties()'],['../structMQTTAsync__failureData5.html#a9c1807e86e398de6f4846d90b4a5eda6',1,'MQTTAsync_failureData5::properties()'],['../structMQTTAsync__successData5.html#ac425dfec67b3245e95a3e415d93ba5bf',1,'MQTTAsync_successData5::properties()'],['../structAck.html#a7eff67c84b323fc798eb3282b2981069',1,'Ack::properties()'],['../structPublish.html#a99fce902e497cd379686c6d447a17be3',1,'Publish::properties()'],['../structUnsuback.html#adc48396a054907a9806fef1dd46d1055',1,'Unsuback::properties()'],['../structSuback.html#a57c418a7021b10c92aec4c4d010b7f67',1,'Suback::properties()'],['../structConnack.html#ab5d35213eadd6bbecd56627b9680ac0c',1,'Connack::properties()'],['../structMQTTClient__message.html#aa24d24d388481c0616a704cabb041f95',1,'MQTTClient_message::properties()'],['../structMQTTAsync__disconnectOptions.html#a2df711f7d216b57a584195691ac5630f',1,'MQTTAsync_disconnectOptions::properties()']]], + ['props_5frc_5fparms_378',['props_rc_parms',['../structprops__rc__parms.html',1,'']]], + ['protocol_379',['Protocol',['../structConnect.html#ab87417598de200c235ce28e8947f8804',1,'Connect']]], + ['protos_380',['protos',['../structMQTTClient__SSLOptions.html#ad3db47e7874990570d03758a3fa28dad',1,'MQTTClient_SSLOptions::protos()'],['../structMQTTAsync__SSLOptions.html#a9947024802d3fb16fc050f4741a46e04',1,'MQTTAsync_SSLOptions::protos()']]], + ['protos_5flen_381',['protos_len',['../structMQTTClient__SSLOptions.html#ac2df368c72cfaa432f90e3b657bd0883',1,'MQTTClient_SSLOptions::protos_len()'],['../structMQTTAsync__SSLOptions.html#ad9e390b02afbf856c5a9267d30f09208',1,'MQTTAsync_SSLOptions::protos_len()']]], + ['pstclear_382',['pstclear',['../MQTTPersistenceDefault_8c.html#a15b1457f7fd20dde1fd51ed434321e1a',1,'MQTTPersistenceDefault.c']]], + ['pstclose_383',['pstclose',['../MQTTPersistenceDefault_8c.html#a24f38d19ff3db61292d7b463e59174ef',1,'MQTTPersistenceDefault.c']]], + ['pstcontainskey_384',['pstcontainskey',['../MQTTPersistenceDefault_8c.html#a2a55461def3359a2b0aff6b3bb0644ad',1,'MQTTPersistenceDefault.c']]], + ['pstget_385',['pstget',['../MQTTPersistenceDefault_8c.html#a3aef9f9af29882fac9e76984e4c2954c',1,'MQTTPersistenceDefault.c']]], + ['pstkeys_386',['pstkeys',['../MQTTPersistenceDefault_8c.html#a9f358375b8e254983d00f8b057e97dd6',1,'MQTTPersistenceDefault.c']]], + ['pstmkdir_387',['pstmkdir',['../MQTTPersistenceDefault_8c.html#aecfbfa761dfca1b551d9ade325f480b1',1,'MQTTPersistenceDefault.c']]], + ['pstopen_388',['pstopen',['../MQTTPersistenceDefault_8c.html#a919cf4710a1f7d7ce0878599e9aa4700',1,'MQTTPersistenceDefault.c']]], + ['pstput_389',['pstput',['../MQTTPersistenceDefault_8c.html#a64e0c1a2fd06375b975d6643175572d8',1,'MQTTPersistenceDefault.c']]], + ['pstremove_390',['pstremove',['../MQTTPersistenceDefault_8c.html#a64b106b9a2778f97d271af7c9a7940f2',1,'MQTTPersistenceDefault.c']]], + ['ptr_391',['ptr',['../structstorageElement.html#a0d617635e796eaa92ace8cb5cd6d0925',1,'storageElement']]], + ['ptrcompare_392',['ptrCompare',['../Heap_8c.html#a45db32d4f454f94d7f4574deced5ee33',1,'Heap.c']]], + ['pub_393',['pub',['../structMQTTAsync__successData5.html#a7e75879a42ba01477a3c921487e3c564',1,'MQTTAsync_successData5::pub()'],['../structMQTTAsync__successData.html#a61d994959ff1350ab2a0986d33ecd204',1,'MQTTAsync_successData::pub()']]], + ['publications_394',['Publications',['../structPublications.html',1,'']]], + ['publish_395',['Publish',['../structPublish.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_0.html b/docs/MQTTClient_internal/html/search/classes_0.html index f7e4c14e..af8159ee 100644 --- a/docs/MQTTClient_internal/html/search/classes_0.html +++ b/docs/MQTTClient_internal/html/search/classes_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_0.js b/docs/MQTTClient_internal/html/search/classes_0.js index 10157880..5098537f 100644 --- a/docs/MQTTClient_internal/html/search/classes_0.js +++ b/docs/MQTTClient_internal/html/search/classes_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['ack_532',['Ack',['../structAck.html',1,'']]], - ['ackrequest_533',['AckRequest',['../structAckRequest.html',1,'']]] + ['ack_540',['Ack',['../structAck.html',1,'']]], + ['ackrequest_541',['AckRequest',['../structAckRequest.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_1.html b/docs/MQTTClient_internal/html/search/classes_1.html index c7ff4b31..576e9168 100644 --- a/docs/MQTTClient_internal/html/search/classes_1.html +++ b/docs/MQTTClient_internal/html/search/classes_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_1.js b/docs/MQTTClient_internal/html/search/classes_1.js index 1ccdc7fa..d9d82916 100644 --- a/docs/MQTTClient_internal/html/search/classes_1.js +++ b/docs/MQTTClient_internal/html/search/classes_1.js @@ -1,8 +1,9 @@ var searchData= [ - ['clients_534',['Clients',['../structClients.html',1,'']]], - ['clientstates_535',['ClientStates',['../structClientStates.html',1,'']]], - ['cond_5ftype_5fstruct_536',['cond_type_struct',['../structcond__type__struct.html',1,'']]], - ['connack_537',['Connack',['../structConnack.html',1,'']]], - ['connect_538',['Connect',['../structConnect.html',1,'']]] + ['clients_542',['Clients',['../structClients.html',1,'']]], + ['clientstates_543',['ClientStates',['../structClientStates.html',1,'']]], + ['cond_5ftype_5fstruct_544',['cond_type_struct',['../structcond__type__struct.html',1,'']]], + ['conlost_5fsync_5fdata_545',['conlost_sync_data',['../structconlost__sync__data.html',1,'']]], + ['connack_546',['Connack',['../structConnack.html',1,'']]], + ['connect_547',['Connect',['../structConnect.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_2.html b/docs/MQTTClient_internal/html/search/classes_2.html index 0d1e8a0c..956405e5 100644 --- a/docs/MQTTClient_internal/html/search/classes_2.html +++ b/docs/MQTTClient_internal/html/search/classes_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_2.js b/docs/MQTTClient_internal/html/search/classes_2.js index af161d46..b5fdc596 100644 --- a/docs/MQTTClient_internal/html/search/classes_2.js +++ b/docs/MQTTClient_internal/html/search/classes_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['framedata_539',['frameData',['../structframeData.html',1,'']]] + ['framedata_548',['frameData',['../structframeData.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_3.html b/docs/MQTTClient_internal/html/search/classes_3.html index 21025456..d33343bc 100644 --- a/docs/MQTTClient_internal/html/search/classes_3.html +++ b/docs/MQTTClient_internal/html/search/classes_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_3.js b/docs/MQTTClient_internal/html/search/classes_3.js index 2f97a6f7..7b047f74 100644 --- a/docs/MQTTClient_internal/html/search/classes_3.js +++ b/docs/MQTTClient_internal/html/search/classes_3.js @@ -1,5 +1,5 @@ var searchData= [ - ['header_540',['Header',['../unionHeader.html',1,'']]], - ['heap_5finfo_541',['heap_info',['../structheap__info.html',1,'']]] + ['header_549',['Header',['../unionHeader.html',1,'']]], + ['heap_5finfo_550',['heap_info',['../structheap__info.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_4.html b/docs/MQTTClient_internal/html/search/classes_4.html index 095ab595..8430b07f 100644 --- a/docs/MQTTClient_internal/html/search/classes_4.html +++ b/docs/MQTTClient_internal/html/search/classes_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_4.js b/docs/MQTTClient_internal/html/search/classes_4.js index 94919a1a..a3fc2585 100644 --- a/docs/MQTTClient_internal/html/search/classes_4.js +++ b/docs/MQTTClient_internal/html/search/classes_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['list_542',['List',['../structList.html',1,'']]], - ['listelementstruct_543',['ListElementStruct',['../structListElementStruct.html',1,'']]], - ['log_5fnamevalue_544',['Log_nameValue',['../structLog__nameValue.html',1,'']]] + ['list_551',['List',['../structList.html',1,'']]], + ['listelementstruct_552',['ListElementStruct',['../structListElementStruct.html',1,'']]], + ['log_5fnamevalue_553',['Log_nameValue',['../structLog__nameValue.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_5.html b/docs/MQTTClient_internal/html/search/classes_5.html index fc9cdc99..c2f1b767 100644 --- a/docs/MQTTClient_internal/html/search/classes_5.html +++ b/docs/MQTTClient_internal/html/search/classes_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_5.js b/docs/MQTTClient_internal/html/search/classes_5.js index 693857b9..d9b1c219 100644 --- a/docs/MQTTClient_internal/html/search/classes_5.js +++ b/docs/MQTTClient_internal/html/search/classes_5.js @@ -1,39 +1,39 @@ var searchData= [ - ['messages_545',['Messages',['../structMessages.html',1,'']]], - ['mqttasync_5fcommand_546',['MQTTAsync_command',['../structMQTTAsync__command.html',1,'']]], - ['mqttasync_5fconnectdata_547',['MQTTAsync_connectData',['../structMQTTAsync__connectData.html',1,'']]], - ['mqttasync_5fconnectoptions_548',['MQTTAsync_connectOptions',['../structMQTTAsync__connectOptions.html',1,'']]], - ['mqttasync_5fcreateoptions_549',['MQTTAsync_createOptions',['../structMQTTAsync__createOptions.html',1,'']]], - ['mqttasync_5fdisconnectoptions_550',['MQTTAsync_disconnectOptions',['../structMQTTAsync__disconnectOptions.html',1,'']]], - ['mqttasync_5ffailuredata_551',['MQTTAsync_failureData',['../structMQTTAsync__failureData.html',1,'']]], - ['mqttasync_5ffailuredata5_552',['MQTTAsync_failureData5',['../structMQTTAsync__failureData5.html',1,'']]], - ['mqttasync_5finit_5foptions_553',['MQTTAsync_init_options',['../structMQTTAsync__init__options.html',1,'']]], - ['mqttasync_5fmessage_554',['MQTTAsync_message',['../structMQTTAsync__message.html',1,'']]], - ['mqttasync_5fnamevalue_555',['MQTTAsync_nameValue',['../structMQTTAsync__nameValue.html',1,'']]], - ['mqttasync_5fqueuedcommand_556',['MQTTAsync_queuedCommand',['../structMQTTAsync__queuedCommand.html',1,'']]], - ['mqttasync_5fresponseoptions_557',['MQTTAsync_responseOptions',['../structMQTTAsync__responseOptions.html',1,'']]], - ['mqttasync_5fssloptions_558',['MQTTAsync_SSLOptions',['../structMQTTAsync__SSLOptions.html',1,'']]], - ['mqttasync_5fstruct_559',['MQTTAsync_struct',['../structMQTTAsync__struct.html',1,'']]], - ['mqttasync_5fsuccessdata_560',['MQTTAsync_successData',['../structMQTTAsync__successData.html',1,'']]], - ['mqttasync_5fsuccessdata5_561',['MQTTAsync_successData5',['../structMQTTAsync__successData5.html',1,'']]], - ['mqttasync_5fwilloptions_562',['MQTTAsync_willOptions',['../structMQTTAsync__willOptions.html',1,'']]], - ['mqttclient_5fconnectoptions_563',['MQTTClient_connectOptions',['../structMQTTClient__connectOptions.html',1,'']]], - ['mqttclient_5fcreateoptions_564',['MQTTClient_createOptions',['../structMQTTClient__createOptions.html',1,'']]], - ['mqttclient_5finit_5foptions_565',['MQTTClient_init_options',['../structMQTTClient__init__options.html',1,'']]], - ['mqttclient_5fmessage_566',['MQTTClient_message',['../structMQTTClient__message.html',1,'']]], - ['mqttclient_5fnamevalue_567',['MQTTClient_nameValue',['../structMQTTClient__nameValue.html',1,'']]], - ['mqttclient_5fpersistence_568',['MQTTClient_persistence',['../structMQTTClient__persistence.html',1,'']]], - ['mqttclient_5fssloptions_569',['MQTTClient_SSLOptions',['../structMQTTClient__SSLOptions.html',1,'']]], - ['mqttclient_5fwilloptions_570',['MQTTClient_willOptions',['../structMQTTClient__willOptions.html',1,'']]], - ['mqttclients_571',['MQTTClients',['../structMQTTClients.html',1,'']]], - ['mqttlenstring_572',['MQTTLenString',['../structMQTTLenString.html',1,'']]], - ['mqttpacket_573',['MQTTPacket',['../structMQTTPacket.html',1,'']]], - ['mqttpersistence_5fmessage_574',['MQTTPersistence_message',['../structMQTTPersistence__message.html',1,'']]], - ['mqttpersistence_5fqentry_575',['MQTTPersistence_qEntry',['../structMQTTPersistence__qEntry.html',1,'']]], - ['mqttproperties_576',['MQTTProperties',['../structMQTTProperties.html',1,'']]], - ['mqttproperty_577',['MQTTProperty',['../structMQTTProperty.html',1,'']]], - ['mqttprotocol_578',['MQTTProtocol',['../structMQTTProtocol.html',1,'']]], - ['mqttresponse_579',['MQTTResponse',['../structMQTTResponse.html',1,'']]], - ['mqttsubscribe_5foptions_580',['MQTTSubscribe_options',['../structMQTTSubscribe__options.html',1,'']]] + ['messages_554',['Messages',['../structMessages.html',1,'']]], + ['mqttasync_5fcommand_555',['MQTTAsync_command',['../structMQTTAsync__command.html',1,'']]], + ['mqttasync_5fconnectdata_556',['MQTTAsync_connectData',['../structMQTTAsync__connectData.html',1,'']]], + ['mqttasync_5fconnectoptions_557',['MQTTAsync_connectOptions',['../structMQTTAsync__connectOptions.html',1,'']]], + ['mqttasync_5fcreateoptions_558',['MQTTAsync_createOptions',['../structMQTTAsync__createOptions.html',1,'']]], + ['mqttasync_5fdisconnectoptions_559',['MQTTAsync_disconnectOptions',['../structMQTTAsync__disconnectOptions.html',1,'']]], + ['mqttasync_5ffailuredata_560',['MQTTAsync_failureData',['../structMQTTAsync__failureData.html',1,'']]], + ['mqttasync_5ffailuredata5_561',['MQTTAsync_failureData5',['../structMQTTAsync__failureData5.html',1,'']]], + ['mqttasync_5finit_5foptions_562',['MQTTAsync_init_options',['../structMQTTAsync__init__options.html',1,'']]], + ['mqttasync_5fmessage_563',['MQTTAsync_message',['../structMQTTAsync__message.html',1,'']]], + ['mqttasync_5fnamevalue_564',['MQTTAsync_nameValue',['../structMQTTAsync__nameValue.html',1,'']]], + ['mqttasync_5fqueuedcommand_565',['MQTTAsync_queuedCommand',['../structMQTTAsync__queuedCommand.html',1,'']]], + ['mqttasync_5fresponseoptions_566',['MQTTAsync_responseOptions',['../structMQTTAsync__responseOptions.html',1,'']]], + ['mqttasync_5fssloptions_567',['MQTTAsync_SSLOptions',['../structMQTTAsync__SSLOptions.html',1,'']]], + ['mqttasync_5fstruct_568',['MQTTAsync_struct',['../structMQTTAsync__struct.html',1,'']]], + ['mqttasync_5fsuccessdata_569',['MQTTAsync_successData',['../structMQTTAsync__successData.html',1,'']]], + ['mqttasync_5fsuccessdata5_570',['MQTTAsync_successData5',['../structMQTTAsync__successData5.html',1,'']]], + ['mqttasync_5fwilloptions_571',['MQTTAsync_willOptions',['../structMQTTAsync__willOptions.html',1,'']]], + ['mqttclient_5fconnectoptions_572',['MQTTClient_connectOptions',['../structMQTTClient__connectOptions.html',1,'']]], + ['mqttclient_5fcreateoptions_573',['MQTTClient_createOptions',['../structMQTTClient__createOptions.html',1,'']]], + ['mqttclient_5finit_5foptions_574',['MQTTClient_init_options',['../structMQTTClient__init__options.html',1,'']]], + ['mqttclient_5fmessage_575',['MQTTClient_message',['../structMQTTClient__message.html',1,'']]], + ['mqttclient_5fnamevalue_576',['MQTTClient_nameValue',['../structMQTTClient__nameValue.html',1,'']]], + ['mqttclient_5fpersistence_577',['MQTTClient_persistence',['../structMQTTClient__persistence.html',1,'']]], + ['mqttclient_5fssloptions_578',['MQTTClient_SSLOptions',['../structMQTTClient__SSLOptions.html',1,'']]], + ['mqttclient_5fwilloptions_579',['MQTTClient_willOptions',['../structMQTTClient__willOptions.html',1,'']]], + ['mqttclients_580',['MQTTClients',['../structMQTTClients.html',1,'']]], + ['mqttlenstring_581',['MQTTLenString',['../structMQTTLenString.html',1,'']]], + ['mqttpacket_582',['MQTTPacket',['../structMQTTPacket.html',1,'']]], + ['mqttpersistence_5fmessage_583',['MQTTPersistence_message',['../structMQTTPersistence__message.html',1,'']]], + ['mqttpersistence_5fqentry_584',['MQTTPersistence_qEntry',['../structMQTTPersistence__qEntry.html',1,'']]], + ['mqttproperties_585',['MQTTProperties',['../structMQTTProperties.html',1,'']]], + ['mqttproperty_586',['MQTTProperty',['../structMQTTProperty.html',1,'']]], + ['mqttprotocol_587',['MQTTProtocol',['../structMQTTProtocol.html',1,'']]], + ['mqttresponse_588',['MQTTResponse',['../structMQTTResponse.html',1,'']]], + ['mqttsubscribe_5foptions_589',['MQTTSubscribe_options',['../structMQTTSubscribe__options.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_6.html b/docs/MQTTClient_internal/html/search/classes_6.html index 1ecfdddf..e39847ce 100644 --- a/docs/MQTTClient_internal/html/search/classes_6.html +++ b/docs/MQTTClient_internal/html/search/classes_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_6.js b/docs/MQTTClient_internal/html/search/classes_6.js index 7e5158df..182ca3d4 100644 --- a/docs/MQTTClient_internal/html/search/classes_6.js +++ b/docs/MQTTClient_internal/html/search/classes_6.js @@ -1,6 +1,6 @@ var searchData= [ - ['nametotype_581',['nameToType',['../structnameToType.html',1,'']]], - ['networkhandles_582',['networkHandles',['../structnetworkHandles.html',1,'']]], - ['nodestruct_583',['NodeStruct',['../structNodeStruct.html',1,'']]] + ['nametotype_590',['nameToType',['../structnameToType.html',1,'']]], + ['networkhandles_591',['networkHandles',['../structnetworkHandles.html',1,'']]], + ['nodestruct_592',['NodeStruct',['../structNodeStruct.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_7.html b/docs/MQTTClient_internal/html/search/classes_7.html index 0fc6fc3e..a2c4d1a3 100644 --- a/docs/MQTTClient_internal/html/search/classes_7.html +++ b/docs/MQTTClient_internal/html/search/classes_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_7.js b/docs/MQTTClient_internal/html/search/classes_7.js index c9afed0e..74c7a7d4 100644 --- a/docs/MQTTClient_internal/html/search/classes_7.js +++ b/docs/MQTTClient_internal/html/search/classes_7.js @@ -1,9 +1,9 @@ var searchData= [ - ['packetbuffers_584',['PacketBuffers',['../structPacketBuffers.html',1,'']]], - ['pending_5fwrite_585',['pending_write',['../structpending__write.html',1,'']]], - ['pending_5fwrites_586',['pending_writes',['../structpending__writes.html',1,'']]], - ['props_5frc_5fparms_587',['props_rc_parms',['../structprops__rc__parms.html',1,'']]], - ['publications_588',['Publications',['../structPublications.html',1,'']]], - ['publish_589',['Publish',['../structPublish.html',1,'']]] + ['packetbuffers_593',['PacketBuffers',['../structPacketBuffers.html',1,'']]], + ['pending_5fwrite_594',['pending_write',['../structpending__write.html',1,'']]], + ['pending_5fwrites_595',['pending_writes',['../structpending__writes.html',1,'']]], + ['props_5frc_5fparms_596',['props_rc_parms',['../structprops__rc__parms.html',1,'']]], + ['publications_597',['Publications',['../structPublications.html',1,'']]], + ['publish_598',['Publish',['../structPublish.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_8.html b/docs/MQTTClient_internal/html/search/classes_8.html index ac8af7dc..17003e48 100644 --- a/docs/MQTTClient_internal/html/search/classes_8.html +++ b/docs/MQTTClient_internal/html/search/classes_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_8.js b/docs/MQTTClient_internal/html/search/classes_8.js index 22950857..11224f0f 100644 --- a/docs/MQTTClient_internal/html/search/classes_8.js +++ b/docs/MQTTClient_internal/html/search/classes_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['qentry_590',['qEntry',['../structqEntry.html',1,'']]] + ['qentry_599',['qEntry',['../structqEntry.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_9.html b/docs/MQTTClient_internal/html/search/classes_9.html index 86cad046..b8afa8cb 100644 --- a/docs/MQTTClient_internal/html/search/classes_9.html +++ b/docs/MQTTClient_internal/html/search/classes_9.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_9.js b/docs/MQTTClient_internal/html/search/classes_9.js index dc10b779..f01e8cc4 100644 --- a/docs/MQTTClient_internal/html/search/classes_9.js +++ b/docs/MQTTClient_internal/html/search/classes_9.js @@ -1,9 +1,9 @@ var searchData= [ - ['sha_5fctx_5fs_591',['SHA_CTX_S',['../structSHA__CTX__S.html',1,'']]], - ['socket_5fqueue_592',['socket_queue',['../structsocket__queue.html',1,'']]], - ['sockets_593',['Sockets',['../structSockets.html',1,'']]], - ['stackentry_594',['stackEntry',['../structstackEntry.html',1,'']]], - ['storageelement_595',['storageElement',['../structstorageElement.html',1,'']]], - ['suback_596',['Suback',['../structSuback.html',1,'']]] + ['sha_5fctx_5fs_600',['SHA_CTX_S',['../structSHA__CTX__S.html',1,'']]], + ['socket_5fqueue_601',['socket_queue',['../structsocket__queue.html',1,'']]], + ['sockets_602',['Sockets',['../structSockets.html',1,'']]], + ['stackentry_603',['stackEntry',['../structstackEntry.html',1,'']]], + ['storageelement_604',['storageElement',['../structstorageElement.html',1,'']]], + ['suback_605',['Suback',['../structSuback.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_a.html b/docs/MQTTClient_internal/html/search/classes_a.html index 4201e97e..6788af27 100644 --- a/docs/MQTTClient_internal/html/search/classes_a.html +++ b/docs/MQTTClient_internal/html/search/classes_a.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_a.js b/docs/MQTTClient_internal/html/search/classes_a.js index 0d9c602e..40df35fd 100644 --- a/docs/MQTTClient_internal/html/search/classes_a.js +++ b/docs/MQTTClient_internal/html/search/classes_a.js @@ -1,7 +1,7 @@ var searchData= [ - ['threadentry_597',['threadEntry',['../structthreadEntry.html',1,'']]], - ['trace_5fsettings_5ftype_598',['trace_settings_type',['../structtrace__settings__type.html',1,'']]], - ['traceentry_599',['traceEntry',['../structtraceEntry.html',1,'']]], - ['tree_600',['Tree',['../structTree.html',1,'']]] + ['threadentry_606',['threadEntry',['../structthreadEntry.html',1,'']]], + ['trace_5fsettings_5ftype_607',['trace_settings_type',['../structtrace__settings__type.html',1,'']]], + ['traceentry_608',['traceEntry',['../structtraceEntry.html',1,'']]], + ['tree_609',['Tree',['../structTree.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_b.html b/docs/MQTTClient_internal/html/search/classes_b.html index f88a5780..3fcb4985 100644 --- a/docs/MQTTClient_internal/html/search/classes_b.html +++ b/docs/MQTTClient_internal/html/search/classes_b.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_b.js b/docs/MQTTClient_internal/html/search/classes_b.js index d3e666e0..d7e8b46d 100644 --- a/docs/MQTTClient_internal/html/search/classes_b.js +++ b/docs/MQTTClient_internal/html/search/classes_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['unsuback_601',['Unsuback',['../structUnsuback.html',1,'']]] + ['unsuback_610',['Unsuback',['../structUnsuback.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_c.html b/docs/MQTTClient_internal/html/search/classes_c.html index fa0cf4d6..2f7b1f3d 100644 --- a/docs/MQTTClient_internal/html/search/classes_c.html +++ b/docs/MQTTClient_internal/html/search/classes_c.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/classes_c.js b/docs/MQTTClient_internal/html/search/classes_c.js index 610dce4f..2e5cb086 100644 --- a/docs/MQTTClient_internal/html/search/classes_c.js +++ b/docs/MQTTClient_internal/html/search/classes_c.js @@ -1,5 +1,5 @@ var searchData= [ - ['willmessages_602',['willMessages',['../structwillMessages.html',1,'']]], - ['ws_5fframe_603',['ws_frame',['../structws__frame.html',1,'']]] + ['willmessages_611',['willMessages',['../structwillMessages.html',1,'']]], + ['ws_5fframe_612',['ws_frame',['../structws__frame.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/close.png b/docs/MQTTClient_internal/html/search/close.png deleted file mode 100644 index 9342d3df..00000000 Binary files a/docs/MQTTClient_internal/html/search/close.png and /dev/null differ diff --git a/docs/MQTTClient_internal/html/search/close.svg b/docs/MQTTClient_internal/html/search/close.svg new file mode 100644 index 00000000..a933eea1 --- /dev/null +++ b/docs/MQTTClient_internal/html/search/close.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/docs/MQTTClient_internal/html/search/defines_0.html b/docs/MQTTClient_internal/html/search/defines_0.html index 2deb369f..15cc3de3 100644 --- a/docs/MQTTClient_internal/html/search/defines_0.html +++ b/docs/MQTTClient_internal/html/search/defines_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/defines_0.js b/docs/MQTTClient_internal/html/search/defines_0.js index f27d0a75..d65c7b6b 100644 --- a/docs/MQTTClient_internal/html/search/defines_0.js +++ b/docs/MQTTClient_internal/html/search/defines_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5funlink_1058',['_unlink',['../Log_8c.html#a411530253569ea29a964f13204da8848',1,'Log.c']]] + ['_5funlink_1070',['_unlink',['../Log_8c.html#a411530253569ea29a964f13204da8848',1,'Log.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/defines_1.html b/docs/MQTTClient_internal/html/search/defines_1.html index e0d0b6d3..c49009c7 100644 --- a/docs/MQTTClient_internal/html/search/defines_1.html +++ b/docs/MQTTClient_internal/html/search/defines_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/defines_1.js b/docs/MQTTClient_internal/html/search/defines_1.js index ecbf4b29..9e8e2623 100644 --- a/docs/MQTTClient_internal/html/search/defines_1.js +++ b/docs/MQTTClient_internal/html/search/defines_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['array_5fsize_1059',['ARRAY_SIZE',['../utf-8_8c.html#a25f003de16c08a4888b69f619d70f427',1,'utf-8.c']]] + ['array_5fsize_1071',['ARRAY_SIZE',['../utf-8_8c.html#a25f003de16c08a4888b69f619d70f427',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/defines_2.html b/docs/MQTTClient_internal/html/search/defines_2.html index 707f942a..c5510111 100644 --- a/docs/MQTTClient_internal/html/search/defines_2.html +++ b/docs/MQTTClient_internal/html/search/defines_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/defines_2.js b/docs/MQTTClient_internal/html/search/defines_2.js index c30a9f77..c7cbc108 100644 --- a/docs/MQTTClient_internal/html/search/defines_2.js +++ b/docs/MQTTClient_internal/html/search/defines_2.js @@ -1,7 +1,7 @@ var searchData= [ - ['mqttclient_5fpersistence_5fdefault_1060',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../MQTTClientPersistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5ferror_1061',['MQTTCLIENT_PERSISTENCE_ERROR',['../MQTTClientPersistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fnone_1062',['MQTTCLIENT_PERSISTENCE_NONE',['../MQTTClientPersistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fuser_1063',['MQTTCLIENT_PERSISTENCE_USER',['../MQTTClientPersistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]] + ['mqttclient_5fpersistence_5fdefault_1072',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../MQTTClientPersistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5ferror_1073',['MQTTCLIENT_PERSISTENCE_ERROR',['../MQTTClientPersistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fnone_1074',['MQTTCLIENT_PERSISTENCE_NONE',['../MQTTClientPersistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fuser_1075',['MQTTCLIENT_PERSISTENCE_USER',['../MQTTClientPersistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]] ]; diff --git a/docs/MQTTClient_internal/html/search/defines_3.html b/docs/MQTTClient_internal/html/search/defines_3.html new file mode 100644 index 00000000..8c6d2153 --- /dev/null +++ b/docs/MQTTClient_internal/html/search/defines_3.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
        +
        Loading...
        +
        + +
        Searching...
        +
        No Matches
        + +
        + + diff --git a/docs/MQTTClient_internal/html/search/defines_3.js b/docs/MQTTClient_internal/html/search/defines_3.js new file mode 100644 index 00000000..9c46707e --- /dev/null +++ b/docs/MQTTClient_internal/html/search/defines_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['prieyecatcher_1076',['PRIeyecatcher',['../Heap_8c.html#a8ee400b3ef078dd6b8075360a3b656a8',1,'Heap.c']]] +]; diff --git a/docs/MQTTClient_internal/html/search/files_0.html b/docs/MQTTClient_internal/html/search/files_0.html index 737608e1..9498842a 100644 --- a/docs/MQTTClient_internal/html/search/files_0.html +++ b/docs/MQTTClient_internal/html/search/files_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/files_0.js b/docs/MQTTClient_internal/html/search/files_0.js index b7792bee..31590286 100644 --- a/docs/MQTTClient_internal/html/search/files_0.js +++ b/docs/MQTTClient_internal/html/search/files_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['clients_2ec_604',['Clients.c',['../Clients_8c.html',1,'']]] + ['clients_2ec_613',['Clients.c',['../Clients_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_1.html b/docs/MQTTClient_internal/html/search/files_1.html index f27a62de..7050ef48 100644 --- a/docs/MQTTClient_internal/html/search/files_1.html +++ b/docs/MQTTClient_internal/html/search/files_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/files_1.js b/docs/MQTTClient_internal/html/search/files_1.js index d7cdf759..5249efc5 100644 --- a/docs/MQTTClient_internal/html/search/files_1.js +++ b/docs/MQTTClient_internal/html/search/files_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['heap_2ec_605',['Heap.c',['../Heap_8c.html',1,'']]] + ['heap_2ec_614',['Heap.c',['../Heap_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_2.html b/docs/MQTTClient_internal/html/search/files_2.html index a45066e9..497cdf5c 100644 --- a/docs/MQTTClient_internal/html/search/files_2.html +++ b/docs/MQTTClient_internal/html/search/files_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/files_2.js b/docs/MQTTClient_internal/html/search/files_2.js index 72a08115..ae85be9c 100644 --- a/docs/MQTTClient_internal/html/search/files_2.js +++ b/docs/MQTTClient_internal/html/search/files_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['linkedlist_2ec_606',['LinkedList.c',['../LinkedList_8c.html',1,'']]], - ['log_2ec_607',['Log.c',['../Log_8c.html',1,'']]] + ['linkedlist_2ec_615',['LinkedList.c',['../LinkedList_8c.html',1,'']]], + ['log_2ec_616',['Log.c',['../Log_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_3.html b/docs/MQTTClient_internal/html/search/files_3.html index 1076bc5a..1ba106b2 100644 --- a/docs/MQTTClient_internal/html/search/files_3.html +++ b/docs/MQTTClient_internal/html/search/files_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/files_3.js b/docs/MQTTClient_internal/html/search/files_3.js index fb1e55ff..ce89af49 100644 --- a/docs/MQTTClient_internal/html/search/files_3.js +++ b/docs/MQTTClient_internal/html/search/files_3.js @@ -1,13 +1,13 @@ var searchData= [ - ['messages_2ec_608',['Messages.c',['../Messages_8c.html',1,'']]], - ['mqttclient_2ec_609',['MQTTClient.c',['../MQTTClient_8c.html',1,'']]], - ['mqttclientpersistence_2eh_610',['MQTTClientPersistence.h',['../MQTTClientPersistence_8h.html',1,'']]], - ['mqttpacket_2ec_611',['MQTTPacket.c',['../MQTTPacket_8c.html',1,'']]], - ['mqttpacketout_2ec_612',['MQTTPacketOut.c',['../MQTTPacketOut_8c.html',1,'']]], - ['mqttpersistence_2ec_613',['MQTTPersistence.c',['../MQTTPersistence_8c.html',1,'']]], - ['mqttpersistencedefault_2ec_614',['MQTTPersistenceDefault.c',['../MQTTPersistenceDefault_8c.html',1,'']]], - ['mqttprotocolclient_2ec_615',['MQTTProtocolClient.c',['../MQTTProtocolClient_8c.html',1,'']]], - ['mqttprotocolout_2ec_616',['MQTTProtocolOut.c',['../MQTTProtocolOut_8c.html',1,'']]], - ['mqttversion_2ec_617',['MQTTVersion.c',['../MQTTVersion_8c.html',1,'']]] + ['messages_2ec_617',['Messages.c',['../Messages_8c.html',1,'']]], + ['mqttclient_2ec_618',['MQTTClient.c',['../MQTTClient_8c.html',1,'']]], + ['mqttclientpersistence_2eh_619',['MQTTClientPersistence.h',['../MQTTClientPersistence_8h.html',1,'']]], + ['mqttpacket_2ec_620',['MQTTPacket.c',['../MQTTPacket_8c.html',1,'']]], + ['mqttpacketout_2ec_621',['MQTTPacketOut.c',['../MQTTPacketOut_8c.html',1,'']]], + ['mqttpersistence_2ec_622',['MQTTPersistence.c',['../MQTTPersistence_8c.html',1,'']]], + ['mqttpersistencedefault_2ec_623',['MQTTPersistenceDefault.c',['../MQTTPersistenceDefault_8c.html',1,'']]], + ['mqttprotocolclient_2ec_624',['MQTTProtocolClient.c',['../MQTTProtocolClient_8c.html',1,'']]], + ['mqttprotocolout_2ec_625',['MQTTProtocolOut.c',['../MQTTProtocolOut_8c.html',1,'']]], + ['mqttversion_2ec_626',['MQTTVersion.c',['../MQTTVersion_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_4.html b/docs/MQTTClient_internal/html/search/files_4.html index e5cd7f43..753b7b10 100644 --- a/docs/MQTTClient_internal/html/search/files_4.html +++ b/docs/MQTTClient_internal/html/search/files_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/files_4.js b/docs/MQTTClient_internal/html/search/files_4.js index 69f6ad95..abcd05f7 100644 --- a/docs/MQTTClient_internal/html/search/files_4.js +++ b/docs/MQTTClient_internal/html/search/files_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['socket_2ec_618',['Socket.c',['../Socket_8c.html',1,'']]], - ['socketbuffer_2ec_619',['SocketBuffer.c',['../SocketBuffer_8c.html',1,'']]], - ['sslsocket_2ec_620',['SSLSocket.c',['../SSLSocket_8c.html',1,'']]] + ['socket_2ec_627',['Socket.c',['../Socket_8c.html',1,'']]], + ['socketbuffer_2ec_628',['SocketBuffer.c',['../SocketBuffer_8c.html',1,'']]], + ['sslsocket_2ec_629',['SSLSocket.c',['../SSLSocket_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_5.html b/docs/MQTTClient_internal/html/search/files_5.html index 2cc480f2..7b6affd7 100644 --- a/docs/MQTTClient_internal/html/search/files_5.html +++ b/docs/MQTTClient_internal/html/search/files_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/files_5.js b/docs/MQTTClient_internal/html/search/files_5.js index 7272ac1d..a59d39b8 100644 --- a/docs/MQTTClient_internal/html/search/files_5.js +++ b/docs/MQTTClient_internal/html/search/files_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['thread_2ec_621',['Thread.c',['../Thread_8c.html',1,'']]], - ['tree_2ec_622',['Tree.c',['../Tree_8c.html',1,'']]] + ['thread_2ec_630',['Thread.c',['../Thread_8c.html',1,'']]], + ['tree_2ec_631',['Tree.c',['../Tree_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_6.html b/docs/MQTTClient_internal/html/search/files_6.html index 6510245f..802ebf71 100644 --- a/docs/MQTTClient_internal/html/search/files_6.html +++ b/docs/MQTTClient_internal/html/search/files_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/files_6.js b/docs/MQTTClient_internal/html/search/files_6.js index 9cd60b18..0db0d8fd 100644 --- a/docs/MQTTClient_internal/html/search/files_6.js +++ b/docs/MQTTClient_internal/html/search/files_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['utf_2d8_2ec_623',['utf-8.c',['../utf-8_8c.html',1,'']]] + ['utf_2d8_2ec_632',['utf-8.c',['../utf-8_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_0.html b/docs/MQTTClient_internal/html/search/functions_0.html index e17c7111..eb4c5014 100644 --- a/docs/MQTTClient_internal/html/search/functions_0.html +++ b/docs/MQTTClient_internal/html/search/functions_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_0.js b/docs/MQTTClient_internal/html/search/functions_0.js index 3db4e28b..1841cee5 100644 --- a/docs/MQTTClient_internal/html/search/functions_0.js +++ b/docs/MQTTClient_internal/html/search/functions_0.js @@ -1,8 +1,8 @@ var searchData= [ - ['call_5fdisconnected_624',['call_disconnected',['../MQTTClient_8c.html#adbcf69dbaf0a0dcbcc87d23f99e73fca',1,'MQTTClient.c']]], - ['clientidcompare_625',['clientIDCompare',['../Clients_8c.html#a961b1c46020c65b7ffd662500d1c849d',1,'Clients.c']]], - ['clientsockcompare_626',['clientSockCompare',['../MQTTClient_8c.html#ac35494adea1f11d3480b50b8a7f0c17d',1,'MQTTClient.c']]], - ['clientsocketcompare_627',['clientSocketCompare',['../Clients_8c.html#a82dc4e265fecdaea2810ccdeab0abf52',1,'Clients.c']]], - ['connectionlost_5fcall_628',['connectionLost_call',['../MQTTClient_8c.html#a0c0d8194bf8a449928881cf83276728e',1,'MQTTClient.c']]] + ['call_5fdisconnected_633',['call_disconnected',['../MQTTClient_8c.html#adbcf69dbaf0a0dcbcc87d23f99e73fca',1,'MQTTClient.c']]], + ['clientidcompare_634',['clientIDCompare',['../Clients_8c.html#a961b1c46020c65b7ffd662500d1c849d',1,'Clients.c']]], + ['clientsockcompare_635',['clientSockCompare',['../MQTTClient_8c.html#ac35494adea1f11d3480b50b8a7f0c17d',1,'MQTTClient.c']]], + ['clientsocketcompare_636',['clientSocketCompare',['../Clients_8c.html#a82dc4e265fecdaea2810ccdeab0abf52',1,'Clients.c']]], + ['connectionlost_5fcall_637',['connectionLost_call',['../MQTTClient_8c.html#a0c0d8194bf8a449928881cf83276728e',1,'MQTTClient.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_1.html b/docs/MQTTClient_internal/html/search/functions_1.html index 0ddac0a4..ef4088b8 100644 --- a/docs/MQTTClient_internal/html/search/functions_1.html +++ b/docs/MQTTClient_internal/html/search/functions_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_1.js b/docs/MQTTClient_internal/html/search/functions_1.js index 7972a1ad..95eaec1f 100644 --- a/docs/MQTTClient_internal/html/search/functions_1.js +++ b/docs/MQTTClient_internal/html/search/functions_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['findstring_629',['FindString',['../MQTTVersion_8c.html#a60231c316988ddb6d3ecf20a3195fe8d',1,'MQTTVersion.c']]] + ['findstring_638',['FindString',['../MQTTVersion_8c.html#a60231c316988ddb6d3ecf20a3195fe8d',1,'MQTTVersion.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_2.html b/docs/MQTTClient_internal/html/search/functions_2.html index 2737c5ac..ca5aa10e 100644 --- a/docs/MQTTClient_internal/html/search/functions_2.html +++ b/docs/MQTTClient_internal/html/search/functions_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_2.js b/docs/MQTTClient_internal/html/search/functions_2.js index 6c3d58d7..76210d5a 100644 --- a/docs/MQTTClient_internal/html/search/functions_2.js +++ b/docs/MQTTClient_internal/html/search/functions_2.js @@ -1,12 +1,12 @@ var searchData= [ - ['heap_5ffinditem_630',['Heap_findItem',['../Heap_8c.html#a0f10ff94faca02a6f81953c889802954',1,'Heap.c']]], - ['heap_5fget_5finfo_631',['Heap_get_info',['../Heap_8c.html#a20faecf28cdd9d2fbf7d975c5b0863ef',1,'Heap.c']]], - ['heap_5finitialize_632',['Heap_initialize',['../Heap_8c.html#a7fb8bd5f7469fc9c1e48c3a1f17de88a',1,'Heap.c']]], - ['heap_5froundup_633',['Heap_roundup',['../Heap_8c.html#ae75b06db0cdfce5c281f8672e8577854',1,'Heap.c']]], - ['heap_5fterminate_634',['Heap_terminate',['../Heap_8c.html#a669dfefa789daec52dd8ddc03ff1f9f9',1,'Heap.c']]], - ['heap_5funlink_635',['Heap_unlink',['../Heap_8c.html#a5f453bffe39551109e282c904a6f2902',1,'Heap.c']]], - ['heapdump_636',['HeapDump',['../Heap_8c.html#aea7ea58998f69f14e16a3237c1d02d8a',1,'Heap.c']]], - ['heapdumpstring_637',['HeapDumpString',['../Heap_8c.html#a6cdadd76da21b7269cf5d9fc92dedb68',1,'Heap.c']]], - ['heapscan_638',['HeapScan',['../Heap_8c.html#aafff91620a02cc5f8160ee55dc1d7bf4',1,'Heap.c']]] + ['heap_5ffinditem_639',['Heap_findItem',['../Heap_8c.html#a0f10ff94faca02a6f81953c889802954',1,'Heap.c']]], + ['heap_5fget_5finfo_640',['Heap_get_info',['../Heap_8c.html#a20faecf28cdd9d2fbf7d975c5b0863ef',1,'Heap.c']]], + ['heap_5finitialize_641',['Heap_initialize',['../Heap_8c.html#a7fb8bd5f7469fc9c1e48c3a1f17de88a',1,'Heap.c']]], + ['heap_5froundup_642',['Heap_roundup',['../Heap_8c.html#ae75b06db0cdfce5c281f8672e8577854',1,'Heap.c']]], + ['heap_5fterminate_643',['Heap_terminate',['../Heap_8c.html#a669dfefa789daec52dd8ddc03ff1f9f9',1,'Heap.c']]], + ['heap_5funlink_644',['Heap_unlink',['../Heap_8c.html#a5f453bffe39551109e282c904a6f2902',1,'Heap.c']]], + ['heapdump_645',['HeapDump',['../Heap_8c.html#aea7ea58998f69f14e16a3237c1d02d8a',1,'Heap.c']]], + ['heapdumpstring_646',['HeapDumpString',['../Heap_8c.html#a6cdadd76da21b7269cf5d9fc92dedb68',1,'Heap.c']]], + ['heapscan_647',['HeapScan',['../Heap_8c.html#aafff91620a02cc5f8160ee55dc1d7bf4',1,'Heap.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_3.html b/docs/MQTTClient_internal/html/search/functions_3.html index 6da86e7d..d79f55b8 100644 --- a/docs/MQTTClient_internal/html/search/functions_3.html +++ b/docs/MQTTClient_internal/html/search/functions_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_3.js b/docs/MQTTClient_internal/html/search/functions_3.js index 73f4ca09..8393675b 100644 --- a/docs/MQTTClient_internal/html/search/functions_3.js +++ b/docs/MQTTClient_internal/html/search/functions_3.js @@ -1,6 +1,6 @@ var searchData= [ - ['intcompare_639',['intcompare',['../LinkedList_8c.html#a1738915a6d6f10022e9ee1481c0ae452',1,'LinkedList.c']]], - ['internal_5fheap_5funlink_640',['Internal_heap_unlink',['../Heap_8c.html#ac23c370399a3c7b9aa9fa9d0672be122',1,'Heap.c']]], - ['isready_641',['isReady',['../Socket_8c.html#a42a217310f6f55473525764038ac367d',1,'Socket.c']]] + ['intcompare_648',['intcompare',['../LinkedList_8c.html#a1738915a6d6f10022e9ee1481c0ae452',1,'LinkedList.c']]], + ['internal_5fheap_5funlink_649',['Internal_heap_unlink',['../Heap_8c.html#ac23c370399a3c7b9aa9fa9d0672be122',1,'Heap.c']]], + ['isready_650',['isReady',['../Socket_8c.html#a42a217310f6f55473525764038ac367d',1,'Socket.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_4.html b/docs/MQTTClient_internal/html/search/functions_4.html index 911304e6..1657cad0 100644 --- a/docs/MQTTClient_internal/html/search/functions_4.html +++ b/docs/MQTTClient_internal/html/search/functions_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_4.js b/docs/MQTTClient_internal/html/search/functions_4.js index a33a3ff8..8d80dd46 100644 --- a/docs/MQTTClient_internal/html/search/functions_4.js +++ b/docs/MQTTClient_internal/html/search/functions_4.js @@ -1,25 +1,25 @@ var searchData= [ - ['listappend_642',['ListAppend',['../LinkedList_8c.html#abc7a28449893dfa775c2f709349968b4',1,'LinkedList.c']]], - ['listappendnomalloc_643',['ListAppendNoMalloc',['../LinkedList_8c.html#a321a3598d6979c7af3f995b77ea2cec3',1,'LinkedList.c']]], - ['listdetach_644',['ListDetach',['../LinkedList_8c.html#ab2bcc1897abf1d98490ea81c474dba52',1,'LinkedList.c']]], - ['listdetachhead_645',['ListDetachHead',['../LinkedList_8c.html#ab0f3597d344e09ad6636c8bc72029337',1,'LinkedList.c']]], - ['listdetachitem_646',['ListDetachItem',['../LinkedList_8c.html#a9ed745f7ba486d16d009e86433fece7b',1,'LinkedList.c']]], - ['listempty_647',['ListEmpty',['../LinkedList_8c.html#a3cf8578dba23f97dd0411e85fe3b7ff2',1,'LinkedList.c']]], - ['listfind_648',['ListFind',['../LinkedList_8c.html#ad2879a10b723fb7c1f95c0ad0abdbc50',1,'LinkedList.c']]], - ['listfinditem_649',['ListFindItem',['../LinkedList_8c.html#acad319e9ce896ff1fff30ddbeb06d22d',1,'LinkedList.c']]], - ['listfree_650',['ListFree',['../LinkedList_8c.html#a276950531b3f54e0dda27d597572c192',1,'LinkedList.c']]], - ['listfreenocontent_651',['ListFreeNoContent',['../LinkedList_8c.html#a8b3e61bc873a90ad2ea43a15e6c001f4',1,'LinkedList.c']]], - ['listinitialize_652',['ListInitialize',['../LinkedList_8c.html#a27e2cccab9752618ead91eafbe2a9a46',1,'LinkedList.c']]], - ['listinsert_653',['ListInsert',['../LinkedList_8c.html#aabca387fa4b86475bc9e4da40c3977fc',1,'LinkedList.c']]], - ['listnextelement_654',['ListNextElement',['../LinkedList_8c.html#a7c6fba7f4b569c69829676bed2852ee9',1,'LinkedList.c']]], - ['listpoptail_655',['ListPopTail',['../LinkedList_8c.html#a84b0ad14e7cebcd7b9ebab89a8d48321',1,'LinkedList.c']]], - ['listprevelement_656',['ListPrevElement',['../LinkedList_8c.html#a371f4a5021e6aa639bab6ab1457fc1d2',1,'LinkedList.c']]], - ['listremove_657',['ListRemove',['../LinkedList_8c.html#a8430370b2b15c56ec95bb8e7e36753a5',1,'LinkedList.c']]], - ['listremovehead_658',['ListRemoveHead',['../LinkedList_8c.html#a5ee7cd1d29fd9299231d40c011174fcd',1,'LinkedList.c']]], - ['listremoveitem_659',['ListRemoveItem',['../LinkedList_8c.html#a4bb7c34fe9a5832d65f530091e0fad0d',1,'LinkedList.c']]], - ['listunlink_660',['ListUnlink',['../LinkedList_8c.html#ab82181e0c1d96954f82dee67cee41296',1,'LinkedList.c']]], - ['listzero_661',['ListZero',['../LinkedList_8c.html#aa254fb1eab8e30d0e03859b333dc22ed',1,'LinkedList.c']]], - ['log_662',['Log',['../Log_8c.html#a669722e3f57811871f97c12392aba85d',1,'Log.c']]], - ['log_5fstacktrace_663',['Log_stackTrace',['../Log_8c.html#aeb93e137086d574a96548cecca9e9217',1,'Log.c']]] + ['listappend_651',['ListAppend',['../LinkedList_8c.html#abc7a28449893dfa775c2f709349968b4',1,'LinkedList.c']]], + ['listappendnomalloc_652',['ListAppendNoMalloc',['../LinkedList_8c.html#a321a3598d6979c7af3f995b77ea2cec3',1,'LinkedList.c']]], + ['listdetach_653',['ListDetach',['../LinkedList_8c.html#ab2bcc1897abf1d98490ea81c474dba52',1,'LinkedList.c']]], + ['listdetachhead_654',['ListDetachHead',['../LinkedList_8c.html#ab0f3597d344e09ad6636c8bc72029337',1,'LinkedList.c']]], + ['listdetachitem_655',['ListDetachItem',['../LinkedList_8c.html#a9ed745f7ba486d16d009e86433fece7b',1,'LinkedList.c']]], + ['listempty_656',['ListEmpty',['../LinkedList_8c.html#a3cf8578dba23f97dd0411e85fe3b7ff2',1,'LinkedList.c']]], + ['listfind_657',['ListFind',['../LinkedList_8c.html#ad2879a10b723fb7c1f95c0ad0abdbc50',1,'LinkedList.c']]], + ['listfinditem_658',['ListFindItem',['../LinkedList_8c.html#acad319e9ce896ff1fff30ddbeb06d22d',1,'LinkedList.c']]], + ['listfree_659',['ListFree',['../LinkedList_8c.html#a276950531b3f54e0dda27d597572c192',1,'LinkedList.c']]], + ['listfreenocontent_660',['ListFreeNoContent',['../LinkedList_8c.html#a8b3e61bc873a90ad2ea43a15e6c001f4',1,'LinkedList.c']]], + ['listinitialize_661',['ListInitialize',['../LinkedList_8c.html#a27e2cccab9752618ead91eafbe2a9a46',1,'LinkedList.c']]], + ['listinsert_662',['ListInsert',['../LinkedList_8c.html#aabca387fa4b86475bc9e4da40c3977fc',1,'LinkedList.c']]], + ['listnextelement_663',['ListNextElement',['../LinkedList_8c.html#a7c6fba7f4b569c69829676bed2852ee9',1,'LinkedList.c']]], + ['listpoptail_664',['ListPopTail',['../LinkedList_8c.html#a84b0ad14e7cebcd7b9ebab89a8d48321',1,'LinkedList.c']]], + ['listprevelement_665',['ListPrevElement',['../LinkedList_8c.html#a371f4a5021e6aa639bab6ab1457fc1d2',1,'LinkedList.c']]], + ['listremove_666',['ListRemove',['../LinkedList_8c.html#a8430370b2b15c56ec95bb8e7e36753a5',1,'LinkedList.c']]], + ['listremovehead_667',['ListRemoveHead',['../LinkedList_8c.html#a5ee7cd1d29fd9299231d40c011174fcd',1,'LinkedList.c']]], + ['listremoveitem_668',['ListRemoveItem',['../LinkedList_8c.html#a4bb7c34fe9a5832d65f530091e0fad0d',1,'LinkedList.c']]], + ['listunlink_669',['ListUnlink',['../LinkedList_8c.html#ab82181e0c1d96954f82dee67cee41296',1,'LinkedList.c']]], + ['listzero_670',['ListZero',['../LinkedList_8c.html#aa254fb1eab8e30d0e03859b333dc22ed',1,'LinkedList.c']]], + ['log_671',['Log',['../Log_8c.html#a669722e3f57811871f97c12392aba85d',1,'Log.c']]], + ['log_5fstacktrace_672',['Log_stackTrace',['../Log_8c.html#aeb93e137086d574a96548cecca9e9217',1,'Log.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_5.html b/docs/MQTTClient_internal/html/search/functions_5.html index 61b920db..9301d6b9 100644 --- a/docs/MQTTClient_internal/html/search/functions_5.html +++ b/docs/MQTTClient_internal/html/search/functions_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_5.js b/docs/MQTTClient_internal/html/search/functions_5.js index 173f1fb8..cf2150d1 100644 --- a/docs/MQTTClient_internal/html/search/functions_5.js +++ b/docs/MQTTClient_internal/html/search/functions_5.js @@ -1,117 +1,118 @@ var searchData= [ - ['messageidcompare_664',['messageIDCompare',['../MQTTProtocolClient_8c.html#a286c2ef2904b5eb4a0ffa5b598961c67',1,'MQTTProtocolClient.c']]], - ['messages_5fget_665',['Messages_get',['../Messages_8c.html#ab0c342273f8f7d3c206314ae8215a14c',1,'Messages.c']]], - ['mqttclient_5fconnect_666',['MQTTClient_connect',['../MQTTClient_8c.html#aaa8ae61cd65c9dc0846df10122d7bd4e',1,'MQTTClient.c']]], - ['mqttclient_5fconnect5_667',['MQTTClient_connect5',['../MQTTClient_8c.html#aa777f80cb3eec5610f976aff30b8c0d6',1,'MQTTClient.c']]], - ['mqttclient_5fcreate_668',['MQTTClient_create',['../MQTTClient_8c.html#a9a0518d9ca924d12c1329dbe3de5f2b6',1,'MQTTClient.c']]], - ['mqttclient_5fcreatewithoptions_669',['MQTTClient_createWithOptions',['../MQTTClient_8c.html#ade24f717a9b39d38b081e1d5e0db1661',1,'MQTTClient.c']]], - ['mqttclient_5fdestroy_670',['MQTTClient_destroy',['../MQTTClient_8c.html#ae700c3f5cfea3813264ce95e7c8cf498',1,'MQTTClient.c']]], - ['mqttclient_5fdisconnect_671',['MQTTClient_disconnect',['../MQTTClient_8c.html#a1e4d90c13a3c0705bc4a13bfe64e6525',1,'MQTTClient.c']]], - ['mqttclient_5fdisconnect1_672',['MQTTClient_disconnect1',['../MQTTClient_8c.html#a2eeb63b405d9aed880a79b38addf6df7',1,'MQTTClient.c']]], - ['mqttclient_5fdisconnect_5finternal_673',['MQTTClient_disconnect_internal',['../MQTTClient_8c.html#a6a08562ce9b763bf79c71029b94cd9f5',1,'MQTTClient.c']]], - ['mqttclient_5ffree_674',['MQTTClient_free',['../MQTTClient_8c.html#ab217acbfaf47603355ca430983f93095',1,'MQTTClient.c']]], - ['mqttclient_5ffreemessage_675',['MQTTClient_freeMessage',['../MQTTClient_8c.html#a2bc00ce11e0cac5dbc0938c512b4ab31',1,'MQTTClient.c']]], - ['mqttclient_5fgetpendingdeliverytokens_676',['MQTTClient_getPendingDeliveryTokens',['../MQTTClient_8c.html#a2a617c6b0492c04a4ddea592f5e53604',1,'MQTTClient.c']]], - ['mqttclient_5fgetversioninfo_677',['MQTTClient_getVersionInfo',['../MQTTClient_8c.html#abe842456c914ce9201d277a972cc085e',1,'MQTTClient.c']]], - ['mqttclient_5fglobal_5finit_678',['MQTTClient_global_init',['../MQTTClient_8c.html#a21804ede1a506d1d69a472bc30acc8ba',1,'MQTTClient.c']]], - ['mqttclient_5fisconnected_679',['MQTTClient_isConnected',['../MQTTClient_8c.html#a6e8231e8c47f6f67f7ebbb5dcb4c69c0',1,'MQTTClient.c']]], - ['mqttclient_5fpublish_680',['MQTTClient_publish',['../MQTTClient_8c.html#a3cd7a94b48d1d9c6b8af4b9203d69d37',1,'MQTTClient.c']]], - ['mqttclient_5fpublish5_681',['MQTTClient_publish5',['../MQTTClient_8c.html#a3c0ca97b393eee10d4f441ba68830e83',1,'MQTTClient.c']]], - ['mqttclient_5fpublishmessage_682',['MQTTClient_publishMessage',['../MQTTClient_8c.html#a5e0cfa14237d7557bee2a59747ecadd3',1,'MQTTClient.c']]], - ['mqttclient_5fpublishmessage5_683',['MQTTClient_publishMessage5',['../MQTTClient_8c.html#ae54936bf7680dcde353e6fc785a44461',1,'MQTTClient.c']]], - ['mqttclient_5freceive_684',['MQTTClient_receive',['../MQTTClient_8c.html#a4c2df88d00a3dadd510a8cb774739366',1,'MQTTClient.c']]], - ['mqttclient_5fsetcallbacks_685',['MQTTClient_setCallbacks',['../MQTTClient_8c.html#aad27d07782991a4937ebf2f39a021f83',1,'MQTTClient.c']]], - ['mqttclient_5fsetcommandtimeout_686',['MQTTClient_setCommandTimeout',['../MQTTClient_8c.html#a96067a2fb74d2a61c7e93015629548e0',1,'MQTTClient.c']]], - ['mqttclient_5fsetdisconnected_687',['MQTTClient_setDisconnected',['../MQTTClient_8c.html#adc7d708419664670063a0e7fd9c27bca',1,'MQTTClient.c']]], - ['mqttclient_5fsettracecallback_688',['MQTTClient_setTraceCallback',['../MQTTClient_8c.html#a22870f94aa4cb1827626612f1ded7c69',1,'MQTTClient.c']]], - ['mqttclient_5fsettracelevel_689',['MQTTClient_setTraceLevel',['../MQTTClient_8c.html#a4dfa35d29db54b10b15b8ac2d9a778be',1,'MQTTClient.c']]], - ['mqttclient_5fstrerror_690',['MQTTClient_strerror',['../MQTTClient_8c.html#a9defda2979f6fedaae64fd85f5c2f617',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribe_691',['MQTTClient_subscribe',['../MQTTClient_8c.html#a9c1c28258f0d5c6a44ff53a98618f5f3',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribe5_692',['MQTTClient_subscribe5',['../MQTTClient_8c.html#af35ab7375435f7b6388c5ff4610dad3d',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribemany_693',['MQTTClient_subscribeMany',['../MQTTClient_8c.html#a92fa1c13f3db8399e042fbdbdfb692b3',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribemany5_694',['MQTTClient_subscribeMany5',['../MQTTClient_8c.html#a5390c2402f135c12826ffbf6fc261f7c',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribe_695',['MQTTClient_unsubscribe',['../MQTTClient_8c.html#aa8731be3dbc6a25f41f037f8bbbb054b',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribe5_696',['MQTTClient_unsubscribe5',['../MQTTClient_8c.html#a58356c13867f18df60fd4c7ec9457c48',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribemany_697',['MQTTClient_unsubscribeMany',['../MQTTClient_8c.html#a50abbce720d50b9f84b97ff9fa1f546d',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribemany5_698',['MQTTClient_unsubscribeMany5',['../MQTTClient_8c.html#a46bdb532d2153110ccffb2f0748d1ba5',1,'MQTTClient.c']]], - ['mqttclient_5fwaitforcompletion_699',['MQTTClient_waitForCompletion',['../MQTTClient_8c.html#ab8786efdd6c3a50c6ca33cfb5d8fc283',1,'MQTTClient.c']]], - ['mqttclient_5fyield_700',['MQTTClient_yield',['../MQTTClient_8c.html#a8ad3d29864a9ca08202b0832e0f6678e',1,'MQTTClient.c']]], - ['mqttpacket_5fack_701',['MQTTPacket_ack',['../MQTTPacket_8c.html#a93c155059c80bd01b4a1561d9bec1d13',1,'MQTTPacket.c']]], - ['mqttpacket_5fconnack_702',['MQTTPacket_connack',['../MQTTPacketOut_8c.html#ad05dd32a547e82e0741d9d8279568a65',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fdecode_703',['MQTTPacket_decode',['../MQTTPacket_8c.html#ac1f61e571640513a9785b3164141dfbc',1,'MQTTPacket.c']]], - ['mqttpacket_5fencode_704',['MQTTPacket_encode',['../MQTTPacket_8c.html#aadd77a4fa1b2d5c7791e3542c56af856',1,'MQTTPacket.c']]], - ['mqttpacket_5ffactory_705',['MQTTPacket_Factory',['../MQTTPacket_8c.html#af922033c495b05fe4242afc54211f20d',1,'MQTTPacket.c']]], - ['mqttpacket_5ffree_5fpacket_706',['MQTTPacket_free_packet',['../MQTTPacket_8c.html#a28f1754fe1f090d54bc3b5687fb2dd8c',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreeack_707',['MQTTPacket_freeAck',['../MQTTPacket_8c.html#a0ef92fb0207ed6272de9ebc749745d0c',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreeconnack_708',['MQTTPacket_freeConnack',['../MQTTPacketOut_8c.html#a49e8e6789e17a29f5a448b8fab0a4137',1,'MQTTPacketOut.c']]], - ['mqttpacket_5ffreepublish_709',['MQTTPacket_freePublish',['../MQTTPacket_8c.html#a642e5f62d21f14e81f8fc70b491d89c8',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreesuback_710',['MQTTPacket_freeSuback',['../MQTTPacket_8c.html#a4262b8f35885dc123f59268fb74cec3d',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreeunsuback_711',['MQTTPacket_freeUnsuback',['../MQTTPacket_8c.html#a9dd0446112e7bc982f8e3bb8bbb6b409',1,'MQTTPacket.c']]], - ['mqttpacket_5fheader_5fonly_712',['MQTTPacket_header_only',['../MQTTPacket_8c.html#af3ddd9c1a35d51bf70f44a1aa6fa0bba',1,'MQTTPacket.c']]], - ['mqttpacket_5fname_713',['MQTTPacket_name',['../MQTTPacket_8c.html#a9f9e58aba3ed5d513862d76bc5e29743',1,'MQTTPacket.c']]], - ['mqttpacket_5fpublish_714',['MQTTPacket_publish',['../MQTTPacket_8c.html#a58feb89ee5616f2ea6d222bbbef927bb',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_715',['MQTTPacket_send',['../MQTTPacket_8c.html#a51f58f1c7864f9fe87b55cc6ccb10129',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fack_716',['MQTTPacket_send_ack',['../MQTTPacket_8c.html#ad89e627a37f7f7eb4355b076cd46e0b0',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fconnect_717',['MQTTPacket_send_connect',['../MQTTPacketOut_8c.html#ad3c3f0919760286998e9b9eafaa47a36',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsend_5fdisconnect_718',['MQTTPacket_send_disconnect',['../MQTTPacket_8c.html#aa9e17261b4d09d802dba6a65bcdc44fa',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpingreq_719',['MQTTPacket_send_pingreq',['../MQTTPacketOut_8c.html#acf4b3402e224ac22ffbe74731f374fe0',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsend_5fpuback_720',['MQTTPacket_send_puback',['../MQTTPacket_8c.html#a8b93325a6a336406497b20b489d6c46a',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpubcomp_721',['MQTTPacket_send_pubcomp',['../MQTTPacket_8c.html#a908f81381b1720e4a53d15c1c4690f5c',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpublish_722',['MQTTPacket_send_publish',['../MQTTPacket_8c.html#a9ebcf93ff2ba3bd103f016c975e9c9c4',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpubrec_723',['MQTTPacket_send_pubrec',['../MQTTPacket_8c.html#a8167e3188a4bdcfb30c10e0d76c82afe',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpubrel_724',['MQTTPacket_send_pubrel',['../MQTTPacket_8c.html#adec2c812b12255dab78f75163a4f1960',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fsubscribe_725',['MQTTPacket_send_subscribe',['../MQTTPacketOut_8c.html#a90212ed29c311f52a1dce0617133b1a7',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsend_5funsubscribe_726',['MQTTPacket_send_unsubscribe',['../MQTTPacketOut_8c.html#a1ad4c9b76c6ab88c394ee925eb4dcd44',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsends_727',['MQTTPacket_sends',['../MQTTPacket_8c.html#a3635fd8035177b20c478daea6bad9328',1,'MQTTPacket.c']]], - ['mqttpacket_5fsuback_728',['MQTTPacket_suback',['../MQTTPacketOut_8c.html#aee4b3e106128629671828ae7bfa70850',1,'MQTTPacketOut.c']]], - ['mqttpacket_5funsuback_729',['MQTTPacket_unsuback',['../MQTTPacketOut_8c.html#a93f6aa4b23d30f6c8c5be87b0b58e37c',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fvbidecode_730',['MQTTPacket_VBIdecode',['../MQTTPacket_8c.html#a4fc1ee4d2cf8fd9bd59d89aadab222df',1,'MQTTPacket.c']]], - ['mqttpersistence_5fclear_731',['MQTTPersistence_clear',['../MQTTPersistence_8c.html#a6f6056b7418b66a3786a5028b2357a86',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fclose_732',['MQTTPersistence_close',['../MQTTPersistence_8c.html#a385b6c191dbf51652d3e3a81813848f1',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fcreate_733',['MQTTPersistence_create',['../MQTTPersistence_8c.html#a75e756280e499db530896c5b74b8d3b5',1,'MQTTPersistence.c']]], - ['mqttpersistence_5finitialize_734',['MQTTPersistence_initialize',['../MQTTPersistence_8c.html#a65b64467da967b6930966b98f249406e',1,'MQTTPersistence.c']]], - ['mqttpersistence_5finsertinorder_735',['MQTTPersistence_insertInOrder',['../MQTTPersistence_8c.html#a568adcd6ad3542d6f631a7f7a2e682e5',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fputpacket_736',['MQTTPersistence_putPacket',['../MQTTPersistence_8c.html#a18eab666c3e6aecd92a6c8f10df808e3',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fremove_737',['MQTTPersistence_remove',['../MQTTPersistence_8c.html#aba48f1a44c540fa37bca207cae3cbbd3',1,'MQTTPersistence.c']]], - ['mqttpersistence_5frestoremessagequeue_738',['MQTTPersistence_restoreMessageQueue',['../MQTTPersistence_8c.html#ab4f6437946ac80d5f9e882e92e59cc5c',1,'MQTTPersistence.c']]], - ['mqttpersistence_5frestorepacket_739',['MQTTPersistence_restorePacket',['../MQTTPersistence_8c.html#a6bc55eebf10d7a7f7e2849b3e33716d1',1,'MQTTPersistence.c']]], - ['mqttpersistence_5frestorepackets_740',['MQTTPersistence_restorePackets',['../MQTTPersistence_8c.html#a3e607d17e088a493097af07e9c7b0006',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fwrapmsgid_741',['MQTTPersistence_wrapMsgID',['../MQTTPersistence_8c.html#adbf5881a3c6ce9bd7062182dfffe27fa',1,'MQTTPersistence.c']]], - ['mqttprotocol_5faddressport_742',['MQTTProtocol_addressPort',['../MQTTProtocolOut_8c.html#ae9a2970a33893540e42ff5a8d95411dc',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fassignmsgid_743',['MQTTProtocol_assignMsgId',['../MQTTProtocolClient_8c.html#a0fa824f9702cb6b0d7c800fd65198fce',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fcheckpendingwrites_744',['MQTTProtocol_checkPendingWrites',['../MQTTClient_8c.html#acdcf1aefca1dbb3d1b3d36c9bbaf3760',1,'MQTTClient.c']]], - ['mqttprotocol_5fclosesession_745',['MQTTProtocol_closeSession',['../MQTTClient_8c.html#a9f7b0789ff9ca9ded72dbad2e747b333',1,'MQTTClient.c']]], - ['mqttprotocol_5fconnect_746',['MQTTProtocol_connect',['../MQTTProtocolOut_8c.html#ad9baf307647cbe6516eadbbe975cda8c',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fcreatemessage_747',['MQTTProtocol_createMessage',['../MQTTProtocolClient_8c.html#afbf121be11a48fcda3e0d639bc47472b',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5femptymessagelist_748',['MQTTProtocol_emptyMessageList',['../MQTTProtocolClient_8c.html#ab9c5a22f0cbd4fa648663de7ae7118ab',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5ffreeclient_749',['MQTTProtocol_freeClient',['../MQTTProtocolClient_8c.html#a52e062f52e5a42275471eeb23040fc0e',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5ffreemessagelist_750',['MQTTProtocol_freeMessageList',['../MQTTProtocolClient_8c.html#a8514ddc8d0f346c0da19ab4d59b4062f',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandledisconnects_751',['MQTTProtocol_handleDisconnects',['../MQTTProtocolOut_8c.html#a4f914518a8e2d68cc9d9fbb2c22cdf6f',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fhandlepingresps_752',['MQTTProtocol_handlePingresps',['../MQTTProtocolOut_8c.html#ad298c92c74b5f1acda774fc95e3d61c3',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fhandlepubacks_753',['MQTTProtocol_handlePubacks',['../MQTTProtocolClient_8c.html#aa9f454819a84c7a43009253fabcea3f3',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepubcomps_754',['MQTTProtocol_handlePubcomps',['../MQTTProtocolClient_8c.html#a9aa163c85710d4936ae368b8b9412440',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepublishes_755',['MQTTProtocol_handlePublishes',['../MQTTProtocolClient_8c.html#a2d7897d575be486bf1ed0459d7b2b8e7',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepubrecs_756',['MQTTProtocol_handlePubrecs',['../MQTTProtocolClient_8c.html#ac09429577a185297d8797d791b7116a2',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepubrels_757',['MQTTProtocol_handlePubrels',['../MQTTProtocolClient_8c.html#a362e0560d6f4f0e50237664a1a8e89a7',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlesubacks_758',['MQTTProtocol_handleSubacks',['../MQTTProtocolOut_8c.html#a5424115bf427436c2d40058f15261ed0',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fhandleunsubacks_759',['MQTTProtocol_handleUnsubacks',['../MQTTProtocolOut_8c.html#a0b9648549a1a132eecadb74df2e84f57',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fkeepalive_760',['MQTTProtocol_keepalive',['../MQTTProtocolClient_8c.html#a218a69c333badc4a61b321bc830ac1e0',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fqueueack_761',['MQTTProtocol_queueAck',['../MQTTProtocolClient_8c.html#a68e5f17517e75326c0869a22c7995358',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fremovepublication_762',['MQTTProtocol_removePublication',['../MQTTProtocolClient_8c.html#a900fa28a8774ad6f5535104bb62e7abf',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fretries_763',['MQTTProtocol_retries',['../MQTTProtocolClient_8c.html#ad2f52c0fff61c891b174d69b95bcd173',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fretry_764',['MQTTProtocol_retry',['../MQTTProtocolClient_8c.html#a3a1acc3bd7b09ab9d52e15e4a97c4cb2',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fspecialchars_765',['MQTTProtocol_specialChars',['../MQTTProtocolOut_8c.html#a6b8949d7db9299fa5fd940e8e58f31b6',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fstartpublish_766',['MQTTProtocol_startPublish',['../MQTTProtocolClient_8c.html#a0f86c2cc2debfa39e275d3c76d5d0073',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fstartpublishcommon_767',['MQTTProtocol_startPublishCommon',['../MQTTProtocolClient_8c.html#a4502a4b9257b32508fac87e42fb1d85a',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fstorepublication_768',['MQTTProtocol_storePublication',['../MQTTProtocolClient_8c.html#ac753a3ad12292a0a9c2f4343bd33817e',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fsubscribe_769',['MQTTProtocol_subscribe',['../MQTTProtocolOut_8c.html#a460d021d06dd24cf975dfe20e17ab1ba',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5funsubscribe_770',['MQTTProtocol_unsubscribe',['../MQTTProtocolOut_8c.html#a69083f5a059d129d1030140ec1cd3d58',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fwriteavailable_771',['MQTTProtocol_writeAvailable',['../MQTTProtocolClient_8c.html#a5906689ff10dc091d1a2b317295d39b0',1,'MQTTProtocolClient.c']]], - ['mqttresponse_5ffree_772',['MQTTResponse_free',['../MQTTClient_8c.html#a01bd2c5f98ec5c0636a106db33f2b01b',1,'MQTTClient.c']]], - ['mqttstrdup_773',['MQTTStrdup',['../MQTTProtocolClient_8c.html#a89588f085edc5cee4eb650e8ad114df4',1,'MQTTProtocolClient.c']]], - ['mqttstrncpy_774',['MQTTStrncpy',['../MQTTProtocolClient_8c.html#a447b65c664ebedef8fecb70e29dc1767',1,'MQTTProtocolClient.c']]], - ['myfree_775',['myfree',['../Heap_8c.html#a25214c297c998eba3cfc8282b1162c69',1,'Heap.c']]], - ['mymalloc_776',['mymalloc',['../Heap_8c.html#a59e53a989d69c3da767487596d9bfa1f',1,'Heap.c']]], - ['myrealloc_777',['myrealloc',['../Heap_8c.html#a699e6722cc8f195f853f09ac274413a3',1,'Heap.c']]] + ['messageidcompare_673',['messageIDCompare',['../MQTTProtocolClient_8c.html#a286c2ef2904b5eb4a0ffa5b598961c67',1,'MQTTProtocolClient.c']]], + ['messages_5fget_674',['Messages_get',['../Messages_8c.html#ab0c342273f8f7d3c206314ae8215a14c',1,'Messages.c']]], + ['mqttclient_5fconnect_675',['MQTTClient_connect',['../MQTTClient_8c.html#aaa8ae61cd65c9dc0846df10122d7bd4e',1,'MQTTClient.c']]], + ['mqttclient_5fconnect5_676',['MQTTClient_connect5',['../MQTTClient_8c.html#aa777f80cb3eec5610f976aff30b8c0d6',1,'MQTTClient.c']]], + ['mqttclient_5fcreate_677',['MQTTClient_create',['../MQTTClient_8c.html#a9a0518d9ca924d12c1329dbe3de5f2b6',1,'MQTTClient.c']]], + ['mqttclient_5fcreatewithoptions_678',['MQTTClient_createWithOptions',['../MQTTClient_8c.html#ade24f717a9b39d38b081e1d5e0db1661',1,'MQTTClient.c']]], + ['mqttclient_5fdestroy_679',['MQTTClient_destroy',['../MQTTClient_8c.html#ae700c3f5cfea3813264ce95e7c8cf498',1,'MQTTClient.c']]], + ['mqttclient_5fdisconnect_680',['MQTTClient_disconnect',['../MQTTClient_8c.html#a1e4d90c13a3c0705bc4a13bfe64e6525',1,'MQTTClient.c']]], + ['mqttclient_5fdisconnect1_681',['MQTTClient_disconnect1',['../MQTTClient_8c.html#a2eeb63b405d9aed880a79b38addf6df7',1,'MQTTClient.c']]], + ['mqttclient_5fdisconnect_5finternal_682',['MQTTClient_disconnect_internal',['../MQTTClient_8c.html#a6a08562ce9b763bf79c71029b94cd9f5',1,'MQTTClient.c']]], + ['mqttclient_5ffree_683',['MQTTClient_free',['../MQTTClient_8c.html#ab217acbfaf47603355ca430983f93095',1,'MQTTClient.c']]], + ['mqttclient_5ffreemessage_684',['MQTTClient_freeMessage',['../MQTTClient_8c.html#a2bc00ce11e0cac5dbc0938c512b4ab31',1,'MQTTClient.c']]], + ['mqttclient_5fgetpendingdeliverytokens_685',['MQTTClient_getPendingDeliveryTokens',['../MQTTClient_8c.html#a2a617c6b0492c04a4ddea592f5e53604',1,'MQTTClient.c']]], + ['mqttclient_5fgetversioninfo_686',['MQTTClient_getVersionInfo',['../MQTTClient_8c.html#abe842456c914ce9201d277a972cc085e',1,'MQTTClient.c']]], + ['mqttclient_5fglobal_5finit_687',['MQTTClient_global_init',['../MQTTClient_8c.html#a21804ede1a506d1d69a472bc30acc8ba',1,'MQTTClient.c']]], + ['mqttclient_5fisconnected_688',['MQTTClient_isConnected',['../MQTTClient_8c.html#a6e8231e8c47f6f67f7ebbb5dcb4c69c0',1,'MQTTClient.c']]], + ['mqttclient_5fmalloc_689',['MQTTClient_malloc',['../MQTTClient_8c.html#a9a6a07529e252574db1f95d40ccc0784',1,'MQTTClient.c']]], + ['mqttclient_5fpublish_690',['MQTTClient_publish',['../MQTTClient_8c.html#a3cd7a94b48d1d9c6b8af4b9203d69d37',1,'MQTTClient.c']]], + ['mqttclient_5fpublish5_691',['MQTTClient_publish5',['../MQTTClient_8c.html#a3c0ca97b393eee10d4f441ba68830e83',1,'MQTTClient.c']]], + ['mqttclient_5fpublishmessage_692',['MQTTClient_publishMessage',['../MQTTClient_8c.html#a5e0cfa14237d7557bee2a59747ecadd3',1,'MQTTClient.c']]], + ['mqttclient_5fpublishmessage5_693',['MQTTClient_publishMessage5',['../MQTTClient_8c.html#ae54936bf7680dcde353e6fc785a44461',1,'MQTTClient.c']]], + ['mqttclient_5freceive_694',['MQTTClient_receive',['../MQTTClient_8c.html#a4c2df88d00a3dadd510a8cb774739366',1,'MQTTClient.c']]], + ['mqttclient_5fsetcallbacks_695',['MQTTClient_setCallbacks',['../MQTTClient_8c.html#aad27d07782991a4937ebf2f39a021f83',1,'MQTTClient.c']]], + ['mqttclient_5fsetcommandtimeout_696',['MQTTClient_setCommandTimeout',['../MQTTClient_8c.html#a96067a2fb74d2a61c7e93015629548e0',1,'MQTTClient.c']]], + ['mqttclient_5fsetdisconnected_697',['MQTTClient_setDisconnected',['../MQTTClient_8c.html#adc7d708419664670063a0e7fd9c27bca',1,'MQTTClient.c']]], + ['mqttclient_5fsettracecallback_698',['MQTTClient_setTraceCallback',['../MQTTClient_8c.html#a22870f94aa4cb1827626612f1ded7c69',1,'MQTTClient.c']]], + ['mqttclient_5fsettracelevel_699',['MQTTClient_setTraceLevel',['../MQTTClient_8c.html#a4dfa35d29db54b10b15b8ac2d9a778be',1,'MQTTClient.c']]], + ['mqttclient_5fstrerror_700',['MQTTClient_strerror',['../MQTTClient_8c.html#a9defda2979f6fedaae64fd85f5c2f617',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribe_701',['MQTTClient_subscribe',['../MQTTClient_8c.html#a9c1c28258f0d5c6a44ff53a98618f5f3',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribe5_702',['MQTTClient_subscribe5',['../MQTTClient_8c.html#af35ab7375435f7b6388c5ff4610dad3d',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribemany_703',['MQTTClient_subscribeMany',['../MQTTClient_8c.html#a92fa1c13f3db8399e042fbdbdfb692b3',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribemany5_704',['MQTTClient_subscribeMany5',['../MQTTClient_8c.html#a5390c2402f135c12826ffbf6fc261f7c',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribe_705',['MQTTClient_unsubscribe',['../MQTTClient_8c.html#aa8731be3dbc6a25f41f037f8bbbb054b',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribe5_706',['MQTTClient_unsubscribe5',['../MQTTClient_8c.html#a58356c13867f18df60fd4c7ec9457c48',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribemany_707',['MQTTClient_unsubscribeMany',['../MQTTClient_8c.html#a50abbce720d50b9f84b97ff9fa1f546d',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribemany5_708',['MQTTClient_unsubscribeMany5',['../MQTTClient_8c.html#a46bdb532d2153110ccffb2f0748d1ba5',1,'MQTTClient.c']]], + ['mqttclient_5fwaitforcompletion_709',['MQTTClient_waitForCompletion',['../MQTTClient_8c.html#ab8786efdd6c3a50c6ca33cfb5d8fc283',1,'MQTTClient.c']]], + ['mqttclient_5fyield_710',['MQTTClient_yield',['../MQTTClient_8c.html#a8ad3d29864a9ca08202b0832e0f6678e',1,'MQTTClient.c']]], + ['mqttpacket_5fack_711',['MQTTPacket_ack',['../MQTTPacket_8c.html#a93c155059c80bd01b4a1561d9bec1d13',1,'MQTTPacket.c']]], + ['mqttpacket_5fconnack_712',['MQTTPacket_connack',['../MQTTPacketOut_8c.html#ad05dd32a547e82e0741d9d8279568a65',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fdecode_713',['MQTTPacket_decode',['../MQTTPacket_8c.html#ac1f61e571640513a9785b3164141dfbc',1,'MQTTPacket.c']]], + ['mqttpacket_5fencode_714',['MQTTPacket_encode',['../MQTTPacket_8c.html#aadd77a4fa1b2d5c7791e3542c56af856',1,'MQTTPacket.c']]], + ['mqttpacket_5ffactory_715',['MQTTPacket_Factory',['../MQTTPacket_8c.html#af922033c495b05fe4242afc54211f20d',1,'MQTTPacket.c']]], + ['mqttpacket_5ffree_5fpacket_716',['MQTTPacket_free_packet',['../MQTTPacket_8c.html#a28f1754fe1f090d54bc3b5687fb2dd8c',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreeack_717',['MQTTPacket_freeAck',['../MQTTPacket_8c.html#a0ef92fb0207ed6272de9ebc749745d0c',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreeconnack_718',['MQTTPacket_freeConnack',['../MQTTPacketOut_8c.html#a49e8e6789e17a29f5a448b8fab0a4137',1,'MQTTPacketOut.c']]], + ['mqttpacket_5ffreepublish_719',['MQTTPacket_freePublish',['../MQTTPacket_8c.html#a642e5f62d21f14e81f8fc70b491d89c8',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreesuback_720',['MQTTPacket_freeSuback',['../MQTTPacket_8c.html#a4262b8f35885dc123f59268fb74cec3d',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreeunsuback_721',['MQTTPacket_freeUnsuback',['../MQTTPacket_8c.html#a9dd0446112e7bc982f8e3bb8bbb6b409',1,'MQTTPacket.c']]], + ['mqttpacket_5fheader_5fonly_722',['MQTTPacket_header_only',['../MQTTPacket_8c.html#af3ddd9c1a35d51bf70f44a1aa6fa0bba',1,'MQTTPacket.c']]], + ['mqttpacket_5fname_723',['MQTTPacket_name',['../MQTTPacket_8c.html#a9f9e58aba3ed5d513862d76bc5e29743',1,'MQTTPacket.c']]], + ['mqttpacket_5fpublish_724',['MQTTPacket_publish',['../MQTTPacket_8c.html#a58feb89ee5616f2ea6d222bbbef927bb',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_725',['MQTTPacket_send',['../MQTTPacket_8c.html#a51f58f1c7864f9fe87b55cc6ccb10129',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fack_726',['MQTTPacket_send_ack',['../MQTTPacket_8c.html#ad89e627a37f7f7eb4355b076cd46e0b0',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fconnect_727',['MQTTPacket_send_connect',['../MQTTPacketOut_8c.html#ad3c3f0919760286998e9b9eafaa47a36',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsend_5fdisconnect_728',['MQTTPacket_send_disconnect',['../MQTTPacket_8c.html#aa9e17261b4d09d802dba6a65bcdc44fa',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpingreq_729',['MQTTPacket_send_pingreq',['../MQTTPacketOut_8c.html#acf4b3402e224ac22ffbe74731f374fe0',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsend_5fpuback_730',['MQTTPacket_send_puback',['../MQTTPacket_8c.html#a8b93325a6a336406497b20b489d6c46a',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpubcomp_731',['MQTTPacket_send_pubcomp',['../MQTTPacket_8c.html#a908f81381b1720e4a53d15c1c4690f5c',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpublish_732',['MQTTPacket_send_publish',['../MQTTPacket_8c.html#a9ebcf93ff2ba3bd103f016c975e9c9c4',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpubrec_733',['MQTTPacket_send_pubrec',['../MQTTPacket_8c.html#a8167e3188a4bdcfb30c10e0d76c82afe',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpubrel_734',['MQTTPacket_send_pubrel',['../MQTTPacket_8c.html#adec2c812b12255dab78f75163a4f1960',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fsubscribe_735',['MQTTPacket_send_subscribe',['../MQTTPacketOut_8c.html#a90212ed29c311f52a1dce0617133b1a7',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsend_5funsubscribe_736',['MQTTPacket_send_unsubscribe',['../MQTTPacketOut_8c.html#a1ad4c9b76c6ab88c394ee925eb4dcd44',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsends_737',['MQTTPacket_sends',['../MQTTPacket_8c.html#a3635fd8035177b20c478daea6bad9328',1,'MQTTPacket.c']]], + ['mqttpacket_5fsuback_738',['MQTTPacket_suback',['../MQTTPacketOut_8c.html#aee4b3e106128629671828ae7bfa70850',1,'MQTTPacketOut.c']]], + ['mqttpacket_5funsuback_739',['MQTTPacket_unsuback',['../MQTTPacketOut_8c.html#a93f6aa4b23d30f6c8c5be87b0b58e37c',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fvbidecode_740',['MQTTPacket_VBIdecode',['../MQTTPacket_8c.html#a4fc1ee4d2cf8fd9bd59d89aadab222df',1,'MQTTPacket.c']]], + ['mqttpersistence_5fclear_741',['MQTTPersistence_clear',['../MQTTPersistence_8c.html#a6f6056b7418b66a3786a5028b2357a86',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fclose_742',['MQTTPersistence_close',['../MQTTPersistence_8c.html#a385b6c191dbf51652d3e3a81813848f1',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fcreate_743',['MQTTPersistence_create',['../MQTTPersistence_8c.html#a75e756280e499db530896c5b74b8d3b5',1,'MQTTPersistence.c']]], + ['mqttpersistence_5finitialize_744',['MQTTPersistence_initialize',['../MQTTPersistence_8c.html#a65b64467da967b6930966b98f249406e',1,'MQTTPersistence.c']]], + ['mqttpersistence_5finsertinorder_745',['MQTTPersistence_insertInOrder',['../MQTTPersistence_8c.html#a568adcd6ad3542d6f631a7f7a2e682e5',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fputpacket_746',['MQTTPersistence_putPacket',['../MQTTPersistence_8c.html#a18eab666c3e6aecd92a6c8f10df808e3',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fremove_747',['MQTTPersistence_remove',['../MQTTPersistence_8c.html#aba48f1a44c540fa37bca207cae3cbbd3',1,'MQTTPersistence.c']]], + ['mqttpersistence_5frestoremessagequeue_748',['MQTTPersistence_restoreMessageQueue',['../MQTTPersistence_8c.html#ab4f6437946ac80d5f9e882e92e59cc5c',1,'MQTTPersistence.c']]], + ['mqttpersistence_5frestorepacket_749',['MQTTPersistence_restorePacket',['../MQTTPersistence_8c.html#a6bc55eebf10d7a7f7e2849b3e33716d1',1,'MQTTPersistence.c']]], + ['mqttpersistence_5frestorepackets_750',['MQTTPersistence_restorePackets',['../MQTTPersistence_8c.html#a3e607d17e088a493097af07e9c7b0006',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fwrapmsgid_751',['MQTTPersistence_wrapMsgID',['../MQTTPersistence_8c.html#adbf5881a3c6ce9bd7062182dfffe27fa',1,'MQTTPersistence.c']]], + ['mqttprotocol_5faddressport_752',['MQTTProtocol_addressPort',['../MQTTProtocolOut_8c.html#ae9a2970a33893540e42ff5a8d95411dc',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fassignmsgid_753',['MQTTProtocol_assignMsgId',['../MQTTProtocolClient_8c.html#a0fa824f9702cb6b0d7c800fd65198fce',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fcheckpendingwrites_754',['MQTTProtocol_checkPendingWrites',['../MQTTClient_8c.html#acdcf1aefca1dbb3d1b3d36c9bbaf3760',1,'MQTTClient.c']]], + ['mqttprotocol_5fclosesession_755',['MQTTProtocol_closeSession',['../MQTTClient_8c.html#a9f7b0789ff9ca9ded72dbad2e747b333',1,'MQTTClient.c']]], + ['mqttprotocol_5fconnect_756',['MQTTProtocol_connect',['../MQTTProtocolOut_8c.html#ad9baf307647cbe6516eadbbe975cda8c',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fcreatemessage_757',['MQTTProtocol_createMessage',['../MQTTProtocolClient_8c.html#afbf121be11a48fcda3e0d639bc47472b',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5femptymessagelist_758',['MQTTProtocol_emptyMessageList',['../MQTTProtocolClient_8c.html#ab9c5a22f0cbd4fa648663de7ae7118ab',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5ffreeclient_759',['MQTTProtocol_freeClient',['../MQTTProtocolClient_8c.html#a52e062f52e5a42275471eeb23040fc0e',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5ffreemessagelist_760',['MQTTProtocol_freeMessageList',['../MQTTProtocolClient_8c.html#a8514ddc8d0f346c0da19ab4d59b4062f',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandledisconnects_761',['MQTTProtocol_handleDisconnects',['../MQTTProtocolOut_8c.html#a4f914518a8e2d68cc9d9fbb2c22cdf6f',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fhandlepingresps_762',['MQTTProtocol_handlePingresps',['../MQTTProtocolOut_8c.html#ad298c92c74b5f1acda774fc95e3d61c3',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fhandlepubacks_763',['MQTTProtocol_handlePubacks',['../MQTTProtocolClient_8c.html#aa9f454819a84c7a43009253fabcea3f3',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepubcomps_764',['MQTTProtocol_handlePubcomps',['../MQTTProtocolClient_8c.html#a9aa163c85710d4936ae368b8b9412440',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepublishes_765',['MQTTProtocol_handlePublishes',['../MQTTProtocolClient_8c.html#a2d7897d575be486bf1ed0459d7b2b8e7',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepubrecs_766',['MQTTProtocol_handlePubrecs',['../MQTTProtocolClient_8c.html#ac09429577a185297d8797d791b7116a2',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepubrels_767',['MQTTProtocol_handlePubrels',['../MQTTProtocolClient_8c.html#a362e0560d6f4f0e50237664a1a8e89a7',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlesubacks_768',['MQTTProtocol_handleSubacks',['../MQTTProtocolOut_8c.html#a5424115bf427436c2d40058f15261ed0',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fhandleunsubacks_769',['MQTTProtocol_handleUnsubacks',['../MQTTProtocolOut_8c.html#a0b9648549a1a132eecadb74df2e84f57',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fkeepalive_770',['MQTTProtocol_keepalive',['../MQTTProtocolClient_8c.html#a218a69c333badc4a61b321bc830ac1e0',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fqueueack_771',['MQTTProtocol_queueAck',['../MQTTProtocolClient_8c.html#a68e5f17517e75326c0869a22c7995358',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fremovepublication_772',['MQTTProtocol_removePublication',['../MQTTProtocolClient_8c.html#a900fa28a8774ad6f5535104bb62e7abf',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fretries_773',['MQTTProtocol_retries',['../MQTTProtocolClient_8c.html#ad2f52c0fff61c891b174d69b95bcd173',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fretry_774',['MQTTProtocol_retry',['../MQTTProtocolClient_8c.html#a3a1acc3bd7b09ab9d52e15e4a97c4cb2',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fspecialchars_775',['MQTTProtocol_specialChars',['../MQTTProtocolOut_8c.html#a6b8949d7db9299fa5fd940e8e58f31b6',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fstartpublish_776',['MQTTProtocol_startPublish',['../MQTTProtocolClient_8c.html#a0f86c2cc2debfa39e275d3c76d5d0073',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fstartpublishcommon_777',['MQTTProtocol_startPublishCommon',['../MQTTProtocolClient_8c.html#a4502a4b9257b32508fac87e42fb1d85a',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fstorepublication_778',['MQTTProtocol_storePublication',['../MQTTProtocolClient_8c.html#ac753a3ad12292a0a9c2f4343bd33817e',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fsubscribe_779',['MQTTProtocol_subscribe',['../MQTTProtocolOut_8c.html#a460d021d06dd24cf975dfe20e17ab1ba',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5funsubscribe_780',['MQTTProtocol_unsubscribe',['../MQTTProtocolOut_8c.html#a69083f5a059d129d1030140ec1cd3d58',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fwriteavailable_781',['MQTTProtocol_writeAvailable',['../MQTTProtocolClient_8c.html#a5906689ff10dc091d1a2b317295d39b0',1,'MQTTProtocolClient.c']]], + ['mqttresponse_5ffree_782',['MQTTResponse_free',['../MQTTClient_8c.html#a01bd2c5f98ec5c0636a106db33f2b01b',1,'MQTTClient.c']]], + ['mqttstrdup_783',['MQTTStrdup',['../MQTTProtocolClient_8c.html#a89588f085edc5cee4eb650e8ad114df4',1,'MQTTProtocolClient.c']]], + ['mqttstrncpy_784',['MQTTStrncpy',['../MQTTProtocolClient_8c.html#a447b65c664ebedef8fecb70e29dc1767',1,'MQTTProtocolClient.c']]], + ['myfree_785',['myfree',['../Heap_8c.html#a25214c297c998eba3cfc8282b1162c69',1,'Heap.c']]], + ['mymalloc_786',['mymalloc',['../Heap_8c.html#a59e53a989d69c3da767487596d9bfa1f',1,'Heap.c']]], + ['myrealloc_787',['myrealloc',['../Heap_8c.html#a699e6722cc8f195f853f09ac274413a3',1,'Heap.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_6.html b/docs/MQTTClient_internal/html/search/functions_6.html index dc70a4a0..9c4f5fc6 100644 --- a/docs/MQTTClient_internal/html/search/functions_6.html +++ b/docs/MQTTClient_internal/html/search/functions_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_6.js b/docs/MQTTClient_internal/html/search/functions_6.js index c0ec121e..af200fc5 100644 --- a/docs/MQTTClient_internal/html/search/functions_6.js +++ b/docs/MQTTClient_internal/html/search/functions_6.js @@ -1,14 +1,20 @@ var searchData= [ - ['pending_5fsocketcompare_778',['pending_socketcompare',['../SocketBuffer_8c.html#a39f1ee9c98bc12a7be4d7a40b03550d5',1,'SocketBuffer.c']]], - ['pstclear_779',['pstclear',['../MQTTPersistenceDefault_8c.html#a15b1457f7fd20dde1fd51ed434321e1a',1,'MQTTPersistenceDefault.c']]], - ['pstclose_780',['pstclose',['../MQTTPersistenceDefault_8c.html#a24f38d19ff3db61292d7b463e59174ef',1,'MQTTPersistenceDefault.c']]], - ['pstcontainskey_781',['pstcontainskey',['../MQTTPersistenceDefault_8c.html#a2a55461def3359a2b0aff6b3bb0644ad',1,'MQTTPersistenceDefault.c']]], - ['pstget_782',['pstget',['../MQTTPersistenceDefault_8c.html#a3aef9f9af29882fac9e76984e4c2954c',1,'MQTTPersistenceDefault.c']]], - ['pstkeys_783',['pstkeys',['../MQTTPersistenceDefault_8c.html#a9f358375b8e254983d00f8b057e97dd6',1,'MQTTPersistenceDefault.c']]], - ['pstmkdir_784',['pstmkdir',['../MQTTPersistenceDefault_8c.html#aecfbfa761dfca1b551d9ade325f480b1',1,'MQTTPersistenceDefault.c']]], - ['pstopen_785',['pstopen',['../MQTTPersistenceDefault_8c.html#a919cf4710a1f7d7ce0878599e9aa4700',1,'MQTTPersistenceDefault.c']]], - ['pstput_786',['pstput',['../MQTTPersistenceDefault_8c.html#a64e0c1a2fd06375b975d6643175572d8',1,'MQTTPersistenceDefault.c']]], - ['pstremove_787',['pstremove',['../MQTTPersistenceDefault_8c.html#a64b106b9a2778f97d271af7c9a7940f2',1,'MQTTPersistenceDefault.c']]], - ['ptrcompare_788',['ptrCompare',['../Heap_8c.html#a45db32d4f454f94d7f4574deced5ee33',1,'Heap.c']]] + ['paho_5fthread_5fcreate_5fmutex_788',['Paho_thread_create_mutex',['../Thread_8c.html#a4dc03e919803e0af06fabbd4f394a51c',1,'Thread.c']]], + ['paho_5fthread_5fdestroy_5fmutex_789',['Paho_thread_destroy_mutex',['../Thread_8c.html#ad2c1a28aa3f8ae9cdd6677fd5477b8e4',1,'Thread.c']]], + ['paho_5fthread_5fgetid_790',['Paho_thread_getid',['../Thread_8c.html#aa3e166167a73a02b488d49e724d161c4',1,'Thread.c']]], + ['paho_5fthread_5flock_5fmutex_791',['Paho_thread_lock_mutex',['../Thread_8c.html#a1c9cd0a1556e72719a5ed3f9cdf6686f',1,'Thread.c']]], + ['paho_5fthread_5fstart_792',['Paho_thread_start',['../Thread_8c.html#a342744cc2c60c981c4558475a759ca6c',1,'Thread.c']]], + ['paho_5fthread_5funlock_5fmutex_793',['Paho_thread_unlock_mutex',['../Thread_8c.html#a1c21203efa0c10544d24585870fe4757',1,'Thread.c']]], + ['pending_5fsocketcompare_794',['pending_socketcompare',['../SocketBuffer_8c.html#a39f1ee9c98bc12a7be4d7a40b03550d5',1,'SocketBuffer.c']]], + ['pstclear_795',['pstclear',['../MQTTPersistenceDefault_8c.html#a15b1457f7fd20dde1fd51ed434321e1a',1,'MQTTPersistenceDefault.c']]], + ['pstclose_796',['pstclose',['../MQTTPersistenceDefault_8c.html#a24f38d19ff3db61292d7b463e59174ef',1,'MQTTPersistenceDefault.c']]], + ['pstcontainskey_797',['pstcontainskey',['../MQTTPersistenceDefault_8c.html#a2a55461def3359a2b0aff6b3bb0644ad',1,'MQTTPersistenceDefault.c']]], + ['pstget_798',['pstget',['../MQTTPersistenceDefault_8c.html#a3aef9f9af29882fac9e76984e4c2954c',1,'MQTTPersistenceDefault.c']]], + ['pstkeys_799',['pstkeys',['../MQTTPersistenceDefault_8c.html#a9f358375b8e254983d00f8b057e97dd6',1,'MQTTPersistenceDefault.c']]], + ['pstmkdir_800',['pstmkdir',['../MQTTPersistenceDefault_8c.html#aecfbfa761dfca1b551d9ade325f480b1',1,'MQTTPersistenceDefault.c']]], + ['pstopen_801',['pstopen',['../MQTTPersistenceDefault_8c.html#a919cf4710a1f7d7ce0878599e9aa4700',1,'MQTTPersistenceDefault.c']]], + ['pstput_802',['pstput',['../MQTTPersistenceDefault_8c.html#a64e0c1a2fd06375b975d6643175572d8',1,'MQTTPersistenceDefault.c']]], + ['pstremove_803',['pstremove',['../MQTTPersistenceDefault_8c.html#a64b106b9a2778f97d271af7c9a7940f2',1,'MQTTPersistenceDefault.c']]], + ['ptrcompare_804',['ptrCompare',['../Heap_8c.html#a45db32d4f454f94d7f4574deced5ee33',1,'Heap.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_7.html b/docs/MQTTClient_internal/html/search/functions_7.html index 7de31067..46b5c0f6 100644 --- a/docs/MQTTClient_internal/html/search/functions_7.html +++ b/docs/MQTTClient_internal/html/search/functions_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_7.js b/docs/MQTTClient_internal/html/search/functions_7.js index 482c3252..c0b4c07f 100644 --- a/docs/MQTTClient_internal/html/search/functions_7.js +++ b/docs/MQTTClient_internal/html/search/functions_7.js @@ -1,8 +1,8 @@ var searchData= [ - ['readchar_789',['readChar',['../MQTTPacket_8c.html#aff1d10b221f5b4ce421b4c2588cbe511',1,'MQTTPacket.c']]], - ['readint_790',['readInt',['../MQTTPacket_8c.html#a132d2d5b304d37cd2348a973f7b315de',1,'MQTTPacket.c']]], - ['readint4_791',['readInt4',['../MQTTPacket_8c.html#aa8fc559d3a1e58ab50e69146666f2f63',1,'MQTTPacket.c']]], - ['readutf_792',['readUTF',['../MQTTPacket_8c.html#adca3afbe588ae7e6f342c5a697e4ee45',1,'MQTTPacket.c']]], - ['readutflen_793',['readUTFlen',['../MQTTPacket_8c.html#ae1ec2d8714335c6ec88c93e957b644d2',1,'MQTTPacket.c']]] + ['readchar_805',['readChar',['../MQTTPacket_8c.html#aff1d10b221f5b4ce421b4c2588cbe511',1,'MQTTPacket.c']]], + ['readint_806',['readInt',['../MQTTPacket_8c.html#a132d2d5b304d37cd2348a973f7b315de',1,'MQTTPacket.c']]], + ['readint4_807',['readInt4',['../MQTTPacket_8c.html#a84586f1ffeb9d37e7aeb695ec5bebe1d',1,'MQTTPacket.c']]], + ['readutf_808',['readUTF',['../MQTTPacket_8c.html#adca3afbe588ae7e6f342c5a697e4ee45',1,'MQTTPacket.c']]], + ['readutflen_809',['readUTFlen',['../MQTTPacket_8c.html#ae1ec2d8714335c6ec88c93e957b644d2',1,'MQTTPacket.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_8.html b/docs/MQTTClient_internal/html/search/functions_8.html index 7422be24..31a1d950 100644 --- a/docs/MQTTClient_internal/html/search/functions_8.html +++ b/docs/MQTTClient_internal/html/search/functions_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_8.js b/docs/MQTTClient_internal/html/search/functions_8.js index 4c380975..7c4a4320 100644 --- a/docs/MQTTClient_internal/html/search/functions_8.js +++ b/docs/MQTTClient_internal/html/search/functions_8.js @@ -1,40 +1,40 @@ var searchData= [ - ['socket_5fabortwrite_794',['Socket_abortWrite',['../Socket_8c.html#aa24d7c85b03f09f16c78de0c1a9b3580',1,'Socket.c']]], - ['socket_5faddpendingwrite_795',['Socket_addPendingWrite',['../Socket_8c.html#a65be62649c8529bcafa111e37ffcb5d2',1,'Socket.c']]], - ['socket_5faddsocket_796',['Socket_addSocket',['../Socket_8c.html#a4c933d467e9ab2848b9590fe45f21f2f',1,'Socket.c']]], - ['socket_5fclearpendingwrite_797',['Socket_clearPendingWrite',['../Socket_8c.html#a3274d9743dd4d1c6e9392b74164d6379',1,'Socket.c']]], - ['socket_5fclose_798',['Socket_close',['../Socket_8c.html#a9da80ce7e69ae76dee95c94a2349c462',1,'Socket.c']]], - ['socket_5fclose_5fonly_799',['Socket_close_only',['../Socket_8c.html#a0e0f2981efa6caf604e8f0fc1072af90',1,'Socket.c']]], - ['socket_5fcontinuewrite_800',['Socket_continueWrite',['../Socket_8c.html#aa77cff9e8173f9b8d35d062558d0cb57',1,'Socket.c']]], - ['socket_5fcontinuewrites_801',['Socket_continueWrites',['../Socket_8c.html#ac176152ef036b6cfd7330a9481a7b2ed',1,'Socket.c']]], - ['socket_5ferror_802',['Socket_error',['../Socket_8c.html#a39a32a0495e5cba033f3c7fee72ae797',1,'Socket.c']]], - ['socket_5fgetaddrname_803',['Socket_getaddrname',['../Socket_8c.html#a212e51c4ce12e19be59c4d0f93cfb5d9',1,'Socket.c']]], - ['socket_5fgetch_804',['Socket_getch',['../Socket_8c.html#a01e567eb0c5db3193aaa02f117fd1137',1,'Socket.c']]], - ['socket_5fgetdata_805',['Socket_getdata',['../Socket_8c.html#a12c397b0fb6187db7a66a44041055a13',1,'Socket.c']]], - ['socket_5fgetpeer_806',['Socket_getpeer',['../Socket_8c.html#af10088907080a5c517ee23ac022f6538',1,'Socket.c']]], - ['socket_5fgetreadysocket_807',['Socket_getReadySocket',['../Socket_8c.html#ab33a53c9fce80d5dfeb26426b157034a',1,'Socket.c']]], - ['socket_5fnew_808',['Socket_new',['../Socket_8c.html#accf7d8d1529e31b2ad8286627cb662c0',1,'Socket.c']]], - ['socket_5fnopendingwrites_809',['Socket_noPendingWrites',['../Socket_8c.html#a457d9a6a9d8e886c46fcd0c096f45614',1,'Socket.c']]], - ['socket_5foutinitialize_810',['Socket_outInitialize',['../Socket_8c.html#a573a6eea727016f3e8770f60e5eed958',1,'Socket.c']]], - ['socket_5foutterminate_811',['Socket_outTerminate',['../Socket_8c.html#af365aa1d5a29ffcb83bb15edaf3401e6',1,'Socket.c']]], - ['socket_5fputdatas_812',['Socket_putdatas',['../Socket_8c.html#a8fac284bb799c180ef68bb5c7b4b1df4',1,'Socket.c']]], - ['socket_5fsetnonblocking_813',['Socket_setnonblocking',['../Socket_8c.html#ab8ff50df7c89391178aa754083d2f828',1,'Socket.c']]], - ['socket_5fwritev_814',['Socket_writev',['../Socket_8c.html#a550291985042dc080825ab27b16894fb',1,'Socket.c']]], - ['socketbuffer_5fcleanup_815',['SocketBuffer_cleanup',['../SocketBuffer_8c.html#abb5eae96f4c62d1e6fefed8d078ecba8',1,'SocketBuffer.c']]], - ['socketbuffer_5fcomplete_816',['SocketBuffer_complete',['../SocketBuffer_8c.html#a8b7b6acbf2ec65796c32da7fd55c3ee8',1,'SocketBuffer.c']]], - ['socketbuffer_5ffreedefq_817',['SocketBuffer_freeDefQ',['../SocketBuffer_8c.html#acb4511a3a4767187a2607027aff718b8',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetqueuedchar_818',['SocketBuffer_getQueuedChar',['../SocketBuffer_8c.html#a999ec229faa4b2e2c0f7db87693bc1f8',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetqueueddata_819',['SocketBuffer_getQueuedData',['../SocketBuffer_8c.html#afcc9b9b6bd255b0a6e4c7e4f5a36bb37',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetwrite_820',['SocketBuffer_getWrite',['../SocketBuffer_8c.html#a524311e577a7225a09fb944904c17886',1,'SocketBuffer.c']]], - ['socketbuffer_5finitialize_821',['SocketBuffer_initialize',['../SocketBuffer_8c.html#abc8599ffc6f7ad91a7748e5d78bbd926',1,'SocketBuffer.c']]], - ['socketbuffer_5finterrupted_822',['SocketBuffer_interrupted',['../SocketBuffer_8c.html#a412a40b44b12901e63e662ac0e5be0af',1,'SocketBuffer.c']]], - ['socketbuffer_5fnewdefq_823',['SocketBuffer_newDefQ',['../SocketBuffer_8c.html#a9293d4ef45aa2a51baab9be4eb73091b',1,'SocketBuffer.c']]], - ['socketbuffer_5fpendingwrite_824',['SocketBuffer_pendingWrite',['../SocketBuffer_8c.html#aa61a564b814b06d9cfd3fe9ce7ab1cf7',1,'SocketBuffer.c']]], - ['socketbuffer_5fqueuechar_825',['SocketBuffer_queueChar',['../SocketBuffer_8c.html#a2f6bac9a46fd116e58071ff49152d716',1,'SocketBuffer.c']]], - ['socketbuffer_5fterminate_826',['SocketBuffer_terminate',['../SocketBuffer_8c.html#a4a8d6188b4775789810a44396d05cf19',1,'SocketBuffer.c']]], - ['socketbuffer_5fupdatewrite_827',['SocketBuffer_updateWrite',['../SocketBuffer_8c.html#a7ba9075e011f49302304ce7b2d8e5b59',1,'SocketBuffer.c']]], - ['socketbuffer_5fwritecomplete_828',['SocketBuffer_writeComplete',['../SocketBuffer_8c.html#ae8667990c5933c3af9b90a163bba34dc',1,'SocketBuffer.c']]], - ['socketcompare_829',['socketcompare',['../SocketBuffer_8c.html#acebc1cbb93be4588f33b04ed404f6dbf',1,'SocketBuffer.c']]], - ['stringcompare_830',['stringcompare',['../LinkedList_8c.html#a936806c4b6f6c10d91cc128b63ab110c',1,'LinkedList.c']]] + ['socket_5fabortwrite_810',['Socket_abortWrite',['../Socket_8c.html#aa24d7c85b03f09f16c78de0c1a9b3580',1,'Socket.c']]], + ['socket_5faddpendingwrite_811',['Socket_addPendingWrite',['../Socket_8c.html#a65be62649c8529bcafa111e37ffcb5d2',1,'Socket.c']]], + ['socket_5faddsocket_812',['Socket_addSocket',['../Socket_8c.html#a4c933d467e9ab2848b9590fe45f21f2f',1,'Socket.c']]], + ['socket_5fclearpendingwrite_813',['Socket_clearPendingWrite',['../Socket_8c.html#a3274d9743dd4d1c6e9392b74164d6379',1,'Socket.c']]], + ['socket_5fclose_814',['Socket_close',['../Socket_8c.html#a9da80ce7e69ae76dee95c94a2349c462',1,'Socket.c']]], + ['socket_5fclose_5fonly_815',['Socket_close_only',['../Socket_8c.html#a0e0f2981efa6caf604e8f0fc1072af90',1,'Socket.c']]], + ['socket_5fcontinuewrite_816',['Socket_continueWrite',['../Socket_8c.html#aa77cff9e8173f9b8d35d062558d0cb57',1,'Socket.c']]], + ['socket_5fcontinuewrites_817',['Socket_continueWrites',['../Socket_8c.html#ac176152ef036b6cfd7330a9481a7b2ed',1,'Socket.c']]], + ['socket_5ferror_818',['Socket_error',['../Socket_8c.html#a39a32a0495e5cba033f3c7fee72ae797',1,'Socket.c']]], + ['socket_5fgetaddrname_819',['Socket_getaddrname',['../Socket_8c.html#a212e51c4ce12e19be59c4d0f93cfb5d9',1,'Socket.c']]], + ['socket_5fgetch_820',['Socket_getch',['../Socket_8c.html#a01e567eb0c5db3193aaa02f117fd1137',1,'Socket.c']]], + ['socket_5fgetdata_821',['Socket_getdata',['../Socket_8c.html#a12c397b0fb6187db7a66a44041055a13',1,'Socket.c']]], + ['socket_5fgetpeer_822',['Socket_getpeer',['../Socket_8c.html#af10088907080a5c517ee23ac022f6538',1,'Socket.c']]], + ['socket_5fgetreadysocket_823',['Socket_getReadySocket',['../Socket_8c.html#ab33a53c9fce80d5dfeb26426b157034a',1,'Socket.c']]], + ['socket_5fnew_824',['Socket_new',['../Socket_8c.html#accf7d8d1529e31b2ad8286627cb662c0',1,'Socket.c']]], + ['socket_5fnopendingwrites_825',['Socket_noPendingWrites',['../Socket_8c.html#a457d9a6a9d8e886c46fcd0c096f45614',1,'Socket.c']]], + ['socket_5foutinitialize_826',['Socket_outInitialize',['../Socket_8c.html#a573a6eea727016f3e8770f60e5eed958',1,'Socket.c']]], + ['socket_5foutterminate_827',['Socket_outTerminate',['../Socket_8c.html#af365aa1d5a29ffcb83bb15edaf3401e6',1,'Socket.c']]], + ['socket_5fputdatas_828',['Socket_putdatas',['../Socket_8c.html#a8fac284bb799c180ef68bb5c7b4b1df4',1,'Socket.c']]], + ['socket_5fsetnonblocking_829',['Socket_setnonblocking',['../Socket_8c.html#ab8ff50df7c89391178aa754083d2f828',1,'Socket.c']]], + ['socket_5fwritev_830',['Socket_writev',['../Socket_8c.html#a550291985042dc080825ab27b16894fb',1,'Socket.c']]], + ['socketbuffer_5fcleanup_831',['SocketBuffer_cleanup',['../SocketBuffer_8c.html#abb5eae96f4c62d1e6fefed8d078ecba8',1,'SocketBuffer.c']]], + ['socketbuffer_5fcomplete_832',['SocketBuffer_complete',['../SocketBuffer_8c.html#a8b7b6acbf2ec65796c32da7fd55c3ee8',1,'SocketBuffer.c']]], + ['socketbuffer_5ffreedefq_833',['SocketBuffer_freeDefQ',['../SocketBuffer_8c.html#acb4511a3a4767187a2607027aff718b8',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetqueuedchar_834',['SocketBuffer_getQueuedChar',['../SocketBuffer_8c.html#a999ec229faa4b2e2c0f7db87693bc1f8',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetqueueddata_835',['SocketBuffer_getQueuedData',['../SocketBuffer_8c.html#afcc9b9b6bd255b0a6e4c7e4f5a36bb37',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetwrite_836',['SocketBuffer_getWrite',['../SocketBuffer_8c.html#a524311e577a7225a09fb944904c17886',1,'SocketBuffer.c']]], + ['socketbuffer_5finitialize_837',['SocketBuffer_initialize',['../SocketBuffer_8c.html#abc8599ffc6f7ad91a7748e5d78bbd926',1,'SocketBuffer.c']]], + ['socketbuffer_5finterrupted_838',['SocketBuffer_interrupted',['../SocketBuffer_8c.html#a412a40b44b12901e63e662ac0e5be0af',1,'SocketBuffer.c']]], + ['socketbuffer_5fnewdefq_839',['SocketBuffer_newDefQ',['../SocketBuffer_8c.html#a9293d4ef45aa2a51baab9be4eb73091b',1,'SocketBuffer.c']]], + ['socketbuffer_5fpendingwrite_840',['SocketBuffer_pendingWrite',['../SocketBuffer_8c.html#aa61a564b814b06d9cfd3fe9ce7ab1cf7',1,'SocketBuffer.c']]], + ['socketbuffer_5fqueuechar_841',['SocketBuffer_queueChar',['../SocketBuffer_8c.html#a2f6bac9a46fd116e58071ff49152d716',1,'SocketBuffer.c']]], + ['socketbuffer_5fterminate_842',['SocketBuffer_terminate',['../SocketBuffer_8c.html#a4a8d6188b4775789810a44396d05cf19',1,'SocketBuffer.c']]], + ['socketbuffer_5fupdatewrite_843',['SocketBuffer_updateWrite',['../SocketBuffer_8c.html#a7ba9075e011f49302304ce7b2d8e5b59',1,'SocketBuffer.c']]], + ['socketbuffer_5fwritecomplete_844',['SocketBuffer_writeComplete',['../SocketBuffer_8c.html#ae8667990c5933c3af9b90a163bba34dc',1,'SocketBuffer.c']]], + ['socketcompare_845',['socketcompare',['../SocketBuffer_8c.html#acebc1cbb93be4588f33b04ed404f6dbf',1,'SocketBuffer.c']]], + ['stringcompare_846',['stringcompare',['../LinkedList_8c.html#a936806c4b6f6c10d91cc128b63ab110c',1,'LinkedList.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_9.html b/docs/MQTTClient_internal/html/search/functions_9.html index befd4faa..9a8e4290 100644 --- a/docs/MQTTClient_internal/html/search/functions_9.html +++ b/docs/MQTTClient_internal/html/search/functions_9.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_9.js b/docs/MQTTClient_internal/html/search/functions_9.js index 209b2ebe..b972a008 100644 --- a/docs/MQTTClient_internal/html/search/functions_9.js +++ b/docs/MQTTClient_internal/html/search/functions_9.js @@ -1,22 +1,16 @@ var searchData= [ - ['thread_5fcheck_5fsem_831',['Thread_check_sem',['../Thread_8c.html#ad327c467c568b27be4c3676fc698e129',1,'Thread.c']]], - ['thread_5fcreate_5fcond_832',['Thread_create_cond',['../Thread_8c.html#afdd152c518f968c777012d7dfb20ef96',1,'Thread.c']]], - ['thread_5fcreate_5fmutex_833',['Thread_create_mutex',['../Thread_8c.html#a6c1b6aaeb2f7e1d5b4a4936f0568b868',1,'Thread.c']]], - ['thread_5fcreate_5fsem_834',['Thread_create_sem',['../Thread_8c.html#a3b9b6cb543ee55442d2037a971f651db',1,'Thread.c']]], - ['thread_5fdestroy_5fcond_835',['Thread_destroy_cond',['../Thread_8c.html#a95309628f2c15de1f3ea8047b086a707',1,'Thread.c']]], - ['thread_5fdestroy_5fmutex_836',['Thread_destroy_mutex',['../Thread_8c.html#ab586558bf9d7030f479ca574ea7e55a4',1,'Thread.c']]], - ['thread_5fdestroy_5fsem_837',['Thread_destroy_sem',['../Thread_8c.html#ad075ec07f801ac1a2a7dee7097048182',1,'Thread.c']]], - ['thread_5fgetid_838',['Thread_getid',['../Thread_8c.html#a216e79bc196440343aa802dfad8dc38b',1,'Thread.c']]], - ['thread_5flock_5fmutex_839',['Thread_lock_mutex',['../Thread_8c.html#a7e92185eb22775c76e1b6b8865468f17',1,'Thread.c']]], - ['thread_5fpost_5fsem_840',['Thread_post_sem',['../Thread_8c.html#ac023f527bed9c6c3a20244fa7efe272c',1,'Thread.c']]], - ['thread_5fsignal_5fcond_841',['Thread_signal_cond',['../Thread_8c.html#a7b0d40dc1603a6e93db0ee970bb6750f',1,'Thread.c']]], - ['thread_5fstart_842',['Thread_start',['../Thread_8c.html#a25288643d5e1a2ab1369132a80c58ce4',1,'Thread.c']]], - ['thread_5funlock_5fmutex_843',['Thread_unlock_mutex',['../Thread_8c.html#a5faf758226199e7cf93f6b489aca07f7',1,'Thread.c']]], - ['thread_5fwait_5fcond_844',['Thread_wait_cond',['../Thread_8c.html#acd23266878de6faaee0a972ef74c4db6',1,'Thread.c']]], - ['thread_5fwait_5fsem_845',['Thread_wait_sem',['../Thread_8c.html#a4d0bbfc059da3cd10626244d3468d319',1,'Thread.c']]], - ['treeaddbyindex_846',['TreeAddByIndex',['../Tree_8c.html#afa8473167abb71831644bf8a322bc3b6',1,'Tree.c']]], - ['treeinitialize_847',['TreeInitialize',['../Tree_8c.html#aa5ee1e466d266b289dc45cbd97116b83',1,'Tree.c']]], - ['treeremoveindex_848',['TreeRemoveIndex',['../Tree_8c.html#a1263bdfc6a906db3023ca1a6ad5302a4',1,'Tree.c']]], - ['treeremovenodeindex_849',['TreeRemoveNodeIndex',['../Tree_8c.html#a9c3b81e7e63498e3a8f7bd28c4caec10',1,'Tree.c']]] + ['thread_5fcheck_5fsem_847',['Thread_check_sem',['../Thread_8c.html#ad327c467c568b27be4c3676fc698e129',1,'Thread.c']]], + ['thread_5fcreate_5fcond_848',['Thread_create_cond',['../Thread_8c.html#afdd152c518f968c777012d7dfb20ef96',1,'Thread.c']]], + ['thread_5fcreate_5fsem_849',['Thread_create_sem',['../Thread_8c.html#a3b9b6cb543ee55442d2037a971f651db',1,'Thread.c']]], + ['thread_5fdestroy_5fcond_850',['Thread_destroy_cond',['../Thread_8c.html#a95309628f2c15de1f3ea8047b086a707',1,'Thread.c']]], + ['thread_5fdestroy_5fsem_851',['Thread_destroy_sem',['../Thread_8c.html#ad075ec07f801ac1a2a7dee7097048182',1,'Thread.c']]], + ['thread_5fpost_5fsem_852',['Thread_post_sem',['../Thread_8c.html#ac023f527bed9c6c3a20244fa7efe272c',1,'Thread.c']]], + ['thread_5fsignal_5fcond_853',['Thread_signal_cond',['../Thread_8c.html#a7b0d40dc1603a6e93db0ee970bb6750f',1,'Thread.c']]], + ['thread_5fwait_5fcond_854',['Thread_wait_cond',['../Thread_8c.html#acd23266878de6faaee0a972ef74c4db6',1,'Thread.c']]], + ['thread_5fwait_5fsem_855',['Thread_wait_sem',['../Thread_8c.html#a4d0bbfc059da3cd10626244d3468d319',1,'Thread.c']]], + ['treeaddbyindex_856',['TreeAddByIndex',['../Tree_8c.html#afa8473167abb71831644bf8a322bc3b6',1,'Tree.c']]], + ['treeinitialize_857',['TreeInitialize',['../Tree_8c.html#aa5ee1e466d266b289dc45cbd97116b83',1,'Tree.c']]], + ['treeremoveindex_858',['TreeRemoveIndex',['../Tree_8c.html#a1263bdfc6a906db3023ca1a6ad5302a4',1,'Tree.c']]], + ['treeremovenodeindex_859',['TreeRemoveNodeIndex',['../Tree_8c.html#a9c3b81e7e63498e3a8f7bd28c4caec10',1,'Tree.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_a.html b/docs/MQTTClient_internal/html/search/functions_a.html index a81e9633..5ecc152c 100644 --- a/docs/MQTTClient_internal/html/search/functions_a.html +++ b/docs/MQTTClient_internal/html/search/functions_a.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_a.js b/docs/MQTTClient_internal/html/search/functions_a.js index 3a435d7e..14cad9ec 100644 --- a/docs/MQTTClient_internal/html/search/functions_a.js +++ b/docs/MQTTClient_internal/html/search/functions_a.js @@ -1,6 +1,6 @@ var searchData= [ - ['utf8_5fchar_5fvalidate_850',['UTF8_char_validate',['../utf-8_8c.html#a9727caa7417e6bed8cfad4121a22628d',1,'utf-8.c']]], - ['utf8_5fvalidate_851',['UTF8_validate',['../utf-8_8c.html#ad2012627fca4b4bdd9f67bde49b0d1cb',1,'utf-8.c']]], - ['utf8_5fvalidatestring_852',['UTF8_validateString',['../utf-8_8c.html#a4f3cf77538d867bb5b421bcb687dccdf',1,'utf-8.c']]] + ['utf8_5fchar_5fvalidate_860',['UTF8_char_validate',['../utf-8_8c.html#a9727caa7417e6bed8cfad4121a22628d',1,'utf-8.c']]], + ['utf8_5fvalidate_861',['UTF8_validate',['../utf-8_8c.html#ad2012627fca4b4bdd9f67bde49b0d1cb',1,'utf-8.c']]], + ['utf8_5fvalidatestring_862',['UTF8_validateString',['../utf-8_8c.html#a4f3cf77538d867bb5b421bcb687dccdf',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_b.html b/docs/MQTTClient_internal/html/search/functions_b.html index 345265d6..e301fedd 100644 --- a/docs/MQTTClient_internal/html/search/functions_b.html +++ b/docs/MQTTClient_internal/html/search/functions_b.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/functions_b.js b/docs/MQTTClient_internal/html/search/functions_b.js index a46eb060..44ed2bd4 100644 --- a/docs/MQTTClient_internal/html/search/functions_b.js +++ b/docs/MQTTClient_internal/html/search/functions_b.js @@ -1,8 +1,8 @@ var searchData= [ - ['writechar_853',['writeChar',['../MQTTPacket_8c.html#ad29ec8b2fbf0ec0195621b44f8945923',1,'MQTTPacket.c']]], - ['writedata_854',['writeData',['../MQTTPacket_8c.html#a8886398fbf89872f8e593444d351a5aa',1,'MQTTPacket.c']]], - ['writeint_855',['writeInt',['../MQTTPacket_8c.html#a07aa0146eda3d32979142e7df8ad5fc3',1,'MQTTPacket.c']]], - ['writeint4_856',['writeInt4',['../MQTTPacket_8c.html#aefc0aa52c1cb13fa7bfcd77810d6a617',1,'MQTTPacket.c']]], - ['writeutf_857',['writeUTF',['../MQTTPacket_8c.html#af0fcaa11ac05ce448a433a53f9cae420',1,'MQTTPacket.c']]] + ['writechar_863',['writeChar',['../MQTTPacket_8c.html#ad29ec8b2fbf0ec0195621b44f8945923',1,'MQTTPacket.c']]], + ['writedata_864',['writeData',['../MQTTPacket_8c.html#a8886398fbf89872f8e593444d351a5aa',1,'MQTTPacket.c']]], + ['writeint_865',['writeInt',['../MQTTPacket_8c.html#a07aa0146eda3d32979142e7df8ad5fc3',1,'MQTTPacket.c']]], + ['writeint4_866',['writeInt4',['../MQTTPacket_8c.html#aa9130985a524757f3f0d4e00d21cd680',1,'MQTTPacket.c']]], + ['writeutf_867',['writeUTF',['../MQTTPacket_8c.html#af0fcaa11ac05ce448a433a53f9cae420',1,'MQTTPacket.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/mag_sel.png b/docs/MQTTClient_internal/html/search/mag_sel.png deleted file mode 100644 index 39c0ed52..00000000 Binary files a/docs/MQTTClient_internal/html/search/mag_sel.png and /dev/null differ diff --git a/docs/MQTTClient_internal/html/search/mag_sel.svg b/docs/MQTTClient_internal/html/search/mag_sel.svg new file mode 100644 index 00000000..03626f64 --- /dev/null +++ b/docs/MQTTClient_internal/html/search/mag_sel.svg @@ -0,0 +1,74 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/search/nomatches.html b/docs/MQTTClient_internal/html/search/nomatches.html index 43773208..2b9360b6 100644 --- a/docs/MQTTClient_internal/html/search/nomatches.html +++ b/docs/MQTTClient_internal/html/search/nomatches.html @@ -1,5 +1,6 @@ - + + diff --git a/docs/MQTTClient_internal/html/search/pages_0.html b/docs/MQTTClient_internal/html/search/pages_0.html index 9a6a29ad..8517b48f 100644 --- a/docs/MQTTClient_internal/html/search/pages_0.html +++ b/docs/MQTTClient_internal/html/search/pages_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/pages_0.js b/docs/MQTTClient_internal/html/search/pages_0.js index 00c3c44c..2d4b72f4 100644 --- a/docs/MQTTClient_internal/html/search/pages_0.js +++ b/docs/MQTTClient_internal/html/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['mqtt_20client_20library_20internals_1064',['MQTT Client Library Internals',['../index.html',1,'']]] + ['mqtt_20client_20library_20internals_1077',['MQTT Client Library Internals',['../index.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/search.css b/docs/MQTTClient_internal/html/search/search.css index 3cf9df94..9074198f 100644 --- a/docs/MQTTClient_internal/html/search/search.css +++ b/docs/MQTTClient_internal/html/search/search.css @@ -1,98 +1,82 @@ /*---------------- Search Box */ -#FSearchBox { - float: left; -} - #MSearchBox { white-space : nowrap; - float: none; - margin-top: 8px; - right: 0px; - width: 170px; - height: 24px; + background: white; + border-radius: 0.65em; + box-shadow: inset 0.5px 0.5px 3px 0px #555; z-index: 102; } -#MSearchBox .left -{ - display:block; - position:absolute; - left:10px; - width:20px; - height:19px; - background:url('search_l.png') no-repeat; - background-position:right; +#MSearchBox .left { + display: inline-block; + vertical-align: middle; + height: 1.4em; } #MSearchSelect { - display:block; - position:absolute; - width:20px; - height:19px; -} - -.left #MSearchSelect { - left:4px; -} - -.right #MSearchSelect { - right:5px; + display: inline-block; + vertical-align: middle; + height: 1.4em; + padding: 0 0 0 0.3em; + margin: 0; } #MSearchField { - display:block; - position:absolute; - height:19px; - background:url('search_m.png') repeat-x; + display: inline-block; + vertical-align: middle; + width: 7.5em; + height: 1.1em; + margin: 0 0.15em; + padding: 0; + line-height: 1em; border:none; - width:115px; - margin-left:20px; - padding-left:4px; color: #909090; outline: none; - font: 9pt Arial, Verdana, sans-serif; + font-family: Arial, Verdana, sans-serif; -webkit-border-radius: 0px; + border-radius: 0px; + background: none; } -#FSearchBox #MSearchField { - margin-left:15px; -} #MSearchBox .right { - display:block; - position:absolute; - right:10px; - top:8px; - width:20px; - height:19px; - background:url('search_r.png') no-repeat; - background-position:left; + display: inline-block; + vertical-align: middle; + width: 1.4em; + height: 1.4em; } #MSearchClose { display: none; - position: absolute; - top: 4px; + font-size: inherit; background : none; border: none; - margin: 0px 4px 0px 0px; - padding: 0px 0px; + margin: 0; + padding: 0; outline: none; + } -.left #MSearchClose { - left: 6px; -} - -.right #MSearchClose { - right: 2px; +#MSearchCloseImg { + height: 1.4em; + padding: 0.3em; + margin: 0; } .MSearchBoxActive #MSearchField { color: #000000; } +#main-menu > li:last-child { + /* This
      • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + /*---------------- Search filter selection */ #MSearchSelectWindow { @@ -220,19 +204,21 @@ a.SRScope:focus, a.SRScope:active { span.SRScope { padding-left: 4px; + font-family: Arial, Verdana, sans-serif; } .SRPage .SRStatus { padding: 2px 5px; font-size: 8pt; font-style: italic; + font-family: Arial, Verdana, sans-serif; } .SRResult { display: none; } -DIV.searchresults { +div.searchresults { margin-left: 10px; margin-right: 10px; } diff --git a/docs/MQTTClient_internal/html/search/search.js b/docs/MQTTClient_internal/html/search/search.js index a554ab9c..fb226f73 100644 --- a/docs/MQTTClient_internal/html/search/search.js +++ b/docs/MQTTClient_internal/html/search/search.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function convertToId(search) { @@ -79,9 +80,10 @@ function getYPos(item) storing this instance. Is needed to be able to set timeouts. resultPath - path to use for external files */ -function SearchBox(name, resultsPath, inFrame, label) +function SearchBox(name, resultsPath, inFrame, label, extension) { if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); } + if (!extension || extension == "") { extension = ".html"; } // ---------- Instance variables this.name = name; @@ -96,6 +98,7 @@ function SearchBox(name, resultsPath, inFrame, label) this.searchActive = false; this.insideFrame = inFrame; this.searchLabel = label; + this.extension = extension; // ----------- DOM Elements @@ -200,10 +203,9 @@ function SearchBox(name, resultsPath, inFrame, label) } return; } - else if (window.frames.MSearchResults.searchResults) + else { - var elem = window.frames.MSearchResults.searchResults.NavNext(0); - if (elem) elem.focus(); + window.frames.MSearchResults.postMessage("take_focus", "*"); } } else if (e.keyCode==27) // Escape out of the search field @@ -347,13 +349,13 @@ function SearchBox(name, resultsPath, inFrame, label) if (idx!=-1) { var hexCode=idx.toString(16); - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + this.extension; resultsPageWithSearch = resultsPage+'?'+escape(searchValue); hasResultsPage = true; } else // nothing available for this search term { - resultsPage = this.resultsPath + '/nomatches.html'; + resultsPage = this.resultsPath + '/nomatches' + this.extension; resultsPageWithSearch = resultsPage; hasResultsPage = false; } @@ -364,7 +366,7 @@ function SearchBox(name, resultsPath, inFrame, label) if (domPopupSearchResultsWindow.style.display!='block') { var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline'; + this.DOMSearchClose().style.display = 'inline-block'; if (this.insideFrame) { var domPopupSearchResults = this.DOMPopupSearchResults(); @@ -439,12 +441,12 @@ function SearchResults(name) while (element && element!=parentElement) { - if (element.nodeName == 'DIV' && element.className == 'SRChildren') + if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') { return element; } - if (element.nodeName == 'DIV' && element.hasChildNodes()) + if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) { element = element.firstChild; } diff --git a/docs/MQTTClient_internal/html/search/searchdata.js b/docs/MQTTClient_internal/html/search/searchdata.js index dbb25599..bd6d6f23 100644 --- a/docs/MQTTClient_internal/html/search/searchdata.js +++ b/docs/MQTTClient_internal/html/search/searchdata.js @@ -6,7 +6,7 @@ var indexSectionsWithContent = 3: "cfhilmprstuw", 4: "_abcdefghiklmnopqrstuvw", 5: "mp", - 6: "_am", + 6: "_amp", 7: "m" }; diff --git a/docs/MQTTClient_internal/html/search/typedefs_0.html b/docs/MQTTClient_internal/html/search/typedefs_0.html index 376db479..a4684c4a 100644 --- a/docs/MQTTClient_internal/html/search/typedefs_0.html +++ b/docs/MQTTClient_internal/html/search/typedefs_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/typedefs_0.js b/docs/MQTTClient_internal/html/search/typedefs_0.js index f5b2db2f..d045bdd4 100644 --- a/docs/MQTTClient_internal/html/search/typedefs_0.js +++ b/docs/MQTTClient_internal/html/search/typedefs_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['mqttpersistence_5fafterread_1048',['MQTTPersistence_afterRead',['../MQTTClientPersistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], - ['mqttpersistence_5fbeforewrite_1049',['MQTTPersistence_beforeWrite',['../MQTTClientPersistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]] + ['mqttpersistence_5fafterread_1060',['MQTTPersistence_afterRead',['../MQTTClientPersistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], + ['mqttpersistence_5fbeforewrite_1061',['MQTTPersistence_beforeWrite',['../MQTTClientPersistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]] ]; diff --git a/docs/MQTTClient_internal/html/search/typedefs_1.html b/docs/MQTTClient_internal/html/search/typedefs_1.html index 9b8bf72f..46cf01e6 100644 --- a/docs/MQTTClient_internal/html/search/typedefs_1.html +++ b/docs/MQTTClient_internal/html/search/typedefs_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/typedefs_1.js b/docs/MQTTClient_internal/html/search/typedefs_1.js index d55f9704..c8372f5f 100644 --- a/docs/MQTTClient_internal/html/search/typedefs_1.js +++ b/docs/MQTTClient_internal/html/search/typedefs_1.js @@ -1,11 +1,11 @@ var searchData= [ - ['persistence_5fclear_1050',['Persistence_clear',['../MQTTClientPersistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], - ['persistence_5fclose_1051',['Persistence_close',['../MQTTClientPersistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], - ['persistence_5fcontainskey_1052',['Persistence_containskey',['../MQTTClientPersistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], - ['persistence_5fget_1053',['Persistence_get',['../MQTTClientPersistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], - ['persistence_5fkeys_1054',['Persistence_keys',['../MQTTClientPersistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], - ['persistence_5fopen_1055',['Persistence_open',['../MQTTClientPersistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], - ['persistence_5fput_1056',['Persistence_put',['../MQTTClientPersistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], - ['persistence_5fremove_1057',['Persistence_remove',['../MQTTClientPersistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]] + ['persistence_5fclear_1062',['Persistence_clear',['../MQTTClientPersistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], + ['persistence_5fclose_1063',['Persistence_close',['../MQTTClientPersistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], + ['persistence_5fcontainskey_1064',['Persistence_containskey',['../MQTTClientPersistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], + ['persistence_5fget_1065',['Persistence_get',['../MQTTClientPersistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], + ['persistence_5fkeys_1066',['Persistence_keys',['../MQTTClientPersistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], + ['persistence_5fopen_1067',['Persistence_open',['../MQTTClientPersistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], + ['persistence_5fput_1068',['Persistence_put',['../MQTTClientPersistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], + ['persistence_5fremove_1069',['Persistence_remove',['../MQTTClientPersistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_0.html b/docs/MQTTClient_internal/html/search/variables_0.html index bf3eba5c..1e477c08 100644 --- a/docs/MQTTClient_internal/html/search/variables_0.html +++ b/docs/MQTTClient_internal/html/search/variables_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_0.js b/docs/MQTTClient_internal/html/search/variables_0.js index 3101088e..7b98c6ac 100644 --- a/docs/MQTTClient_internal/html/search/variables_0.js +++ b/docs/MQTTClient_internal/html/search/variables_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5f_5fpad0_5f_5f_858',['__pad0__',['../structConnect.html#a9a33c7cfd83c02e341a8326683fa84d8',1,'Connect']]] + ['_5f_5fpad0_5f_5f_868',['__pad0__',['../structConnect.html#a9a33c7cfd83c02e341a8326683fa84d8',1,'Connect']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_1.html b/docs/MQTTClient_internal/html/search/variables_1.html index 49fe59a1..ea73d9a4 100644 --- a/docs/MQTTClient_internal/html/search/variables_1.html +++ b/docs/MQTTClient_internal/html/search/variables_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_1.js b/docs/MQTTClient_internal/html/search/variables_1.js index 70633c79..8a03df17 100644 --- a/docs/MQTTClient_internal/html/search/variables_1.js +++ b/docs/MQTTClient_internal/html/search/variables_1.js @@ -1,11 +1,11 @@ var searchData= [ - ['afterread_859',['afterRead',['../structClients.html#a32899a8e944eef969c834833388fb91e',1,'Clients']]], - ['afterread_5fcontext_860',['afterRead_context',['../structClients.html#a429110f440ce0de51d60324fa8b8cc57',1,'Clients']]], - ['all_861',['all',['../structConnect.html#a7a4ee927261ade96ec6a800978f37970',1,'Connect::all()'],['../structConnack.html#aa2355d305cb311d356af339c44a852c7',1,'Connack::all()']]], - ['allow_5fduplicates_862',['allow_duplicates',['../structTree.html#a4098c257d75639b6775553b27e13bbfd',1,'Tree']]], - ['allowdisconnectedsendatanytime_863',['allowDisconnectedSendAtAnyTime',['../structMQTTAsync__createOptions.html#a8ab45ad21f70abfea24a248b7a83d9f7',1,'MQTTAsync_createOptions']]], - ['alt_864',['alt',['../structMQTTAsync__successData.html#af2b2a98191b00dbd7c592f2ef013ba87',1,'MQTTAsync_successData::alt()'],['../structMQTTAsync__successData5.html#ab8c810f026ac58874c1fd0b112bdda71',1,'MQTTAsync_successData5::alt()']]], - ['array_865',['array',['../structMQTTProperties.html#af2d57fd95f759ef758ff77b07e8683cd',1,'MQTTProperties']]], - ['automaticreconnect_866',['automaticReconnect',['../structMQTTAsync__connectOptions.html#acc2d253ca78b0c32813dbdc24b0c5f7a',1,'MQTTAsync_connectOptions']]] + ['afterread_869',['afterRead',['../structClients.html#a32899a8e944eef969c834833388fb91e',1,'Clients']]], + ['afterread_5fcontext_870',['afterRead_context',['../structClients.html#a429110f440ce0de51d60324fa8b8cc57',1,'Clients']]], + ['all_871',['all',['../structConnect.html#a7a4ee927261ade96ec6a800978f37970',1,'Connect::all()'],['../structConnack.html#aa2355d305cb311d356af339c44a852c7',1,'Connack::all()']]], + ['allow_5fduplicates_872',['allow_duplicates',['../structTree.html#a4098c257d75639b6775553b27e13bbfd',1,'Tree']]], + ['allowdisconnectedsendatanytime_873',['allowDisconnectedSendAtAnyTime',['../structMQTTAsync__createOptions.html#a8ab45ad21f70abfea24a248b7a83d9f7',1,'MQTTAsync_createOptions']]], + ['alt_874',['alt',['../structMQTTAsync__successData.html#af2b2a98191b00dbd7c592f2ef013ba87',1,'MQTTAsync_successData::alt()'],['../structMQTTAsync__successData5.html#ab8c810f026ac58874c1fd0b112bdda71',1,'MQTTAsync_successData5::alt()']]], + ['array_875',['array',['../structMQTTProperties.html#af2d57fd95f759ef758ff77b07e8683cd',1,'MQTTProperties']]], + ['automaticreconnect_876',['automaticReconnect',['../structMQTTAsync__connectOptions.html#acc2d253ca78b0c32813dbdc24b0c5f7a',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_10.html b/docs/MQTTClient_internal/html/search/variables_10.html index 92982ac5..dc9920b6 100644 --- a/docs/MQTTClient_internal/html/search/variables_10.html +++ b/docs/MQTTClient_internal/html/search/variables_10.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_10.js b/docs/MQTTClient_internal/html/search/variables_10.js index b6444fb6..6f900df7 100644 --- a/docs/MQTTClient_internal/html/search/variables_10.js +++ b/docs/MQTTClient_internal/html/search/variables_10.js @@ -1,7 +1,7 @@ var searchData= [ - ['qos_987',['qos',['../structMQTTAsync__message.html#a6e0971dbde0f04b6dd3bfab97ad5cdb7',1,'MQTTAsync_message::qos()'],['../structMQTTAsync__successData.html#af12fc9f6b7a42449f8299e5a8e4f0e7e',1,'MQTTAsync_successData::qos()'],['../structMQTTAsync__willOptions.html#add4a18313308fec634c69842f6ab9809',1,'MQTTAsync_willOptions::qos()'],['../structMQTTClient__message.html#ab981c28422ec70dbf8127a4f7164d964',1,'MQTTClient_message::qos()'],['../structMQTTClient__willOptions.html#a10a24c6ed7a204e6eb21d48ad8fb13cb',1,'MQTTClient_willOptions::qos()'],['../unionHeader.html#ae74f40c0e3656880e35ee93e79331f84',1,'Header::qos()']]], - ['qoslist_988',['qosList',['../structMQTTAsync__successData.html#aa4ad4a4023c5b9796e44b9dfd0df53e7',1,'MQTTAsync_successData']]], - ['qoss_989',['qoss',['../structSuback.html#a7769bd0751e462641636354d36505c28',1,'Suback']]], - ['queues_990',['queues',['../SocketBuffer_8c.html#aa8b85db4dca13d13c2b7fc704420323a',1,'SocketBuffer.c']]] + ['qos_999',['qos',['../structMQTTAsync__message.html#a6e0971dbde0f04b6dd3bfab97ad5cdb7',1,'MQTTAsync_message::qos()'],['../structMQTTAsync__successData.html#af12fc9f6b7a42449f8299e5a8e4f0e7e',1,'MQTTAsync_successData::qos()'],['../structMQTTAsync__willOptions.html#add4a18313308fec634c69842f6ab9809',1,'MQTTAsync_willOptions::qos()'],['../structMQTTClient__message.html#ab981c28422ec70dbf8127a4f7164d964',1,'MQTTClient_message::qos()'],['../structMQTTClient__willOptions.html#a10a24c6ed7a204e6eb21d48ad8fb13cb',1,'MQTTClient_willOptions::qos()'],['../unionHeader.html#ae74f40c0e3656880e35ee93e79331f84',1,'Header::qos()']]], + ['qoslist_1000',['qosList',['../structMQTTAsync__successData.html#aa4ad4a4023c5b9796e44b9dfd0df53e7',1,'MQTTAsync_successData']]], + ['qoss_1001',['qoss',['../structSuback.html#a7769bd0751e462641636354d36505c28',1,'Suback']]], + ['queues_1002',['queues',['../SocketBuffer_8c.html#aa8b85db4dca13d13c2b7fc704420323a',1,'SocketBuffer.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_11.html b/docs/MQTTClient_internal/html/search/variables_11.html index 94f1a8cf..704bcb18 100644 --- a/docs/MQTTClient_internal/html/search/variables_11.html +++ b/docs/MQTTClient_internal/html/search/variables_11.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_11.js b/docs/MQTTClient_internal/html/search/variables_11.js index 5704a383..01ebb8d3 100644 --- a/docs/MQTTClient_internal/html/search/variables_11.js +++ b/docs/MQTTClient_internal/html/search/variables_11.js @@ -1,16 +1,16 @@ var searchData= [ - ['rc_991',['rc',['../structConnack.html#a5a963839f48e7f1319af687621f6e3ec',1,'Connack::rc()'],['../structAck.html#a54d6ed9d045c38877e27bdf5802e3efe',1,'Ack::rc()']]], - ['reasoncode_992',['reasonCode',['../structMQTTAsync__failureData5.html#a42afb6bf2c55f9830dc1d0984b251019',1,'MQTTAsync_failureData5::reasonCode()'],['../structMQTTAsync__successData5.html#a966b7fc75d0b1fbbc9791aa3eeef06a5',1,'MQTTAsync_successData5::reasonCode()'],['../structMQTTAsync__disconnectOptions.html#af99498836b80011b4e38a9aa18772921',1,'MQTTAsync_disconnectOptions::reasonCode()']]], - ['reasoncodecount_993',['reasonCodeCount',['../structMQTTAsync__successData5.html#a0bfa041c9ce783614786235c650a80aa',1,'MQTTAsync_successData5']]], - ['reasoncodes_994',['reasonCodes',['../structMQTTAsync__successData5.html#abe4fb1e0907a7a1e77fdb6851879b605',1,'MQTTAsync_successData5::reasonCodes()'],['../structUnsuback.html#ac5fabab5aa00869b6ef4901cb4849122',1,'Unsuback::reasonCodes()']]], - ['reliable_995',['reliable',['../structMQTTClient__connectOptions.html#acd6367d7a402e7b668f8ec9760cd42c8',1,'MQTTClient_connectOptions']]], - ['reserved_996',['reserved',['../structConnack.html#a455bf40d0da52ccfd9b546e7fa23b1d0',1,'Connack']]], - ['retain_997',['retain',['../unionHeader.html#afa52b52e4b84075cf31612a6ac3a0299',1,'Header']]], - ['retainaspublished_998',['retainAsPublished',['../structMQTTSubscribe__options.html#a9c66f0773c0484dde0e582b4c47d9bf7',1,'MQTTSubscribe_options']]], - ['retained_999',['retained',['../structMQTTAsync__message.html#a680f5368d5a13ff605466ab6a3d881bd',1,'MQTTAsync_message::retained()'],['../structMQTTAsync__willOptions.html#ab61a8f7cd82a4cbd919625031b1b51d6',1,'MQTTAsync_willOptions::retained()'],['../structMQTTClient__message.html#aad83220f265db124174ad79f528bb367',1,'MQTTClient_message::retained()'],['../structMQTTClient__willOptions.html#a09d69c3e208f40ab963dbd0ac2edcd5b',1,'MQTTClient_willOptions::retained()']]], - ['retainhandling_1000',['retainHandling',['../structMQTTSubscribe__options.html#a8375543f39c16e32698226db118076e6',1,'MQTTSubscribe_options']]], - ['retryinterval_1001',['retryInterval',['../structClients.html#a6b2188e352433ff089b1b7d08976a63b',1,'Clients::retryInterval()'],['../structMQTTAsync__connectOptions.html#a7f4026dad0479c6658aac68d719950a1',1,'MQTTAsync_connectOptions::retryInterval()'],['../structMQTTClient__connectOptions.html#aabeb07cc7a2aa18fc1fb365503185c62',1,'MQTTClient_connectOptions::retryInterval()']]], - ['returned_1002',['returned',['../structMQTTClient__connectOptions.html#a198e91c4adb81b5851cbd5c2eb14424e',1,'MQTTClient_connectOptions']]], - ['root_1003',['root',['../structTree.html#ad8e46ce0aead5778cbdd784d1e370d5f',1,'Tree']]] + ['rc_1003',['rc',['../structAck.html#a54d6ed9d045c38877e27bdf5802e3efe',1,'Ack::rc()'],['../structConnack.html#a5a963839f48e7f1319af687621f6e3ec',1,'Connack::rc()']]], + ['reasoncode_1004',['reasonCode',['../structMQTTAsync__failureData5.html#a42afb6bf2c55f9830dc1d0984b251019',1,'MQTTAsync_failureData5::reasonCode()'],['../structMQTTAsync__successData5.html#a966b7fc75d0b1fbbc9791aa3eeef06a5',1,'MQTTAsync_successData5::reasonCode()'],['../structMQTTAsync__disconnectOptions.html#af99498836b80011b4e38a9aa18772921',1,'MQTTAsync_disconnectOptions::reasonCode()']]], + ['reasoncodecount_1005',['reasonCodeCount',['../structMQTTAsync__successData5.html#a0bfa041c9ce783614786235c650a80aa',1,'MQTTAsync_successData5']]], + ['reasoncodes_1006',['reasonCodes',['../structMQTTAsync__successData5.html#abe4fb1e0907a7a1e77fdb6851879b605',1,'MQTTAsync_successData5::reasonCodes()'],['../structUnsuback.html#ac5fabab5aa00869b6ef4901cb4849122',1,'Unsuback::reasonCodes()']]], + ['reliable_1007',['reliable',['../structMQTTClient__connectOptions.html#acd6367d7a402e7b668f8ec9760cd42c8',1,'MQTTClient_connectOptions']]], + ['reserved_1008',['reserved',['../structConnack.html#a455bf40d0da52ccfd9b546e7fa23b1d0',1,'Connack']]], + ['retain_1009',['retain',['../unionHeader.html#afa52b52e4b84075cf31612a6ac3a0299',1,'Header']]], + ['retainaspublished_1010',['retainAsPublished',['../structMQTTSubscribe__options.html#a9c66f0773c0484dde0e582b4c47d9bf7',1,'MQTTSubscribe_options']]], + ['retained_1011',['retained',['../structMQTTAsync__message.html#a680f5368d5a13ff605466ab6a3d881bd',1,'MQTTAsync_message::retained()'],['../structMQTTAsync__willOptions.html#ab61a8f7cd82a4cbd919625031b1b51d6',1,'MQTTAsync_willOptions::retained()'],['../structMQTTClient__message.html#aad83220f265db124174ad79f528bb367',1,'MQTTClient_message::retained()'],['../structMQTTClient__willOptions.html#a09d69c3e208f40ab963dbd0ac2edcd5b',1,'MQTTClient_willOptions::retained()']]], + ['retainhandling_1012',['retainHandling',['../structMQTTSubscribe__options.html#a8375543f39c16e32698226db118076e6',1,'MQTTSubscribe_options']]], + ['retryinterval_1013',['retryInterval',['../structClients.html#a6b2188e352433ff089b1b7d08976a63b',1,'Clients::retryInterval()'],['../structMQTTAsync__connectOptions.html#a7f4026dad0479c6658aac68d719950a1',1,'MQTTAsync_connectOptions::retryInterval()'],['../structMQTTClient__connectOptions.html#aabeb07cc7a2aa18fc1fb365503185c62',1,'MQTTClient_connectOptions::retryInterval()']]], + ['returned_1014',['returned',['../structMQTTClient__connectOptions.html#a198e91c4adb81b5851cbd5c2eb14424e',1,'MQTTClient_connectOptions']]], + ['root_1015',['root',['../structTree.html#ad8e46ce0aead5778cbdd784d1e370d5f',1,'Tree']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_12.html b/docs/MQTTClient_internal/html/search/variables_12.html index 61c013a4..a3a32eb8 100644 --- a/docs/MQTTClient_internal/html/search/variables_12.html +++ b/docs/MQTTClient_internal/html/search/variables_12.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_12.js b/docs/MQTTClient_internal/html/search/variables_12.js index 6c8138f6..da7a5fd7 100644 --- a/docs/MQTTClient_internal/html/search/variables_12.js +++ b/docs/MQTTClient_internal/html/search/variables_12.js @@ -1,20 +1,20 @@ var searchData= [ - ['sendwhiledisconnected_1004',['sendWhileDisconnected',['../structMQTTAsync__createOptions.html#a7142a01ee58f39a950f8627c4bb05318',1,'MQTTAsync_createOptions']]], - ['serveruri_1005',['serverURI',['../structMQTTAsync__successData.html#a622eceefeaf9679af35841b1e7564f48',1,'MQTTAsync_successData::serverURI()'],['../structMQTTAsync__successData5.html#ad5af721250d01a2d0a4d1cd7932b81eb',1,'MQTTAsync_successData5::serverURI()'],['../structMQTTClient__connectOptions.html#a31f882b2966272a53b2bee33cb1aea8c',1,'MQTTClient_connectOptions::serverURI()']]], - ['serveruricount_1006',['serverURIcount',['../structMQTTAsync__connectOptions.html#ae772aa4b3707c5c11d6be39f51ec4551',1,'MQTTAsync_connectOptions::serverURIcount()'],['../structMQTTClient__connectOptions.html#a71667cbc2aa857db5b831a1e6a4a1ec9',1,'MQTTClient_connectOptions::serverURIcount()']]], - ['serveruris_1007',['serverURIs',['../structMQTTAsync__connectOptions.html#a50f0a294c8f7311ccd7f7803b432bb69',1,'MQTTAsync_connectOptions::serverURIs()'],['../structMQTTClient__connectOptions.html#aec63485af96db24d26868d3a19a83504',1,'MQTTClient_connectOptions::serverURIs()']]], - ['sessionexpiry_1008',['sessionExpiry',['../structClients.html#a3ead27f8653d4866faed5d7b711159d1',1,'Clients']]], - ['sessionpresent_1009',['sessionPresent',['../structMQTTAsync__successData.html#a71879fec2eb0c6b891a48ed813b2a9da',1,'MQTTAsync_successData::sessionPresent()'],['../structMQTTAsync__successData5.html#ab8a0f5e336f3abe06921a22a5a134ab2',1,'MQTTAsync_successData5::sessionPresent()'],['../structMQTTClient__connectOptions.html#a2ed78107fecaa4639a170f63ca42d507',1,'MQTTClient_connectOptions::sessionPresent()'],['../structConnack.html#a57f2834e64d4e3ff4f73012491f73f48',1,'Connack::sessionPresent()']]], - ['size_1010',['size',['../structstorageElement.html#ac19ad736a483a3d3b3a5d6d6cd3ecfcf',1,'storageElement::size()'],['../structList.html#a166530a166abd81afec0e6b0283f7e80',1,'List::size()'],['../structNodeStruct.html#a4ac882ab7e5ab868d9449aec51a25adb',1,'NodeStruct::size()'],['../structTree.html#a784563aee04c7123724fceb5d56a0e6a',1,'Tree::size()']]], - ['ssl_1011',['ssl',['../structMQTTAsync__connectOptions.html#a04c88f4a4aba7ca2cfbd9ee5455f0850',1,'MQTTAsync_connectOptions::ssl()'],['../structMQTTClient__connectOptions.html#a4e6be3b2292800db30c65dd66af85976',1,'MQTTClient_connectOptions::ssl()']]], - ['ssl_5ferror_5fcb_1012',['ssl_error_cb',['../structMQTTAsync__SSLOptions.html#a5214f2bfb8c6571c231792bb9560b00b',1,'MQTTAsync_SSLOptions::ssl_error_cb()'],['../structMQTTClient__SSLOptions.html#a997877b8c152310bc342202807ea1165',1,'MQTTClient_SSLOptions::ssl_error_cb()']]], - ['ssl_5ferror_5fcontext_1013',['ssl_error_context',['../structMQTTAsync__SSLOptions.html#aa3af8ec1e7dd0f3921cb5eaddffe955d',1,'MQTTAsync_SSLOptions::ssl_error_context()'],['../structMQTTClient__SSLOptions.html#aeb2a43fde9dfc5627fda508a373bccfc',1,'MQTTClient_SSLOptions::ssl_error_context()']]], - ['ssl_5fpsk_5fcb_1014',['ssl_psk_cb',['../structMQTTAsync__SSLOptions.html#a6ccefb9910bc96b326298c0db67ce185',1,'MQTTAsync_SSLOptions::ssl_psk_cb()'],['../structMQTTClient__SSLOptions.html#a38ecc397cbe9e2042b77c7a52c9ccc35',1,'MQTTClient_SSLOptions::ssl_psk_cb()']]], - ['ssl_5fpsk_5fcontext_1015',['ssl_psk_context',['../structMQTTAsync__SSLOptions.html#a9cf93d98a2382b374b1e9bbf9a910d5e',1,'MQTTAsync_SSLOptions::ssl_psk_context()'],['../structMQTTClient__SSLOptions.html#ad459c7e3ab9f4558e9f239bf9b15f131',1,'MQTTClient_SSLOptions::ssl_psk_context()']]], - ['sslversion_1016',['sslVersion',['../structMQTTAsync__SSLOptions.html#ad14df49c90828d0d0efd93e707c3a4a6',1,'MQTTAsync_SSLOptions::sslVersion()'],['../structMQTTClient__SSLOptions.html#ace536bef1f2e763f28e761c0e3e3bdbe',1,'MQTTClient_SSLOptions::sslVersion()']]], - ['state_1017',['state',['../Heap_8c.html#a20b83c8e52be131ca41d22b8bf2c3b38',1,'Heap.c']]], - ['struct_5fid_1018',['struct_id',['../structMQTTAsync__init__options.html#a1f3cf365b97f7b7a362c4a6ca8eb5a42',1,'MQTTAsync_init_options::struct_id()'],['../structMQTTAsync__message.html#a4621b522c9923c68003d30e9dba9aa4e',1,'MQTTAsync_message::struct_id()'],['../structMQTTAsync__connectData.html#a0a5e8e4e111450187e0760dc04a6f26e',1,'MQTTAsync_connectData::struct_id()'],['../structMQTTAsync__failureData5.html#ab1408c66810d6761ec8b77190581f3bb',1,'MQTTAsync_failureData5::struct_id()'],['../structMQTTAsync__successData5.html#a25e5058a92e35c2cb7c86a5de45cba9d',1,'MQTTAsync_successData5::struct_id()'],['../structMQTTAsync__responseOptions.html#a4b82d5aca6f990de991c87c34f8a7d02',1,'MQTTAsync_responseOptions::struct_id()'],['../structMQTTAsync__createOptions.html#afff54eb461a8ec8544a36f09d33f07c2',1,'MQTTAsync_createOptions::struct_id()'],['../structMQTTAsync__willOptions.html#acc521d748a6a9806d8c839075e178a90',1,'MQTTAsync_willOptions::struct_id()'],['../structMQTTAsync__SSLOptions.html#a43ec1e81ca408162f4b8496ba7f6da75',1,'MQTTAsync_SSLOptions::struct_id()'],['../structMQTTAsync__connectOptions.html#ae6831f945c1353cd1fce5d94a5d0f54d',1,'MQTTAsync_connectOptions::struct_id()'],['../structMQTTAsync__disconnectOptions.html#a4a436daa9d391038e6e5748c31efb257',1,'MQTTAsync_disconnectOptions::struct_id()'],['../structMQTTClient__init__options.html#a1f162f079abc3f79c054715c0e5f71ad',1,'MQTTClient_init_options::struct_id()'],['../structMQTTClient__message.html#a7f5160eeef15b17f7c8ac493015f558d',1,'MQTTClient_message::struct_id()'],['../structMQTTClient__createOptions.html#ada7ad105de2fd2307a48a75fa598854f',1,'MQTTClient_createOptions::struct_id()'],['../structMQTTClient__willOptions.html#a6b64d983ab8586bc87c9c22b352a9717',1,'MQTTClient_willOptions::struct_id()'],['../structMQTTClient__SSLOptions.html#a931062a739a44b9879bb181514070d75',1,'MQTTClient_SSLOptions::struct_id()'],['../structMQTTClient__connectOptions.html#ab2e2302e3cc1105d6c93ae1e8205d60c',1,'MQTTClient_connectOptions::struct_id()'],['../structMQTTSubscribe__options.html#a2fe9d45e9ee31af976a232584d5a2409',1,'MQTTSubscribe_options::struct_id()']]], - ['struct_5fversion_1019',['struct_version',['../structMQTTAsync__init__options.html#ad2a3507b60ec188dff83962192153991',1,'MQTTAsync_init_options::struct_version()'],['../structMQTTAsync__message.html#af79efdfc9a4e082cbbafaed8fd333ce1',1,'MQTTAsync_message::struct_version()'],['../structMQTTAsync__connectData.html#afb621feeaf54da918d9c5cfd084a1656',1,'MQTTAsync_connectData::struct_version()'],['../structMQTTAsync__failureData5.html#afc4100c8f3126342b75e60dcd720836f',1,'MQTTAsync_failureData5::struct_version()'],['../structMQTTAsync__successData5.html#a52c4260e2005d2067f3cccc70d7b4758',1,'MQTTAsync_successData5::struct_version()'],['../structMQTTAsync__responseOptions.html#aabf57368b8266f17e7951579897f7f66',1,'MQTTAsync_responseOptions::struct_version()'],['../structMQTTAsync__createOptions.html#a884363e807ef160450e64f7eb6ef0044',1,'MQTTAsync_createOptions::struct_version()'],['../structMQTTAsync__willOptions.html#a1b53c99ddd236e4b796bb90e035ed30b',1,'MQTTAsync_willOptions::struct_version()'],['../structMQTTAsync__SSLOptions.html#a6240108041774c99720c17afa45d4814',1,'MQTTAsync_SSLOptions::struct_version()'],['../structMQTTAsync__connectOptions.html#a013018a3b17149d482051a1be78ac984',1,'MQTTAsync_connectOptions::struct_version()'],['../structMQTTAsync__disconnectOptions.html#aef6853e3c56c83ca3b49250578417848',1,'MQTTAsync_disconnectOptions::struct_version()'],['../structMQTTClient__init__options.html#abf7d43d1e40265cf8ff1ca4266fff0e6',1,'MQTTClient_init_options::struct_version()'],['../structMQTTClient__message.html#a27b983a1ac95eb5c335d40840129c0c8',1,'MQTTClient_message::struct_version()'],['../structMQTTClient__createOptions.html#ae94f345f0f147ed31b8fbd0cb6ebc784',1,'MQTTClient_createOptions::struct_version()'],['../structMQTTClient__willOptions.html#af05e1e3e865af050c5fefac5e597cc7a',1,'MQTTClient_willOptions::struct_version()'],['../structMQTTClient__SSLOptions.html#a770248be4bf5020b0f57f770afdaca7d',1,'MQTTClient_SSLOptions::struct_version()'],['../structMQTTClient__connectOptions.html#a0b07612dc569b59f7f937ff0c518a1bb',1,'MQTTClient_connectOptions::struct_version()'],['../structMQTTSubscribe__options.html#aed5f22c185be62363ac36df1d3778c6d',1,'MQTTSubscribe_options::struct_version()']]], - ['sub_1020',['sub',['../structMQTTAsync__successData5.html#ab3131c77b8bf772ea06ee580816ebc32',1,'MQTTAsync_successData5']]] + ['sendwhiledisconnected_1016',['sendWhileDisconnected',['../structMQTTAsync__createOptions.html#a7142a01ee58f39a950f8627c4bb05318',1,'MQTTAsync_createOptions']]], + ['serveruri_1017',['serverURI',['../structMQTTAsync__successData.html#a622eceefeaf9679af35841b1e7564f48',1,'MQTTAsync_successData::serverURI()'],['../structMQTTClient__connectOptions.html#a31f882b2966272a53b2bee33cb1aea8c',1,'MQTTClient_connectOptions::serverURI()'],['../structMQTTAsync__successData5.html#ad5af721250d01a2d0a4d1cd7932b81eb',1,'MQTTAsync_successData5::serverURI()']]], + ['serveruricount_1018',['serverURIcount',['../structMQTTAsync__connectOptions.html#ae772aa4b3707c5c11d6be39f51ec4551',1,'MQTTAsync_connectOptions::serverURIcount()'],['../structMQTTClient__connectOptions.html#a71667cbc2aa857db5b831a1e6a4a1ec9',1,'MQTTClient_connectOptions::serverURIcount()']]], + ['serveruris_1019',['serverURIs',['../structMQTTAsync__connectOptions.html#a50f0a294c8f7311ccd7f7803b432bb69',1,'MQTTAsync_connectOptions::serverURIs()'],['../structMQTTClient__connectOptions.html#aec63485af96db24d26868d3a19a83504',1,'MQTTClient_connectOptions::serverURIs()']]], + ['sessionexpiry_1020',['sessionExpiry',['../structClients.html#a54641954e17c0aef4e742c0a1e3e8391',1,'Clients']]], + ['sessionpresent_1021',['sessionPresent',['../structMQTTAsync__successData.html#a71879fec2eb0c6b891a48ed813b2a9da',1,'MQTTAsync_successData::sessionPresent()'],['../structMQTTAsync__successData5.html#ab8a0f5e336f3abe06921a22a5a134ab2',1,'MQTTAsync_successData5::sessionPresent()'],['../structMQTTClient__connectOptions.html#a2ed78107fecaa4639a170f63ca42d507',1,'MQTTClient_connectOptions::sessionPresent()'],['../structConnack.html#a57f2834e64d4e3ff4f73012491f73f48',1,'Connack::sessionPresent()']]], + ['size_1022',['size',['../structTree.html#a784563aee04c7123724fceb5d56a0e6a',1,'Tree::size()'],['../structNodeStruct.html#a4ac882ab7e5ab868d9449aec51a25adb',1,'NodeStruct::size()'],['../structList.html#a166530a166abd81afec0e6b0283f7e80',1,'List::size()'],['../structstorageElement.html#ac19ad736a483a3d3b3a5d6d6cd3ecfcf',1,'storageElement::size()']]], + ['ssl_1023',['ssl',['../structMQTTAsync__connectOptions.html#a04c88f4a4aba7ca2cfbd9ee5455f0850',1,'MQTTAsync_connectOptions::ssl()'],['../structMQTTClient__connectOptions.html#a4e6be3b2292800db30c65dd66af85976',1,'MQTTClient_connectOptions::ssl()']]], + ['ssl_5ferror_5fcb_1024',['ssl_error_cb',['../structMQTTAsync__SSLOptions.html#a5214f2bfb8c6571c231792bb9560b00b',1,'MQTTAsync_SSLOptions::ssl_error_cb()'],['../structMQTTClient__SSLOptions.html#a997877b8c152310bc342202807ea1165',1,'MQTTClient_SSLOptions::ssl_error_cb()']]], + ['ssl_5ferror_5fcontext_1025',['ssl_error_context',['../structMQTTAsync__SSLOptions.html#aa3af8ec1e7dd0f3921cb5eaddffe955d',1,'MQTTAsync_SSLOptions::ssl_error_context()'],['../structMQTTClient__SSLOptions.html#aeb2a43fde9dfc5627fda508a373bccfc',1,'MQTTClient_SSLOptions::ssl_error_context()']]], + ['ssl_5fpsk_5fcb_1026',['ssl_psk_cb',['../structMQTTAsync__SSLOptions.html#a6ccefb9910bc96b326298c0db67ce185',1,'MQTTAsync_SSLOptions::ssl_psk_cb()'],['../structMQTTClient__SSLOptions.html#a38ecc397cbe9e2042b77c7a52c9ccc35',1,'MQTTClient_SSLOptions::ssl_psk_cb()']]], + ['ssl_5fpsk_5fcontext_1027',['ssl_psk_context',['../structMQTTAsync__SSLOptions.html#a9cf93d98a2382b374b1e9bbf9a910d5e',1,'MQTTAsync_SSLOptions::ssl_psk_context()'],['../structMQTTClient__SSLOptions.html#ad459c7e3ab9f4558e9f239bf9b15f131',1,'MQTTClient_SSLOptions::ssl_psk_context()']]], + ['sslversion_1028',['sslVersion',['../structMQTTAsync__SSLOptions.html#ad14df49c90828d0d0efd93e707c3a4a6',1,'MQTTAsync_SSLOptions::sslVersion()'],['../structMQTTClient__SSLOptions.html#ace536bef1f2e763f28e761c0e3e3bdbe',1,'MQTTClient_SSLOptions::sslVersion()']]], + ['state_1029',['state',['../Heap_8c.html#a20b83c8e52be131ca41d22b8bf2c3b38',1,'Heap.c']]], + ['struct_5fid_1030',['struct_id',['../structMQTTAsync__connectData.html#a0a5e8e4e111450187e0760dc04a6f26e',1,'MQTTAsync_connectData::struct_id()'],['../structMQTTAsync__init__options.html#a1f3cf365b97f7b7a362c4a6ca8eb5a42',1,'MQTTAsync_init_options::struct_id()'],['../structMQTTSubscribe__options.html#a2fe9d45e9ee31af976a232584d5a2409',1,'MQTTSubscribe_options::struct_id()'],['../structMQTTClient__connectOptions.html#ab2e2302e3cc1105d6c93ae1e8205d60c',1,'MQTTClient_connectOptions::struct_id()'],['../structMQTTClient__SSLOptions.html#a931062a739a44b9879bb181514070d75',1,'MQTTClient_SSLOptions::struct_id()'],['../structMQTTClient__willOptions.html#a6b64d983ab8586bc87c9c22b352a9717',1,'MQTTClient_willOptions::struct_id()'],['../structMQTTClient__createOptions.html#ada7ad105de2fd2307a48a75fa598854f',1,'MQTTClient_createOptions::struct_id()'],['../structMQTTClient__message.html#a7f5160eeef15b17f7c8ac493015f558d',1,'MQTTClient_message::struct_id()'],['../structMQTTClient__init__options.html#a1f162f079abc3f79c054715c0e5f71ad',1,'MQTTClient_init_options::struct_id()'],['../structMQTTAsync__connectOptions.html#ae6831f945c1353cd1fce5d94a5d0f54d',1,'MQTTAsync_connectOptions::struct_id()'],['../structMQTTAsync__message.html#a4621b522c9923c68003d30e9dba9aa4e',1,'MQTTAsync_message::struct_id()'],['../structMQTTAsync__failureData5.html#ab1408c66810d6761ec8b77190581f3bb',1,'MQTTAsync_failureData5::struct_id()'],['../structMQTTAsync__successData5.html#a25e5058a92e35c2cb7c86a5de45cba9d',1,'MQTTAsync_successData5::struct_id()'],['../structMQTTAsync__responseOptions.html#a4b82d5aca6f990de991c87c34f8a7d02',1,'MQTTAsync_responseOptions::struct_id()'],['../structMQTTAsync__willOptions.html#acc521d748a6a9806d8c839075e178a90',1,'MQTTAsync_willOptions::struct_id()'],['../structMQTTAsync__disconnectOptions.html#a4a436daa9d391038e6e5748c31efb257',1,'MQTTAsync_disconnectOptions::struct_id()'],['../structMQTTAsync__createOptions.html#afff54eb461a8ec8544a36f09d33f07c2',1,'MQTTAsync_createOptions::struct_id()'],['../structMQTTAsync__SSLOptions.html#a43ec1e81ca408162f4b8496ba7f6da75',1,'MQTTAsync_SSLOptions::struct_id()']]], + ['struct_5fversion_1031',['struct_version',['../structMQTTAsync__connectOptions.html#a013018a3b17149d482051a1be78ac984',1,'MQTTAsync_connectOptions::struct_version()'],['../structMQTTSubscribe__options.html#aed5f22c185be62363ac36df1d3778c6d',1,'MQTTSubscribe_options::struct_version()'],['../structMQTTClient__connectOptions.html#a0b07612dc569b59f7f937ff0c518a1bb',1,'MQTTClient_connectOptions::struct_version()'],['../structMQTTClient__SSLOptions.html#a770248be4bf5020b0f57f770afdaca7d',1,'MQTTClient_SSLOptions::struct_version()'],['../structMQTTClient__willOptions.html#af05e1e3e865af050c5fefac5e597cc7a',1,'MQTTClient_willOptions::struct_version()'],['../structMQTTClient__createOptions.html#ae94f345f0f147ed31b8fbd0cb6ebc784',1,'MQTTClient_createOptions::struct_version()'],['../structMQTTClient__message.html#a27b983a1ac95eb5c335d40840129c0c8',1,'MQTTClient_message::struct_version()'],['../structMQTTClient__init__options.html#abf7d43d1e40265cf8ff1ca4266fff0e6',1,'MQTTClient_init_options::struct_version()'],['../structMQTTAsync__disconnectOptions.html#aef6853e3c56c83ca3b49250578417848',1,'MQTTAsync_disconnectOptions::struct_version()'],['../structMQTTAsync__SSLOptions.html#a6240108041774c99720c17afa45d4814',1,'MQTTAsync_SSLOptions::struct_version()'],['../structMQTTAsync__willOptions.html#a1b53c99ddd236e4b796bb90e035ed30b',1,'MQTTAsync_willOptions::struct_version()'],['../structMQTTAsync__createOptions.html#a884363e807ef160450e64f7eb6ef0044',1,'MQTTAsync_createOptions::struct_version()'],['../structMQTTAsync__responseOptions.html#aabf57368b8266f17e7951579897f7f66',1,'MQTTAsync_responseOptions::struct_version()'],['../structMQTTAsync__successData5.html#a52c4260e2005d2067f3cccc70d7b4758',1,'MQTTAsync_successData5::struct_version()'],['../structMQTTAsync__failureData5.html#afc4100c8f3126342b75e60dcd720836f',1,'MQTTAsync_failureData5::struct_version()'],['../structMQTTAsync__connectData.html#afb621feeaf54da918d9c5cfd084a1656',1,'MQTTAsync_connectData::struct_version()'],['../structMQTTAsync__message.html#af79efdfc9a4e082cbbafaed8fd333ce1',1,'MQTTAsync_message::struct_version()'],['../structMQTTAsync__init__options.html#ad2a3507b60ec188dff83962192153991',1,'MQTTAsync_init_options::struct_version()']]], + ['sub_1032',['sub',['../structMQTTAsync__successData5.html#ab3131c77b8bf772ea06ee580816ebc32',1,'MQTTAsync_successData5']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_13.html b/docs/MQTTClient_internal/html/search/variables_13.html index 87b7ca67..7d05bd86 100644 --- a/docs/MQTTClient_internal/html/search/variables_13.html +++ b/docs/MQTTClient_internal/html/search/variables_13.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_13.js b/docs/MQTTClient_internal/html/search/variables_13.js index b26fa2b5..5b516460 100644 --- a/docs/MQTTClient_internal/html/search/variables_13.js +++ b/docs/MQTTClient_internal/html/search/variables_13.js @@ -1,14 +1,14 @@ var searchData= [ - ['timeout_1021',['timeout',['../structMQTTAsync__disconnectOptions.html#a71f6175d58e01af30b064c19967d42ca',1,'MQTTAsync_disconnectOptions']]], - ['token_1022',['token',['../structMQTTAsync__failureData.html#a9f3af8dc8c24876c319bc466188440d7',1,'MQTTAsync_failureData::token()'],['../structMQTTAsync__failureData5.html#af3be141ec32e131429a1ea9df6386eb5',1,'MQTTAsync_failureData5::token()'],['../structMQTTAsync__successData.html#afd00f6f09b4cd92b5815202fc339be68',1,'MQTTAsync_successData::token()'],['../structMQTTAsync__successData5.html#ab31fe8cffc2ff14c1ebaee1a12feb787',1,'MQTTAsync_successData5::token()'],['../structMQTTAsync__responseOptions.html#aaf6926989620579f2590cdaf1ff16bfe',1,'MQTTAsync_responseOptions::token()']]], - ['topic_1023',['topic',['../structPublish.html#af25a32a9a9bccf70af72fa5a19fa7864',1,'Publish']]], - ['topicname_1024',['topicName',['../structMQTTAsync__willOptions.html#a19983de96d2ae2df35c588e36200374e',1,'MQTTAsync_willOptions::topicName()'],['../structMQTTClient__willOptions.html#a9273da2e77ed9b60b018b43c8d868d47',1,'MQTTClient_willOptions::topicName()']]], - ['trace_5fdestination_1025',['trace_destination',['../Log_8c.html#a29606f1185cb957cd23842125d7d8ecd',1,'Log.c']]], - ['trace_5fdestination_5fbackup_5fname_1026',['trace_destination_backup_name',['../Log_8c.html#a6e2c5a6602ec82079f7b7c3c1a622f8a',1,'Log.c']]], - ['trace_5fdestination_5fname_1027',['trace_destination_name',['../Log_8c.html#aa46cc371a2f34c92be9e5df8ac162566',1,'Log.c']]], - ['trace_5flevel_1028',['trace_level',['../structtrace__settings__type.html#a169138f5e03c0408ca30820418dcf186',1,'trace_settings_type']]], - ['trace_5foutput_5flevel_1029',['trace_output_level',['../structtrace__settings__type.html#af861eec94e990b63af949f50d630ee0d',1,'trace_settings_type']]], - ['truststore_1030',['trustStore',['../structMQTTAsync__SSLOptions.html#a90760033b5ae9962126770c3527603fd',1,'MQTTAsync_SSLOptions::trustStore()'],['../structMQTTClient__SSLOptions.html#a4583779998f6b3b51c7c1d3226701a4c',1,'MQTTClient_SSLOptions::trustStore()']]], - ['type_1031',['type',['../unionHeader.html#a05b7c9c6b02e41c54899caee9fdd50d6',1,'Header']]] + ['timeout_1033',['timeout',['../structMQTTAsync__disconnectOptions.html#a71f6175d58e01af30b064c19967d42ca',1,'MQTTAsync_disconnectOptions']]], + ['token_1034',['token',['../structMQTTAsync__failureData.html#a9f3af8dc8c24876c319bc466188440d7',1,'MQTTAsync_failureData::token()'],['../structMQTTAsync__failureData5.html#af3be141ec32e131429a1ea9df6386eb5',1,'MQTTAsync_failureData5::token()'],['../structMQTTAsync__successData.html#afd00f6f09b4cd92b5815202fc339be68',1,'MQTTAsync_successData::token()'],['../structMQTTAsync__successData5.html#ab31fe8cffc2ff14c1ebaee1a12feb787',1,'MQTTAsync_successData5::token()'],['../structMQTTAsync__responseOptions.html#aaf6926989620579f2590cdaf1ff16bfe',1,'MQTTAsync_responseOptions::token()']]], + ['topic_1035',['topic',['../structPublish.html#af25a32a9a9bccf70af72fa5a19fa7864',1,'Publish']]], + ['topicname_1036',['topicName',['../structMQTTClient__willOptions.html#a9273da2e77ed9b60b018b43c8d868d47',1,'MQTTClient_willOptions::topicName()'],['../structMQTTAsync__willOptions.html#a19983de96d2ae2df35c588e36200374e',1,'MQTTAsync_willOptions::topicName()']]], + ['trace_5fdestination_1037',['trace_destination',['../Log_8c.html#a29606f1185cb957cd23842125d7d8ecd',1,'Log.c']]], + ['trace_5fdestination_5fbackup_5fname_1038',['trace_destination_backup_name',['../Log_8c.html#a6e2c5a6602ec82079f7b7c3c1a622f8a',1,'Log.c']]], + ['trace_5fdestination_5fname_1039',['trace_destination_name',['../Log_8c.html#aa46cc371a2f34c92be9e5df8ac162566',1,'Log.c']]], + ['trace_5flevel_1040',['trace_level',['../structtrace__settings__type.html#a169138f5e03c0408ca30820418dcf186',1,'trace_settings_type']]], + ['trace_5foutput_5flevel_1041',['trace_output_level',['../structtrace__settings__type.html#af861eec94e990b63af949f50d630ee0d',1,'trace_settings_type']]], + ['truststore_1042',['trustStore',['../structMQTTAsync__SSLOptions.html#a90760033b5ae9962126770c3527603fd',1,'MQTTAsync_SSLOptions::trustStore()'],['../structMQTTClient__SSLOptions.html#a4583779998f6b3b51c7c1d3226701a4c',1,'MQTTClient_SSLOptions::trustStore()']]], + ['type_1043',['type',['../unionHeader.html#a05b7c9c6b02e41c54899caee9fdd50d6',1,'Header']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_14.html b/docs/MQTTClient_internal/html/search/variables_14.html index 874fe595..ab9e0fa9 100644 --- a/docs/MQTTClient_internal/html/search/variables_14.html +++ b/docs/MQTTClient_internal/html/search/variables_14.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_14.js b/docs/MQTTClient_internal/html/search/variables_14.js index 2566dfc2..1e9ffa1b 100644 --- a/docs/MQTTClient_internal/html/search/variables_14.js +++ b/docs/MQTTClient_internal/html/search/variables_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['unsub_1032',['unsub',['../structMQTTAsync__successData5.html#a8f6209416359018b215c22008f08bc9c',1,'MQTTAsync_successData5']]], - ['upper_1033',['upper',['../utf-8_8c.html#a716463de5d02ad40678f2376abcdd90a',1,'utf-8.c']]], - ['username_1034',['username',['../structClients.html#af8cc24a8d289b4950b7c929b03cba031',1,'Clients::username()'],['../structMQTTAsync__connectData.html#ac239ae2f64049458d1b7ae6110c86657',1,'MQTTAsync_connectData::username()'],['../structMQTTAsync__connectOptions.html#ae03dec50fd54f49582e50883072ea81e',1,'MQTTAsync_connectOptions::username()'],['../structMQTTClient__connectOptions.html#a82e337534835601827defa911325299a',1,'MQTTClient_connectOptions::username()'],['../structConnect.html#a68d27f5f6b5fad14969d69340acfc5e9',1,'Connect::username()']]] + ['unsub_1044',['unsub',['../structMQTTAsync__successData5.html#a8f6209416359018b215c22008f08bc9c',1,'MQTTAsync_successData5']]], + ['upper_1045',['upper',['../utf-8_8c.html#a716463de5d02ad40678f2376abcdd90a',1,'utf-8.c']]], + ['username_1046',['username',['../structClients.html#af8cc24a8d289b4950b7c929b03cba031',1,'Clients::username()'],['../structMQTTAsync__connectData.html#ac239ae2f64049458d1b7ae6110c86657',1,'MQTTAsync_connectData::username()'],['../structMQTTAsync__connectOptions.html#ae03dec50fd54f49582e50883072ea81e',1,'MQTTAsync_connectOptions::username()'],['../structMQTTClient__connectOptions.html#a82e337534835601827defa911325299a',1,'MQTTClient_connectOptions::username()'],['../structConnect.html#a68d27f5f6b5fad14969d69340acfc5e9',1,'Connect::username()']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_15.html b/docs/MQTTClient_internal/html/search/variables_15.html index 3ca87990..45b78e3d 100644 --- a/docs/MQTTClient_internal/html/search/variables_15.html +++ b/docs/MQTTClient_internal/html/search/variables_15.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_15.js b/docs/MQTTClient_internal/html/search/variables_15.js index 6a16884a..54031f4b 100644 --- a/docs/MQTTClient_internal/html/search/variables_15.js +++ b/docs/MQTTClient_internal/html/search/variables_15.js @@ -1,7 +1,7 @@ var searchData= [ - ['valid_5franges_1035',['valid_ranges',['../utf-8_8c.html#a03bdcd5f0e47e86161d8f8a6e6d2ed1d',1,'utf-8.c']]], - ['value_1036',['value',['../structMQTTAsync__nameValue.html#abbedbc0cab6677016451fe6c62553f35',1,'MQTTAsync_nameValue::value()'],['../structMQTTProperty.html#a43389d2bd2814580edc9ea59933cbe25',1,'MQTTProperty::value()'],['../structMQTTProperty.html#a1d54fb750a1783debd04c57ecb907332',1,'MQTTProperty::value()']]], - ['verify_1037',['verify',['../structMQTTAsync__SSLOptions.html#af3a54c718001dc76eb77d2f35fc31301',1,'MQTTAsync_SSLOptions::verify()'],['../structMQTTClient__SSLOptions.html#a61dd2a56858da45451f45640b056189d',1,'MQTTClient_SSLOptions::verify()']]], - ['version_1038',['version',['../structConnect.html#a35cba4252092877e572c5c74b41be6e2',1,'Connect']]] + ['valid_5franges_1047',['valid_ranges',['../utf-8_8c.html#a03bdcd5f0e47e86161d8f8a6e6d2ed1d',1,'utf-8.c']]], + ['value_1048',['value',['../structMQTTAsync__nameValue.html#abbedbc0cab6677016451fe6c62553f35',1,'MQTTAsync_nameValue::value()'],['../structMQTTProperty.html#a43389d2bd2814580edc9ea59933cbe25',1,'MQTTProperty::value()'],['../structMQTTProperty.html#a1d54fb750a1783debd04c57ecb907332',1,'MQTTProperty::value()']]], + ['verify_1049',['verify',['../structMQTTAsync__SSLOptions.html#af3a54c718001dc76eb77d2f35fc31301',1,'MQTTAsync_SSLOptions::verify()'],['../structMQTTClient__SSLOptions.html#a61dd2a56858da45451f45640b056189d',1,'MQTTClient_SSLOptions::verify()']]], + ['version_1050',['version',['../structConnect.html#a35cba4252092877e572c5c74b41be6e2',1,'Connect']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_16.html b/docs/MQTTClient_internal/html/search/variables_16.html index 2b5a4330..8d9f8780 100644 --- a/docs/MQTTClient_internal/html/search/variables_16.html +++ b/docs/MQTTClient_internal/html/search/variables_16.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_16.js b/docs/MQTTClient_internal/html/search/variables_16.js index 93dc0a67..8a52db38 100644 --- a/docs/MQTTClient_internal/html/search/variables_16.js +++ b/docs/MQTTClient_internal/html/search/variables_16.js @@ -1,12 +1,12 @@ var searchData= [ - ['websocket_1039',['websocket',['../structnetworkHandles.html#a01839c3f477c9f737c13f7e2c994e5cc',1,'networkHandles']]], - ['will_1040',['will',['../structClients.html#ad593ed8add1448fe1f1e01b4d60f28a7',1,'Clients::will()'],['../structMQTTAsync__connectOptions.html#a2190db10b854d016a291ccb378c3eda2',1,'MQTTAsync_connectOptions::will()'],['../structMQTTClient__connectOptions.html#a8d51a29a49d2a964d5079c9bae3fcffd',1,'MQTTClient_connectOptions::will()'],['../structConnect.html#a9dc30d7b95feb8e55e98514cad4066bd',1,'Connect::will()']]], - ['willmsg_1041',['willMsg',['../structConnect.html#a525eb0974d4e5b3158808e0bb23f03e6',1,'Connect']]], - ['willproperties_1042',['willProperties',['../structMQTTAsync__connectOptions.html#ab72dbcdcff60e5dd79ac8fcea0e31478',1,'MQTTAsync_connectOptions']]], - ['willqos_1043',['willQoS',['../structConnect.html#a91e5dd7084da0e9a40397c5532de5ef9',1,'Connect']]], - ['willretain_1044',['willRetain',['../structConnect.html#a0810709a016db0b8be49fc6f859bab39',1,'Connect']]], - ['willtopic_1045',['willTopic',['../structConnect.html#a8e0ff745f3800cf1a56a0cd467b5138e',1,'Connect']]], - ['write_5fpending_1046',['write_pending',['../structSockets.html#a852db7c3edf654d8ee451be18b3f5743',1,'Sockets']]], - ['writes_1047',['writes',['../SocketBuffer_8c.html#a913f78789f0cbfb26a5dcf6618d51d87',1,'SocketBuffer.c']]] + ['websocket_1051',['websocket',['../structnetworkHandles.html#a01839c3f477c9f737c13f7e2c994e5cc',1,'networkHandles']]], + ['will_1052',['will',['../structClients.html#ad593ed8add1448fe1f1e01b4d60f28a7',1,'Clients::will()'],['../structMQTTAsync__connectOptions.html#a2190db10b854d016a291ccb378c3eda2',1,'MQTTAsync_connectOptions::will()'],['../structMQTTClient__connectOptions.html#a8d51a29a49d2a964d5079c9bae3fcffd',1,'MQTTClient_connectOptions::will()'],['../structConnect.html#a9dc30d7b95feb8e55e98514cad4066bd',1,'Connect::will()']]], + ['willmsg_1053',['willMsg',['../structConnect.html#a525eb0974d4e5b3158808e0bb23f03e6',1,'Connect']]], + ['willproperties_1054',['willProperties',['../structMQTTAsync__connectOptions.html#ab72dbcdcff60e5dd79ac8fcea0e31478',1,'MQTTAsync_connectOptions']]], + ['willqos_1055',['willQoS',['../structConnect.html#a91e5dd7084da0e9a40397c5532de5ef9',1,'Connect']]], + ['willretain_1056',['willRetain',['../structConnect.html#a0810709a016db0b8be49fc6f859bab39',1,'Connect']]], + ['willtopic_1057',['willTopic',['../structConnect.html#a8e0ff745f3800cf1a56a0cd467b5138e',1,'Connect']]], + ['write_5fpending_1058',['write_pending',['../structSockets.html#a852db7c3edf654d8ee451be18b3f5743',1,'Sockets']]], + ['writes_1059',['writes',['../SocketBuffer_8c.html#a913f78789f0cbfb26a5dcf6618d51d87',1,'SocketBuffer.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_2.html b/docs/MQTTClient_internal/html/search/variables_2.html index 0c8a18cf..0580462e 100644 --- a/docs/MQTTClient_internal/html/search/variables_2.html +++ b/docs/MQTTClient_internal/html/search/variables_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_2.js b/docs/MQTTClient_internal/html/search/variables_2.js index 523e7df8..44fdaa7e 100644 --- a/docs/MQTTClient_internal/html/search/variables_2.js +++ b/docs/MQTTClient_internal/html/search/variables_2.js @@ -1,11 +1,11 @@ var searchData= [ - ['beforewrite_867',['beforeWrite',['../structClients.html#acb5a2bdb04148e714a123b6a14b34cb9',1,'Clients']]], - ['beforewrite_5fcontext_868',['beforeWrite_context',['../structClients.html#a57ec2f443b8de574ede8a62a6a3212db',1,'Clients']]], - ['binarypwd_869',['binarypwd',['../structMQTTAsync__connectData.html#a8643b5dacde868343c91cf6ad68d56b8',1,'MQTTAsync_connectData::binarypwd()'],['../structMQTTAsync__connectOptions.html#a71b40f4b4aeb26270f4d5df001656d41',1,'MQTTAsync_connectOptions::binarypwd()'],['../structMQTTClient__connectOptions.html#acfff5a62e87b80f205a1f83fdde5653d',1,'MQTTClient_connectOptions::binarypwd()']]], - ['buffers_870',['buffers',['../structPacketBuffers.html#a286d27793c957cc729d40272b31a1b53',1,'PacketBuffers']]], - ['buflen_871',['buflen',['../structsocket__queue.html#ab38f6d48de7c8905c3124ee1de4eac71',1,'socket_queue']]], - ['buflens_872',['buflens',['../structPacketBuffers.html#a359895b0df7be5369344eb2e6122c067',1,'PacketBuffers']]], - ['byte_873',['byte',['../unionHeader.html#a75d550e644fb0f4ae2be1a33d0d89ec6',1,'Header::byte()'],['../structMQTTProperty.html#acf819eac134fafe7e284598b4e6897e3',1,'MQTTProperty::byte()']]], - ['bytes_874',['bytes',['../utf-8_8c.html#abf4b7aec66b165e9a0a8e3a4ad69f863',1,'utf-8.c']]] + ['beforewrite_877',['beforeWrite',['../structClients.html#acb5a2bdb04148e714a123b6a14b34cb9',1,'Clients']]], + ['beforewrite_5fcontext_878',['beforeWrite_context',['../structClients.html#a57ec2f443b8de574ede8a62a6a3212db',1,'Clients']]], + ['binarypwd_879',['binarypwd',['../structMQTTAsync__connectData.html#a8643b5dacde868343c91cf6ad68d56b8',1,'MQTTAsync_connectData::binarypwd()'],['../structMQTTAsync__connectOptions.html#a71b40f4b4aeb26270f4d5df001656d41',1,'MQTTAsync_connectOptions::binarypwd()'],['../structMQTTClient__connectOptions.html#acfff5a62e87b80f205a1f83fdde5653d',1,'MQTTClient_connectOptions::binarypwd()']]], + ['buffers_880',['buffers',['../structPacketBuffers.html#a286d27793c957cc729d40272b31a1b53',1,'PacketBuffers']]], + ['buflen_881',['buflen',['../structsocket__queue.html#ab38f6d48de7c8905c3124ee1de4eac71',1,'socket_queue']]], + ['buflens_882',['buflens',['../structPacketBuffers.html#a359895b0df7be5369344eb2e6122c067',1,'PacketBuffers']]], + ['byte_883',['byte',['../unionHeader.html#a75d550e644fb0f4ae2be1a33d0d89ec6',1,'Header::byte()'],['../structMQTTProperty.html#acf819eac134fafe7e284598b4e6897e3',1,'MQTTProperty::byte()']]], + ['bytes_884',['bytes',['../utf-8_8c.html#abf4b7aec66b165e9a0a8e3a4ad69f863',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_3.html b/docs/MQTTClient_internal/html/search/variables_3.html index 19a31fc2..0d69e761 100644 --- a/docs/MQTTClient_internal/html/search/variables_3.html +++ b/docs/MQTTClient_internal/html/search/variables_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_3.js b/docs/MQTTClient_internal/html/search/variables_3.js index 39fef051..5cb8321c 100644 --- a/docs/MQTTClient_internal/html/search/variables_3.js +++ b/docs/MQTTClient_internal/html/search/variables_3.js @@ -1,22 +1,22 @@ var searchData= [ - ['capath_875',['CApath',['../structMQTTAsync__SSLOptions.html#a2c5cc887b0fd4a388b0bef9163d5b1ab',1,'MQTTAsync_SSLOptions::CApath()'],['../structMQTTClient__SSLOptions.html#a1901b5590afdc86db8e542c0d49f5106',1,'MQTTClient_SSLOptions::CApath()']]], - ['child_876',['child',['../structNodeStruct.html#a6f84842a1ac8bf4ea19a3bb6b4af9c4d',1,'NodeStruct']]], - ['cleansession_877',['cleansession',['../structClients.html#a9853b4a06c38478148ab09fe9ccff423',1,'Clients::cleansession()'],['../structMQTTAsync__connectOptions.html#ac4addd2c4614cfc12c9dd7e199a989ff',1,'MQTTAsync_connectOptions::cleansession()'],['../structMQTTClient__connectOptions.html#a03a2cfaf17483f1b0aab2a70f3ef30d9',1,'MQTTClient_connectOptions::cleansession()']]], - ['cleanstart_878',['cleanstart',['../structClients.html#a8e1ca3c305b51f86c29d246a60d0fec2',1,'Clients::cleanstart()'],['../structConnect.html#a1ecdff766bc9f572a2d1a3ae22bd0bca',1,'Connect::cleanstart()']]], - ['clientid_879',['clientID',['../structClients.html#aab6a37dbb279f1f1819bd89f75695e92',1,'Clients::clientID()'],['../structConnect.html#aa0063fa6349a7fb5be89cf1cbe4043b4',1,'Connect::clientID()']]], - ['code_880',['code',['../structMQTTAsync__failureData.html#acbdff200c2c6ac593c88cd0b677921e2',1,'MQTTAsync_failureData::code()'],['../structMQTTAsync__failureData5.html#ac92de089ce2d9ae81b2c4b0dc1f97792',1,'MQTTAsync_failureData5::code()']]], - ['compare_881',['compare',['../structTree.html#a9c7cc2fbf66ff51c0d90be03f3562c84',1,'Tree']]], - ['connect_5fcount_882',['connect_count',['../structClients.html#a46550d6ea8cf3480bb754afa56f516d5',1,'Clients']]], - ['connect_5fpending_883',['connect_pending',['../structSockets.html#ac1b74c5f7fd463159318d2ef3c8fcee6',1,'Sockets']]], - ['connect_5fsent_884',['connect_sent',['../structClients.html#a02e9acc54d3df8770178f16694c1f405',1,'Clients']]], - ['connected_885',['connected',['../structClients.html#adc2f2a83ccacde92ad6b4ee304fc3e6a',1,'Clients']]], - ['connectproperties_886',['connectProperties',['../structMQTTAsync__connectOptions.html#ad10d2f263a6802ec6a3a74e0cf9a7453',1,'MQTTAsync_connectOptions']]], - ['connecttimeout_887',['connectTimeout',['../structMQTTAsync__connectOptions.html#a0f2fb050e48f46332523fe1e48c04980',1,'MQTTAsync_connectOptions::connectTimeout()'],['../structMQTTClient__connectOptions.html#ab6713be91e99a94a7168bbcac02f6beb',1,'MQTTClient_connectOptions::connectTimeout()']]], - ['content_888',['content',['../structListElementStruct.html#a808c5a8a407bec041d0817705561ffd5',1,'ListElementStruct::content()'],['../structNodeStruct.html#aa605b943d1cb013da384c37f5a074285',1,'NodeStruct::content()']]], - ['context_889',['context',['../structClients.html#ae0c3a79f1943071fe9d336014cf5826a',1,'Clients::context()'],['../structMQTTAsync__responseOptions.html#a1d39a3f47712791b00ec7faab14c839a',1,'MQTTAsync_responseOptions::context()'],['../structMQTTAsync__connectOptions.html#ab1def8c5155a84603d6827664d59537c',1,'MQTTAsync_connectOptions::context()'],['../structMQTTAsync__disconnectOptions.html#a6c8a7ef5c761e46d17750919eb4dadd3',1,'MQTTAsync_disconnectOptions::context()'],['../structMQTTClient__persistence.html#a2066e737e00f3fcb016152b4a9cedad6',1,'MQTTClient_persistence::context()']]], - ['count_890',['count',['../structList.html#a7d50f0a95a04faab8c250bc6ea28a67d',1,'List::count()'],['../structMQTTProperties.html#a0eaa838640c90af2a963d7e0b23ff4e5',1,'MQTTProperties::count()'],['../structTree.html#ad13cc776048feb0a19c640c8f1d1ffd6',1,'Tree::count()']]], - ['cur_5ffd_891',['cur_fd',['../structSockets.html#a4ebc1178e3d1516f31b7dbc276cfde2b',1,'Sockets']]], - ['current_892',['current',['../structList.html#a76dacd2c880fb9a86ab7c0f3aa4ee624',1,'List']]], - ['current_5fsize_893',['current_size',['../structheap__info.html#a26c9bfacf416872c953138adc64e1a3d',1,'heap_info']]] + ['capath_885',['CApath',['../structMQTTClient__SSLOptions.html#a1901b5590afdc86db8e542c0d49f5106',1,'MQTTClient_SSLOptions::CApath()'],['../structMQTTAsync__SSLOptions.html#a2c5cc887b0fd4a388b0bef9163d5b1ab',1,'MQTTAsync_SSLOptions::CApath()']]], + ['child_886',['child',['../structNodeStruct.html#a6f84842a1ac8bf4ea19a3bb6b4af9c4d',1,'NodeStruct']]], + ['cleansession_887',['cleansession',['../structClients.html#a9853b4a06c38478148ab09fe9ccff423',1,'Clients::cleansession()'],['../structMQTTAsync__connectOptions.html#ac4addd2c4614cfc12c9dd7e199a989ff',1,'MQTTAsync_connectOptions::cleansession()'],['../structMQTTClient__connectOptions.html#a03a2cfaf17483f1b0aab2a70f3ef30d9',1,'MQTTClient_connectOptions::cleansession()']]], + ['cleanstart_888',['cleanstart',['../structClients.html#a8e1ca3c305b51f86c29d246a60d0fec2',1,'Clients::cleanstart()'],['../structConnect.html#a1ecdff766bc9f572a2d1a3ae22bd0bca',1,'Connect::cleanstart()']]], + ['clientid_889',['clientID',['../structClients.html#aab6a37dbb279f1f1819bd89f75695e92',1,'Clients::clientID()'],['../structConnect.html#aa0063fa6349a7fb5be89cf1cbe4043b4',1,'Connect::clientID()']]], + ['code_890',['code',['../structMQTTAsync__failureData.html#acbdff200c2c6ac593c88cd0b677921e2',1,'MQTTAsync_failureData::code()'],['../structMQTTAsync__failureData5.html#ac92de089ce2d9ae81b2c4b0dc1f97792',1,'MQTTAsync_failureData5::code()']]], + ['compare_891',['compare',['../structTree.html#a9c7cc2fbf66ff51c0d90be03f3562c84',1,'Tree']]], + ['connect_5fcount_892',['connect_count',['../structClients.html#a46550d6ea8cf3480bb754afa56f516d5',1,'Clients']]], + ['connect_5fpending_893',['connect_pending',['../structSockets.html#ac1b74c5f7fd463159318d2ef3c8fcee6',1,'Sockets']]], + ['connect_5fsent_894',['connect_sent',['../structClients.html#a02e9acc54d3df8770178f16694c1f405',1,'Clients']]], + ['connected_895',['connected',['../structClients.html#adc2f2a83ccacde92ad6b4ee304fc3e6a',1,'Clients']]], + ['connectproperties_896',['connectProperties',['../structMQTTAsync__connectOptions.html#ad10d2f263a6802ec6a3a74e0cf9a7453',1,'MQTTAsync_connectOptions']]], + ['connecttimeout_897',['connectTimeout',['../structMQTTAsync__connectOptions.html#a0f2fb050e48f46332523fe1e48c04980',1,'MQTTAsync_connectOptions::connectTimeout()'],['../structMQTTClient__connectOptions.html#ab6713be91e99a94a7168bbcac02f6beb',1,'MQTTClient_connectOptions::connectTimeout()']]], + ['content_898',['content',['../structListElementStruct.html#a808c5a8a407bec041d0817705561ffd5',1,'ListElementStruct::content()'],['../structNodeStruct.html#aa605b943d1cb013da384c37f5a074285',1,'NodeStruct::content()']]], + ['context_899',['context',['../structClients.html#ae0c3a79f1943071fe9d336014cf5826a',1,'Clients::context()'],['../structMQTTAsync__responseOptions.html#a1d39a3f47712791b00ec7faab14c839a',1,'MQTTAsync_responseOptions::context()'],['../structMQTTAsync__connectOptions.html#ab1def8c5155a84603d6827664d59537c',1,'MQTTAsync_connectOptions::context()'],['../structMQTTAsync__disconnectOptions.html#a6c8a7ef5c761e46d17750919eb4dadd3',1,'MQTTAsync_disconnectOptions::context()'],['../structMQTTClient__persistence.html#a2066e737e00f3fcb016152b4a9cedad6',1,'MQTTClient_persistence::context()']]], + ['count_900',['count',['../structList.html#a7d50f0a95a04faab8c250bc6ea28a67d',1,'List::count()'],['../structMQTTProperties.html#a0eaa838640c90af2a963d7e0b23ff4e5',1,'MQTTProperties::count()'],['../structTree.html#ad13cc776048feb0a19c640c8f1d1ffd6',1,'Tree::count()']]], + ['cur_5ffd_901',['cur_fd',['../structSockets.html#a4ebc1178e3d1516f31b7dbc276cfde2b',1,'Sockets']]], + ['current_902',['current',['../structList.html#a76dacd2c880fb9a86ab7c0f3aa4ee624',1,'List']]], + ['current_5fsize_903',['current_size',['../structheap__info.html#a26c9bfacf416872c953138adc64e1a3d',1,'heap_info']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_4.html b/docs/MQTTClient_internal/html/search/variables_4.html index bdc37be7..a4b6506b 100644 --- a/docs/MQTTClient_internal/html/search/variables_4.html +++ b/docs/MQTTClient_internal/html/search/variables_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_4.js b/docs/MQTTClient_internal/html/search/variables_4.js index 4c683911..bffc0923 100644 --- a/docs/MQTTClient_internal/html/search/variables_4.js +++ b/docs/MQTTClient_internal/html/search/variables_4.js @@ -1,10 +1,10 @@ var searchData= [ - ['data_894',['data',['../structMQTTAsync__connectData.html#a3a5188d10f6aab79d85d0468a56e5033',1,'MQTTAsync_connectData::data()'],['../structMQTTAsync__willOptions.html#a9e18ae16bb17c09708e7f767390a9638',1,'MQTTAsync_willOptions::data()'],['../structMQTTAsync__connectOptions.html#aad75b20bff67aa3462602fe41465931a',1,'MQTTAsync_connectOptions::data()'],['../structMQTTClient__willOptions.html#aceaee06cb85a7dd485e58f0cd26c289d',1,'MQTTClient_willOptions::data()'],['../structMQTTClient__connectOptions.html#aaa44742ad0345bf7f3aea7628dea6bca',1,'MQTTClient_connectOptions::data()'],['../structMQTTLenString.html#ac875ffa1e0af752d17a10be055c33377',1,'MQTTLenString::data()'],['../structMQTTProperty.html#af08778d86fb08643620cefabd205bc11',1,'MQTTProperty::data()']]], - ['datalen_895',['datalen',['../structsocket__queue.html#a812ce9bb00766c3e91a593842414b693',1,'socket_queue']]], - ['def_5fqueue_896',['def_queue',['../SocketBuffer_8c.html#ace376d23d15b97a487298fa0c8a238ea',1,'SocketBuffer.c']]], - ['destinationname_897',['destinationName',['../structMQTTAsync__successData.html#af3eef8b306fc96c9a0e36f2d0fd1e322',1,'MQTTAsync_successData::destinationName()'],['../structMQTTAsync__successData5.html#a3aa03bcf1e08deeaacb237d014181e80',1,'MQTTAsync_successData5::destinationName()']]], - ['disabledefaulttruststore_898',['disableDefaultTrustStore',['../structMQTTAsync__SSLOptions.html#a349454d7fe6021b62004874d7efa6277',1,'MQTTAsync_SSLOptions::disableDefaultTrustStore()'],['../structMQTTClient__SSLOptions.html#a09caf7e179009d70fff6205e89fcc434',1,'MQTTClient_SSLOptions::disableDefaultTrustStore()']]], - ['do_5fopenssl_5finit_899',['do_openssl_init',['../structMQTTAsync__init__options.html#a97caac4b94254b6b9251c07e9532f18b',1,'MQTTAsync_init_options::do_openssl_init()'],['../structMQTTClient__init__options.html#acb4f69163cbb7cf8fcc44ca086354dbc',1,'MQTTClient_init_options::do_openssl_init()']]], - ['dup_900',['dup',['../structMQTTAsync__message.html#aa9da73253863089ee90033c7f0dd28bf',1,'MQTTAsync_message::dup()'],['../structMQTTClient__message.html#abbb5f23377bd9f39cc79756786fa45cc',1,'MQTTClient_message::dup()'],['../unionHeader.html#a35c1c5537424b9307f4ff0803f16a25f',1,'Header::dup()']]] + ['data_904',['data',['../structMQTTAsync__willOptions.html#a9e18ae16bb17c09708e7f767390a9638',1,'MQTTAsync_willOptions::data()'],['../structMQTTAsync__connectOptions.html#aad75b20bff67aa3462602fe41465931a',1,'MQTTAsync_connectOptions::data()'],['../structMQTTClient__willOptions.html#aceaee06cb85a7dd485e58f0cd26c289d',1,'MQTTClient_willOptions::data()'],['../structMQTTClient__connectOptions.html#aaa44742ad0345bf7f3aea7628dea6bca',1,'MQTTClient_connectOptions::data()'],['../structMQTTLenString.html#ac875ffa1e0af752d17a10be055c33377',1,'MQTTLenString::data()'],['../structMQTTProperty.html#af08778d86fb08643620cefabd205bc11',1,'MQTTProperty::data()'],['../structMQTTAsync__connectData.html#a3a5188d10f6aab79d85d0468a56e5033',1,'MQTTAsync_connectData::data()']]], + ['datalen_905',['datalen',['../structsocket__queue.html#a812ce9bb00766c3e91a593842414b693',1,'socket_queue']]], + ['def_5fqueue_906',['def_queue',['../SocketBuffer_8c.html#ace376d23d15b97a487298fa0c8a238ea',1,'SocketBuffer.c']]], + ['destinationname_907',['destinationName',['../structMQTTAsync__successData5.html#a3aa03bcf1e08deeaacb237d014181e80',1,'MQTTAsync_successData5::destinationName()'],['../structMQTTAsync__successData.html#af3eef8b306fc96c9a0e36f2d0fd1e322',1,'MQTTAsync_successData::destinationName()']]], + ['disabledefaulttruststore_908',['disableDefaultTrustStore',['../structMQTTAsync__SSLOptions.html#a349454d7fe6021b62004874d7efa6277',1,'MQTTAsync_SSLOptions::disableDefaultTrustStore()'],['../structMQTTClient__SSLOptions.html#a09caf7e179009d70fff6205e89fcc434',1,'MQTTClient_SSLOptions::disableDefaultTrustStore()']]], + ['do_5fopenssl_5finit_909',['do_openssl_init',['../structMQTTAsync__init__options.html#a97caac4b94254b6b9251c07e9532f18b',1,'MQTTAsync_init_options::do_openssl_init()'],['../structMQTTClient__init__options.html#acb4f69163cbb7cf8fcc44ca086354dbc',1,'MQTTClient_init_options::do_openssl_init()']]], + ['dup_910',['dup',['../structMQTTAsync__message.html#aa9da73253863089ee90033c7f0dd28bf',1,'MQTTAsync_message::dup()'],['../structMQTTClient__message.html#abbb5f23377bd9f39cc79756786fa45cc',1,'MQTTClient_message::dup()'],['../unionHeader.html#a35c1c5537424b9307f4ff0803f16a25f',1,'Header::dup()']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_5.html b/docs/MQTTClient_internal/html/search/variables_5.html index 6aa2249b..7e345d16 100644 --- a/docs/MQTTClient_internal/html/search/variables_5.html +++ b/docs/MQTTClient_internal/html/search/variables_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_5.js b/docs/MQTTClient_internal/html/search/variables_5.js index 6b4d39d9..144e4fba 100644 --- a/docs/MQTTClient_internal/html/search/variables_5.js +++ b/docs/MQTTClient_internal/html/search/variables_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['enabledciphersuites_901',['enabledCipherSuites',['../structMQTTAsync__SSLOptions.html#a45ea4eb5a79cb0b6150c86d15c3143c9',1,'MQTTAsync_SSLOptions::enabledCipherSuites()'],['../structMQTTClient__SSLOptions.html#a0e07f3de1807ab841646cbb8bfa94657',1,'MQTTClient_SSLOptions::enabledCipherSuites()']]], - ['enableservercertauth_902',['enableServerCertAuth',['../structMQTTAsync__SSLOptions.html#ab349eef3682c23527cf73bd9cea8782c',1,'MQTTAsync_SSLOptions::enableServerCertAuth()'],['../structMQTTClient__SSLOptions.html#ac21e3ad623dd35533e7101001299fb6f',1,'MQTTClient_SSLOptions::enableServerCertAuth()']]] + ['enabledciphersuites_911',['enabledCipherSuites',['../structMQTTAsync__SSLOptions.html#a45ea4eb5a79cb0b6150c86d15c3143c9',1,'MQTTAsync_SSLOptions::enabledCipherSuites()'],['../structMQTTClient__SSLOptions.html#a0e07f3de1807ab841646cbb8bfa94657',1,'MQTTClient_SSLOptions::enabledCipherSuites()']]], + ['enableservercertauth_912',['enableServerCertAuth',['../structMQTTAsync__SSLOptions.html#ab349eef3682c23527cf73bd9cea8782c',1,'MQTTAsync_SSLOptions::enableServerCertAuth()'],['../structMQTTClient__SSLOptions.html#ac21e3ad623dd35533e7101001299fb6f',1,'MQTTClient_SSLOptions::enableServerCertAuth()']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_6.html b/docs/MQTTClient_internal/html/search/variables_6.html index ce4a9063..7d48e75e 100644 --- a/docs/MQTTClient_internal/html/search/variables_6.html +++ b/docs/MQTTClient_internal/html/search/variables_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_6.js b/docs/MQTTClient_internal/html/search/variables_6.js index 04900090..685dcbf7 100644 --- a/docs/MQTTClient_internal/html/search/variables_6.js +++ b/docs/MQTTClient_internal/html/search/variables_6.js @@ -1,9 +1,9 @@ var searchData= [ - ['fds_5fread_903',['fds_read',['../structSockets.html#a9e91e6577708542a4aab9c43976f7923',1,'Sockets']]], - ['file_904',['file',['../structstorageElement.html#aa13f42ed8f43459d289dec1bc4e259dd',1,'storageElement']]], - ['first_905',['first',['../structList.html#ab6dd52dbb617d263723015ef055caffe',1,'List']]], - ['fixed_5fheader_906',['fixed_header',['../structsocket__queue.html#a8cc2b561b0b418fbbcc7ede680c71169',1,'socket_queue']]], - ['flags_907',['flags',['../structConnect.html#a0c84bf238adaf04ea32a2b759247d80a',1,'Connect::flags()'],['../structConnack.html#a296f82b2061fa92586c8c2212ffd6efd',1,'Connack::flags()']]], - ['frees_908',['frees',['../structPacketBuffers.html#a3cd5992bdafa89f7e7a7083b20ff9390',1,'PacketBuffers']]] + ['fds_5fread_913',['fds_read',['../structSockets.html#a9e91e6577708542a4aab9c43976f7923',1,'Sockets']]], + ['file_914',['file',['../structstorageElement.html#aa13f42ed8f43459d289dec1bc4e259dd',1,'storageElement']]], + ['first_915',['first',['../structList.html#ab6dd52dbb617d263723015ef055caffe',1,'List']]], + ['fixed_5fheader_916',['fixed_header',['../structsocket__queue.html#a8cc2b561b0b418fbbcc7ede680c71169',1,'socket_queue']]], + ['flags_917',['flags',['../structConnect.html#a0c84bf238adaf04ea32a2b759247d80a',1,'Connect::flags()'],['../structConnack.html#a296f82b2061fa92586c8c2212ffd6efd',1,'Connack::flags()']]], + ['frees_918',['frees',['../structPacketBuffers.html#a3cd5992bdafa89f7e7a7083b20ff9390',1,'PacketBuffers']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_7.html b/docs/MQTTClient_internal/html/search/variables_7.html index 39ffd474..5c263409 100644 --- a/docs/MQTTClient_internal/html/search/variables_7.html +++ b/docs/MQTTClient_internal/html/search/variables_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_7.js b/docs/MQTTClient_internal/html/search/variables_7.js index 5f37b76e..0fd9f4bd 100644 --- a/docs/MQTTClient_internal/html/search/variables_7.js +++ b/docs/MQTTClient_internal/html/search/variables_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['good_909',['good',['../structClients.html#a45dde398d2d928794de3886c74c435f6',1,'Clients']]] + ['good_919',['good',['../structClients.html#a45dde398d2d928794de3886c74c435f6',1,'Clients']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_8.html b/docs/MQTTClient_internal/html/search/variables_8.html index 37a2eddf..dc9ec54a 100644 --- a/docs/MQTTClient_internal/html/search/variables_8.html +++ b/docs/MQTTClient_internal/html/search/variables_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_8.js b/docs/MQTTClient_internal/html/search/variables_8.js index ae8987a9..ee6a0ea5 100644 --- a/docs/MQTTClient_internal/html/search/variables_8.js +++ b/docs/MQTTClient_internal/html/search/variables_8.js @@ -1,9 +1,9 @@ var searchData= [ - ['header_910',['header',['../structConnect.html#a64c92596b5ce2c01452d53d91fdf41c4',1,'Connect::header()'],['../structConnack.html#af532b37a9b73aaf2254d9e5789814d71',1,'Connack::header()'],['../structMQTTPacket.html#a0f16e8684e0dd97e5b61785b18c48151',1,'MQTTPacket::header()'],['../structSuback.html#a18c1a08ef8f60791bd6495d4ecba0066',1,'Suback::header()'],['../structUnsuback.html#a7751d1086fd1c6d9ba948b10e816a0dc',1,'Unsuback::header()'],['../structPublish.html#a05131ded5e4a7768aee72f66df37f67d',1,'Publish::header()'],['../structAck.html#a8be1d032b4a67550dc6020d450ad65b6',1,'Ack::header()']]], - ['heap_911',['heap',['../Heap_8c.html#aa337931db6f2e3b78d5dce6a8d228257',1,'Heap.c']]], - ['heap_5ftracking_912',['heap_tracking',['../structTree.html#ad3f36479166a4a7d4124c6a79ee770f4',1,'Tree']]], - ['httpheaders_913',['httpHeaders',['../structMQTTAsync__connectOptions.html#a804e7ee013338a83a6f573f6644829ca',1,'MQTTAsync_connectOptions::httpHeaders()'],['../structMQTTClient__connectOptions.html#a843b077a0524dcc6a1ce6db12d2e7412',1,'MQTTClient_connectOptions::httpHeaders()']]], - ['httpproxy_914',['httpProxy',['../structClients.html#a70540b5d48c05815309215b18de69f8a',1,'Clients::httpProxy()'],['../structMQTTAsync__connectOptions.html#a2290cec827700b22efca37ea4bce3abd',1,'MQTTAsync_connectOptions::httpProxy()'],['../structMQTTClient__connectOptions.html#a4c801d96d7a0013928d6a475fd48fe3c',1,'MQTTClient_connectOptions::httpProxy()']]], - ['httpsproxy_915',['httpsProxy',['../structClients.html#a3864bdb9426f9fc646eff80109a831b3',1,'Clients::httpsProxy()'],['../structMQTTAsync__connectOptions.html#ad4937ddf0e089fb0e0e054ae3a3aea55',1,'MQTTAsync_connectOptions::httpsProxy()'],['../structMQTTClient__connectOptions.html#aff577bef3a72e4aa9022fda4cffd4544',1,'MQTTClient_connectOptions::httpsProxy()']]] + ['header_920',['header',['../structConnack.html#af532b37a9b73aaf2254d9e5789814d71',1,'Connack::header()'],['../structMQTTPacket.html#a0f16e8684e0dd97e5b61785b18c48151',1,'MQTTPacket::header()'],['../structSuback.html#a18c1a08ef8f60791bd6495d4ecba0066',1,'Suback::header()'],['../structUnsuback.html#a7751d1086fd1c6d9ba948b10e816a0dc',1,'Unsuback::header()'],['../structPublish.html#a05131ded5e4a7768aee72f66df37f67d',1,'Publish::header()'],['../structAck.html#a8be1d032b4a67550dc6020d450ad65b6',1,'Ack::header()'],['../structConnect.html#a64c92596b5ce2c01452d53d91fdf41c4',1,'Connect::header()']]], + ['heap_921',['heap',['../Heap_8c.html#aa337931db6f2e3b78d5dce6a8d228257',1,'Heap.c']]], + ['heap_5ftracking_922',['heap_tracking',['../structTree.html#ad3f36479166a4a7d4124c6a79ee770f4',1,'Tree']]], + ['httpheaders_923',['httpHeaders',['../structMQTTAsync__connectOptions.html#a804e7ee013338a83a6f573f6644829ca',1,'MQTTAsync_connectOptions::httpHeaders()'],['../structMQTTClient__connectOptions.html#a843b077a0524dcc6a1ce6db12d2e7412',1,'MQTTClient_connectOptions::httpHeaders()']]], + ['httpproxy_924',['httpProxy',['../structClients.html#a70540b5d48c05815309215b18de69f8a',1,'Clients::httpProxy()'],['../structMQTTAsync__connectOptions.html#a2290cec827700b22efca37ea4bce3abd',1,'MQTTAsync_connectOptions::httpProxy()'],['../structMQTTClient__connectOptions.html#a4c801d96d7a0013928d6a475fd48fe3c',1,'MQTTClient_connectOptions::httpProxy()']]], + ['httpsproxy_925',['httpsProxy',['../structClients.html#a3864bdb9426f9fc646eff80109a831b3',1,'Clients::httpsProxy()'],['../structMQTTAsync__connectOptions.html#ad4937ddf0e089fb0e0e054ae3a3aea55',1,'MQTTAsync_connectOptions::httpsProxy()'],['../structMQTTClient__connectOptions.html#aff577bef3a72e4aa9022fda4cffd4544',1,'MQTTClient_connectOptions::httpsProxy()']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_9.html b/docs/MQTTClient_internal/html/search/variables_9.html index 21e5a4f3..7b014750 100644 --- a/docs/MQTTClient_internal/html/search/variables_9.html +++ b/docs/MQTTClient_internal/html/search/variables_9.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_9.js b/docs/MQTTClient_internal/html/search/variables_9.js index 6d7a1ec0..516cf085 100644 --- a/docs/MQTTClient_internal/html/search/variables_9.js +++ b/docs/MQTTClient_internal/html/search/variables_9.js @@ -1,8 +1,8 @@ var searchData= [ - ['identifier_916',['identifier',['../structMQTTProperty.html#a5e407f4d2a2ba51cc784b7660fc06e6f',1,'MQTTProperty']]], - ['inboundmsgs_917',['inboundMsgs',['../structClients.html#a6e1576ebc386f04d2a70b943677b54d6',1,'Clients']]], - ['indexes_918',['indexes',['../structTree.html#a970b46e9c386139ad4fe213c043238e5',1,'Tree']]], - ['integer2_919',['integer2',['../structMQTTProperty.html#a940cbb3bf8211c5f207e3e1b6495c573',1,'MQTTProperty']]], - ['integer4_920',['integer4',['../structMQTTProperty.html#a64f07dae61291856a24828ff9fd70dd2',1,'MQTTProperty']]] + ['identifier_926',['identifier',['../structMQTTProperty.html#a5e407f4d2a2ba51cc784b7660fc06e6f',1,'MQTTProperty']]], + ['inboundmsgs_927',['inboundMsgs',['../structClients.html#a6e1576ebc386f04d2a70b943677b54d6',1,'Clients']]], + ['indexes_928',['indexes',['../structTree.html#a970b46e9c386139ad4fe213c043238e5',1,'Tree']]], + ['integer2_929',['integer2',['../structMQTTProperty.html#a940cbb3bf8211c5f207e3e1b6495c573',1,'MQTTProperty']]], + ['integer4_930',['integer4',['../structMQTTProperty.html#a64f07dae61291856a24828ff9fd70dd2',1,'MQTTProperty']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_a.html b/docs/MQTTClient_internal/html/search/variables_a.html index 1f650553..52a724d1 100644 --- a/docs/MQTTClient_internal/html/search/variables_a.html +++ b/docs/MQTTClient_internal/html/search/variables_a.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_a.js b/docs/MQTTClient_internal/html/search/variables_a.js index 79c07618..29d6b9c9 100644 --- a/docs/MQTTClient_internal/html/search/variables_a.js +++ b/docs/MQTTClient_internal/html/search/variables_a.js @@ -1,6 +1,6 @@ var searchData= [ - ['keepaliveinterval_921',['keepAliveInterval',['../structClients.html#a0c9720f6d2df33e40ca5a28ced0036bb',1,'Clients::keepAliveInterval()'],['../structMQTTAsync__connectOptions.html#ad6ed277d7db13a98ecef45ff3dd10044',1,'MQTTAsync_connectOptions::keepAliveInterval()'],['../structMQTTClient__connectOptions.html#a7de757dd172a63d699290d582aa0f798',1,'MQTTClient_connectOptions::keepAliveInterval()']]], - ['keepalivetimer_922',['keepAliveTimer',['../structConnect.html#a5274defe9badb8c5e46e7b674c548441',1,'Connect']]], - ['keystore_923',['keyStore',['../structMQTTAsync__SSLOptions.html#ac1b1a5ae74a807d672b5d44c7ecc4a9b',1,'MQTTAsync_SSLOptions::keyStore()'],['../structMQTTClient__SSLOptions.html#aab300df31cebc087303c4e5b8071e12c',1,'MQTTClient_SSLOptions::keyStore()']]] + ['keepaliveinterval_931',['keepAliveInterval',['../structClients.html#a0c9720f6d2df33e40ca5a28ced0036bb',1,'Clients::keepAliveInterval()'],['../structMQTTAsync__connectOptions.html#ad6ed277d7db13a98ecef45ff3dd10044',1,'MQTTAsync_connectOptions::keepAliveInterval()'],['../structMQTTClient__connectOptions.html#a7de757dd172a63d699290d582aa0f798',1,'MQTTClient_connectOptions::keepAliveInterval()']]], + ['keepalivetimer_932',['keepAliveTimer',['../structConnect.html#a5274defe9badb8c5e46e7b674c548441',1,'Connect']]], + ['keystore_933',['keyStore',['../structMQTTAsync__SSLOptions.html#ac1b1a5ae74a807d672b5d44c7ecc4a9b',1,'MQTTAsync_SSLOptions::keyStore()'],['../structMQTTClient__SSLOptions.html#aab300df31cebc087303c4e5b8071e12c',1,'MQTTClient_SSLOptions::keyStore()']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_b.html b/docs/MQTTClient_internal/html/search/variables_b.html index c02d066f..f376b27a 100644 --- a/docs/MQTTClient_internal/html/search/variables_b.html +++ b/docs/MQTTClient_internal/html/search/variables_b.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_b.js b/docs/MQTTClient_internal/html/search/variables_b.js index c3a63cc1..c8ca6fb1 100644 --- a/docs/MQTTClient_internal/html/search/variables_b.js +++ b/docs/MQTTClient_internal/html/search/variables_b.js @@ -1,9 +1,9 @@ var searchData= [ - ['last_924',['last',['../structList.html#a7be27419b0df1734d1028fa1729eb96c',1,'List']]], - ['len_925',['len',['../structMessages.html#a4751604bf85bccbff2273a069f976679',1,'Messages::len()'],['../structMQTTAsync__connectData.html#a34da6971227839d7ae96394a8bb2c31c',1,'MQTTAsync_connectData::len()'],['../structMQTTAsync__willOptions.html#af6f445357e4993806ceedbe7bafb2c20',1,'MQTTAsync_willOptions::len()'],['../structMQTTAsync__connectOptions.html#ac6d0d8d8e9c2f55f24b3219c18886be5',1,'MQTTAsync_connectOptions::len()'],['../structMQTTClient__willOptions.html#abfa72c814f19cbd87bf777da96ff2860',1,'MQTTClient_willOptions::len()'],['../structMQTTClient__connectOptions.html#a3e0d107b093f17c9623f4d1b76d18db6',1,'MQTTClient_connectOptions::len()'],['../structMQTTLenString.html#a7eb20db2b77f5e224e12d94c78573fa3',1,'MQTTLenString::len()'],['../structws__frame.html#a39b63d46db10302225327f57a20ce099',1,'ws_frame::len()'],['../utf-8_8c.html#afed088663f8704004425cdae2120b9b3',1,'len(): utf-8.c']]], - ['length_926',['length',['../structMQTTProperties.html#a9538dfb5688661da09829a64f582c3c2',1,'MQTTProperties']]], - ['line_927',['line',['../structstorageElement.html#aa378660045dffaebb2804fd8ba6c5982',1,'storageElement']]], - ['lines_5fwritten_928',['lines_written',['../Log_8c.html#af6d2621ee2d6d01ab6b42b9afbc1c56e',1,'Log.c']]], - ['lower_929',['lower',['../utf-8_8c.html#a17ae1b83727db4230c8df98b4ee953fc',1,'utf-8.c']]] + ['last_934',['last',['../structList.html#a7be27419b0df1734d1028fa1729eb96c',1,'List']]], + ['len_935',['len',['../structMessages.html#a4751604bf85bccbff2273a069f976679',1,'Messages::len()'],['../structMQTTAsync__connectData.html#a34da6971227839d7ae96394a8bb2c31c',1,'MQTTAsync_connectData::len()'],['../structMQTTAsync__willOptions.html#af6f445357e4993806ceedbe7bafb2c20',1,'MQTTAsync_willOptions::len()'],['../structMQTTAsync__connectOptions.html#ac6d0d8d8e9c2f55f24b3219c18886be5',1,'MQTTAsync_connectOptions::len()'],['../structMQTTClient__willOptions.html#abfa72c814f19cbd87bf777da96ff2860',1,'MQTTClient_willOptions::len()'],['../structMQTTClient__connectOptions.html#a3e0d107b093f17c9623f4d1b76d18db6',1,'MQTTClient_connectOptions::len()'],['../structMQTTLenString.html#a7eb20db2b77f5e224e12d94c78573fa3',1,'MQTTLenString::len()'],['../structws__frame.html#a39b63d46db10302225327f57a20ce099',1,'ws_frame::len()'],['../utf-8_8c.html#afed088663f8704004425cdae2120b9b3',1,'len(): utf-8.c']]], + ['length_936',['length',['../structMQTTProperties.html#a9538dfb5688661da09829a64f582c3c2',1,'MQTTProperties']]], + ['line_937',['line',['../structstorageElement.html#aa378660045dffaebb2804fd8ba6c5982',1,'storageElement']]], + ['lines_5fwritten_938',['lines_written',['../Log_8c.html#af6d2621ee2d6d01ab6b42b9afbc1c56e',1,'Log.c']]], + ['lower_939',['lower',['../utf-8_8c.html#a17ae1b83727db4230c8df98b4ee953fc',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_c.html b/docs/MQTTClient_internal/html/search/variables_c.html index 4b866c6c..6019eba9 100644 --- a/docs/MQTTClient_internal/html/search/variables_c.html +++ b/docs/MQTTClient_internal/html/search/variables_c.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_c.js b/docs/MQTTClient_internal/html/search/variables_c.js index 28e444ab..291eeb9f 100644 --- a/docs/MQTTClient_internal/html/search/variables_c.js +++ b/docs/MQTTClient_internal/html/search/variables_c.js @@ -1,18 +1,20 @@ var searchData= [ - ['mask_930',['mask',['../structPublish.html#a8a70d60f90d1418ebf501ad33eba2e11',1,'Publish::mask()'],['../structPacketBuffers.html#a9f29c58d295427b93e1e52fa7fd043ce',1,'PacketBuffers::mask()']]], - ['max_5fcount_931',['max_count',['../structMQTTProperties.html#ad3bd5700ed60fb16c072e8a65672a581',1,'MQTTProperties']]], - ['max_5flines_5fper_5ffile_932',['max_lines_per_file',['../Log_8c.html#ab0c0e8addd9dc5b2a54aafa15b606435',1,'Log.c']]], - ['max_5fsize_933',['max_size',['../structheap__info.html#acca9bc1ad656bc11b35406f8588d2c43',1,'heap_info']]], - ['max_5ftrace_5fentries_934',['max_trace_entries',['../structtrace__settings__type.html#acecf92991c3008b020b44f44f661f03f',1,'trace_settings_type']]], - ['maxbufferedmessages_935',['maxBufferedMessages',['../structMQTTAsync__createOptions.html#a39d76a63782adbd9526bad0b33603522',1,'MQTTAsync_createOptions']]], - ['maxinflight_936',['maxInflight',['../structMQTTAsync__connectOptions.html#afbcfee31a89fb634456290f22c4e32da',1,'MQTTAsync_connectOptions']]], - ['maxinflightmessages_937',['maxInflightMessages',['../structClients.html#af0963eb25f36dfafdd29bfc3007181b7',1,'Clients::maxInflightMessages()'],['../structMQTTClient__connectOptions.html#a23eefc54da515a0c189ed6d5918470b0',1,'MQTTClient_connectOptions::maxInflightMessages()']]], - ['maxretryinterval_938',['maxRetryInterval',['../structMQTTAsync__connectOptions.html#a7d1e6443a9050f3e54b02dfa6854feb4',1,'MQTTAsync_connectOptions']]], - ['message_939',['message',['../structMQTTAsync__failureData.html#a13f03bf80fd0024437af833d0964304d',1,'MQTTAsync_failureData::message()'],['../structMQTTAsync__failureData5.html#a2f82528951018af0eb73b313b94a470e',1,'MQTTAsync_failureData5::message()'],['../structMQTTAsync__successData.html#a0b2e85af2333e5775907d3f2b53907d4',1,'MQTTAsync_successData::message()'],['../structMQTTAsync__successData5.html#a83d34de369f169d5c1ee099720b964cf',1,'MQTTAsync_successData5::message()'],['../structMQTTAsync__willOptions.html#a0a4c40ef8b1f73a67326cd9987fd1894',1,'MQTTAsync_willOptions::message()'],['../structMQTTClient__willOptions.html#af367d507f25f09942ff12376b50a5ffb',1,'MQTTClient_willOptions::message()']]], - ['messagequeue_940',['messageQueue',['../structClients.html#a19263eecc43962ac977832e124b4529f',1,'Clients']]], - ['minretryinterval_941',['minRetryInterval',['../structMQTTAsync__connectOptions.html#a60bb7a0c6afaaff456f7fa4f18c84b66',1,'MQTTAsync_connectOptions']]], - ['mod_5fs_942',['mod_s',['../Socket_8c.html#a6caeed4a8d4f884c57a815034cee275e',1,'Socket.c']]], - ['mqttversion_943',['MQTTVersion',['../structClients.html#a9cb1ad103af7c3aaf00e79037e6befba',1,'Clients::MQTTVersion()'],['../structMQTTAsync__successData.html#a2803f7c3e77845d14d7d54004b6c16f9',1,'MQTTAsync_successData::MQTTVersion()'],['../structMQTTAsync__successData5.html#a2a1956f782970dfdc24bb521bd90452b',1,'MQTTAsync_successData5::MQTTVersion()'],['../structMQTTAsync__createOptions.html#a538f8ca0715d75b79be91e8050a44402',1,'MQTTAsync_createOptions::MQTTVersion()'],['../structMQTTAsync__connectOptions.html#a03bb9a21cbbd0f9a2258204c1890ca40',1,'MQTTAsync_connectOptions::MQTTVersion()'],['../structMQTTAsync__command.html#aab15c3354653ca0d03644bcaa98f77fb',1,'MQTTAsync_command::MQTTVersion()'],['../structMQTTClient__createOptions.html#ae15c5b3e67be5967deb87d2830805565',1,'MQTTClient_createOptions::MQTTVersion()'],['../structMQTTClient__connectOptions.html#ac5990907e10165a71e6b3c163f2f1eef',1,'MQTTClient_connectOptions::MQTTVersion()'],['../structConnack.html#af1a10784220b77ccfbf549b2443f2332',1,'Connack::MQTTVersion()'],['../structSuback.html#aec7bfa50ec92509a7d7f9466173a064e',1,'Suback::MQTTVersion()'],['../structUnsuback.html#a25413381d1f688248d64a82e67746108',1,'Unsuback::MQTTVersion()'],['../structPublish.html#a5e5bc5c8445b9f8bdbc02315f91921a0',1,'Publish::MQTTVersion()'],['../structAck.html#a542acd6ed107a1dfffd225b668c0d961',1,'Ack::MQTTVersion()']]], - ['msgid_944',['msgID',['../structClients.html#ad0aaa6d9fce1f8196ff859df00716055',1,'Clients::msgID()'],['../structMQTTAsync__message.html#a2c8572ec595842768848982321835bfe',1,'MQTTAsync_message::msgid()'],['../structMQTTClient__message.html#a3be81df63644606036c0a139564a1d92',1,'MQTTClient_message::msgid()'],['../structSuback.html#acb5971c2ca02372e41da6f1ccf202dba',1,'Suback::msgId()'],['../structUnsuback.html#a804d221a84b2306cb6040f405315abc3',1,'Unsuback::msgId()'],['../structPublish.html#ac1076c8b1dc5793c498f098f0a0d78cd',1,'Publish::msgId()'],['../structAck.html#aacfdbab79ac27e1a5ff80bccac4427a9',1,'Ack::msgId()']]] + ['mask_940',['mask',['../structPacketBuffers.html#a9f29c58d295427b93e1e52fa7fd043ce',1,'PacketBuffers::mask()'],['../structPublish.html#a8a70d60f90d1418ebf501ad33eba2e11',1,'Publish::mask()']]], + ['max_5fcount_941',['max_count',['../structMQTTProperties.html#ad3bd5700ed60fb16c072e8a65672a581',1,'MQTTProperties']]], + ['max_5flines_5fper_5ffile_942',['max_lines_per_file',['../Log_8c.html#ab0c0e8addd9dc5b2a54aafa15b606435',1,'Log.c']]], + ['max_5fsize_943',['max_size',['../structheap__info.html#acca9bc1ad656bc11b35406f8588d2c43',1,'heap_info']]], + ['max_5ftrace_5fentries_944',['max_trace_entries',['../structtrace__settings__type.html#acecf92991c3008b020b44f44f661f03f',1,'trace_settings_type']]], + ['maxbufferedmessages_945',['maxBufferedMessages',['../structMQTTAsync__createOptions.html#a39d76a63782adbd9526bad0b33603522',1,'MQTTAsync_createOptions']]], + ['maxinflight_946',['maxInflight',['../structMQTTAsync__connectOptions.html#afbcfee31a89fb634456290f22c4e32da',1,'MQTTAsync_connectOptions']]], + ['maxinflightmessages_947',['maxInflightMessages',['../structClients.html#af0963eb25f36dfafdd29bfc3007181b7',1,'Clients::maxInflightMessages()'],['../structMQTTClient__connectOptions.html#a23eefc54da515a0c189ed6d5918470b0',1,'MQTTClient_connectOptions::maxInflightMessages()']]], + ['maxretryinterval_948',['maxRetryInterval',['../structMQTTAsync__connectOptions.html#a7d1e6443a9050f3e54b02dfa6854feb4',1,'MQTTAsync_connectOptions']]], + ['message_949',['message',['../structMQTTAsync__failureData.html#a13f03bf80fd0024437af833d0964304d',1,'MQTTAsync_failureData::message()'],['../structMQTTAsync__failureData5.html#a2f82528951018af0eb73b313b94a470e',1,'MQTTAsync_failureData5::message()'],['../structMQTTAsync__successData.html#a0b2e85af2333e5775907d3f2b53907d4',1,'MQTTAsync_successData::message()'],['../structMQTTAsync__successData5.html#a83d34de369f169d5c1ee099720b964cf',1,'MQTTAsync_successData5::message()'],['../structMQTTAsync__willOptions.html#a0a4c40ef8b1f73a67326cd9987fd1894',1,'MQTTAsync_willOptions::message()'],['../structMQTTClient__willOptions.html#af367d507f25f09942ff12376b50a5ffb',1,'MQTTClient_willOptions::message()']]], + ['messagequeue_950',['messageQueue',['../structClients.html#a19263eecc43962ac977832e124b4529f',1,'Clients']]], + ['minretryinterval_951',['minRetryInterval',['../structMQTTAsync__connectOptions.html#a60bb7a0c6afaaff456f7fa4f18c84b66',1,'MQTTAsync_connectOptions']]], + ['mod_5fs_952',['mod_s',['../Socket_8c.html#a6caeed4a8d4f884c57a815034cee275e',1,'Socket.c']]], + ['mqttversion_953',['MQTTVersion',['../structAck.html#a542acd6ed107a1dfffd225b668c0d961',1,'Ack::MQTTVersion()'],['../structClients.html#a9cb1ad103af7c3aaf00e79037e6befba',1,'Clients::MQTTVersion()'],['../structMQTTAsync__successData.html#a2803f7c3e77845d14d7d54004b6c16f9',1,'MQTTAsync_successData::MQTTVersion()'],['../structMQTTAsync__successData5.html#a2a1956f782970dfdc24bb521bd90452b',1,'MQTTAsync_successData5::MQTTVersion()'],['../structPublish.html#a5e5bc5c8445b9f8bdbc02315f91921a0',1,'Publish::MQTTVersion()'],['../structUnsuback.html#a25413381d1f688248d64a82e67746108',1,'Unsuback::MQTTVersion()'],['../structSuback.html#aec7bfa50ec92509a7d7f9466173a064e',1,'Suback::MQTTVersion()'],['../structConnack.html#af1a10784220b77ccfbf549b2443f2332',1,'Connack::MQTTVersion()'],['../structMQTTClient__connectOptions.html#ac5990907e10165a71e6b3c163f2f1eef',1,'MQTTClient_connectOptions::MQTTVersion()'],['../structMQTTClient__createOptions.html#ae15c5b3e67be5967deb87d2830805565',1,'MQTTClient_createOptions::MQTTVersion()'],['../structMQTTAsync__command.html#aab15c3354653ca0d03644bcaa98f77fb',1,'MQTTAsync_command::MQTTVersion()'],['../structMQTTAsync__connectOptions.html#a03bb9a21cbbd0f9a2258204c1890ca40',1,'MQTTAsync_connectOptions::MQTTVersion()'],['../structMQTTAsync__createOptions.html#a538f8ca0715d75b79be91e8050a44402',1,'MQTTAsync_createOptions::MQTTVersion()']]], + ['msgid_954',['msgId',['../structSuback.html#acb5971c2ca02372e41da6f1ccf202dba',1,'Suback::msgId()'],['../structUnsuback.html#a804d221a84b2306cb6040f405315abc3',1,'Unsuback::msgId()'],['../structPublish.html#ac1076c8b1dc5793c498f098f0a0d78cd',1,'Publish::msgId()'],['../structAck.html#aacfdbab79ac27e1a5ff80bccac4427a9',1,'Ack::msgId()']]], + ['msgid_955',['msgid',['../structMQTTAsync__message.html#a2c8572ec595842768848982321835bfe',1,'MQTTAsync_message::msgid()'],['../structMQTTClient__message.html#a3be81df63644606036c0a139564a1d92',1,'MQTTClient_message::msgid()']]], + ['msgid_956',['msgID',['../structClients.html#ad0aaa6d9fce1f8196ff859df00716055',1,'Clients']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_d.html b/docs/MQTTClient_internal/html/search/variables_d.html index 84d878b8..f61ae751 100644 --- a/docs/MQTTClient_internal/html/search/variables_d.html +++ b/docs/MQTTClient_internal/html/search/variables_d.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_d.js b/docs/MQTTClient_internal/html/search/variables_d.js index c6daea4c..8a2965c4 100644 --- a/docs/MQTTClient_internal/html/search/variables_d.js +++ b/docs/MQTTClient_internal/html/search/variables_d.js @@ -1,10 +1,10 @@ var searchData= [ - ['name_945',['name',['../structMQTTAsync__nameValue.html#ad14f405ef73f1f2aa632bb22e6b26f51',1,'MQTTAsync_nameValue']]], - ['net_946',['net',['../structClients.html#a8521f3c0d7728e0bac41c1601ca8bbb9',1,'Clients']]], - ['new_5fpackets_947',['new_packets',['../MQTTPacket_8c.html#a210a7b616c27aa7247824022285da784',1,'MQTTPacket.c']]], - ['next_948',['next',['../structListElementStruct.html#ae087afc0ce4e6e17592420764902f301',1,'ListElementStruct']]], - ['nextmessagetype_949',['nextMessageType',['../structMessages.html#aa31b6d8af2e0230eccdcc6ee7f2cefb1',1,'Messages']]], - ['nfds_950',['nfds',['../structSockets.html#a9bee5974437201a4b7728955de2ebd50',1,'Sockets']]], - ['nolocal_951',['noLocal',['../structMQTTSubscribe__options.html#a52989a1198bc251aad22638e85f2b7b4',1,'MQTTSubscribe_options']]] + ['name_957',['name',['../structMQTTAsync__nameValue.html#ad14f405ef73f1f2aa632bb22e6b26f51',1,'MQTTAsync_nameValue']]], + ['net_958',['net',['../structClients.html#a8521f3c0d7728e0bac41c1601ca8bbb9',1,'Clients']]], + ['new_5fpackets_959',['new_packets',['../MQTTPacket_8c.html#a210a7b616c27aa7247824022285da784',1,'MQTTPacket.c']]], + ['next_960',['next',['../structListElementStruct.html#ae087afc0ce4e6e17592420764902f301',1,'ListElementStruct']]], + ['nextmessagetype_961',['nextMessageType',['../structMessages.html#aa31b6d8af2e0230eccdcc6ee7f2cefb1',1,'Messages']]], + ['nfds_962',['nfds',['../structSockets.html#a9bee5974437201a4b7728955de2ebd50',1,'Sockets']]], + ['nolocal_963',['noLocal',['../structMQTTSubscribe__options.html#a52989a1198bc251aad22638e85f2b7b4',1,'MQTTSubscribe_options']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_e.html b/docs/MQTTClient_internal/html/search/variables_e.html index b0d9b7b2..7bfd3721 100644 --- a/docs/MQTTClient_internal/html/search/variables_e.html +++ b/docs/MQTTClient_internal/html/search/variables_e.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_e.js b/docs/MQTTClient_internal/html/search/variables_e.js index 8087b644..2605bce3 100644 --- a/docs/MQTTClient_internal/html/search/variables_e.js +++ b/docs/MQTTClient_internal/html/search/variables_e.js @@ -1,9 +1,9 @@ var searchData= [ - ['onfailure_952',['onFailure',['../structMQTTAsync__responseOptions.html#a180b2c728942d606a3fc4a4a79bb81f4',1,'MQTTAsync_responseOptions::onFailure()'],['../structMQTTAsync__connectOptions.html#a703d2a77602f3737eccf5123e16bb428',1,'MQTTAsync_connectOptions::onFailure()'],['../structMQTTAsync__disconnectOptions.html#a7719db20d0649fd1bd0edc239c289cdb',1,'MQTTAsync_disconnectOptions::onFailure()']]], - ['onfailure5_953',['onFailure5',['../structMQTTAsync__responseOptions.html#a134555eea729d1eeeb9427057834fa38',1,'MQTTAsync_responseOptions::onFailure5()'],['../structMQTTAsync__connectOptions.html#a48bd502d8028bb13afbce0793ebe3c76',1,'MQTTAsync_connectOptions::onFailure5()'],['../structMQTTAsync__disconnectOptions.html#a8d78996c4b349f10196450fe9900b943',1,'MQTTAsync_disconnectOptions::onFailure5()']]], - ['onsuccess_954',['onSuccess',['../structMQTTAsync__responseOptions.html#a4a6dffebf9a6f4ffb9fe2a5d949d8090',1,'MQTTAsync_responseOptions::onSuccess()'],['../structMQTTAsync__connectOptions.html#a99c3f6fd2c5238112a6ae90ce1013f10',1,'MQTTAsync_connectOptions::onSuccess()'],['../structMQTTAsync__disconnectOptions.html#afe4eec80b7037a59e459fb8643bed3e3',1,'MQTTAsync_disconnectOptions::onSuccess()']]], - ['onsuccess5_955',['onSuccess5',['../structMQTTAsync__responseOptions.html#a1294e96bc2d81fca8808fdca3bf4dd2e',1,'MQTTAsync_responseOptions::onSuccess5()'],['../structMQTTAsync__connectOptions.html#af108a647db655523e892938d3a67d6b4',1,'MQTTAsync_connectOptions::onSuccess5()'],['../structMQTTAsync__disconnectOptions.html#ad8a30361f986c6f32ee33e59591d736b',1,'MQTTAsync_disconnectOptions::onSuccess5()']]], - ['outboundmsgs_956',['outboundMsgs',['../structClients.html#a1d9f8325aa92c6f65a285e823091bbe1',1,'Clients']]], - ['outboundqueue_957',['outboundQueue',['../structClients.html#a9495d5b5b191a897c05ea8d298e6d6b5',1,'Clients']]] + ['onfailure_964',['onFailure',['../structMQTTAsync__responseOptions.html#a180b2c728942d606a3fc4a4a79bb81f4',1,'MQTTAsync_responseOptions::onFailure()'],['../structMQTTAsync__connectOptions.html#a703d2a77602f3737eccf5123e16bb428',1,'MQTTAsync_connectOptions::onFailure()'],['../structMQTTAsync__disconnectOptions.html#a7719db20d0649fd1bd0edc239c289cdb',1,'MQTTAsync_disconnectOptions::onFailure()']]], + ['onfailure5_965',['onFailure5',['../structMQTTAsync__responseOptions.html#a134555eea729d1eeeb9427057834fa38',1,'MQTTAsync_responseOptions::onFailure5()'],['../structMQTTAsync__connectOptions.html#a48bd502d8028bb13afbce0793ebe3c76',1,'MQTTAsync_connectOptions::onFailure5()'],['../structMQTTAsync__disconnectOptions.html#a8d78996c4b349f10196450fe9900b943',1,'MQTTAsync_disconnectOptions::onFailure5()']]], + ['onsuccess_966',['onSuccess',['../structMQTTAsync__responseOptions.html#a4a6dffebf9a6f4ffb9fe2a5d949d8090',1,'MQTTAsync_responseOptions::onSuccess()'],['../structMQTTAsync__connectOptions.html#a99c3f6fd2c5238112a6ae90ce1013f10',1,'MQTTAsync_connectOptions::onSuccess()'],['../structMQTTAsync__disconnectOptions.html#afe4eec80b7037a59e459fb8643bed3e3',1,'MQTTAsync_disconnectOptions::onSuccess()']]], + ['onsuccess5_967',['onSuccess5',['../structMQTTAsync__responseOptions.html#a1294e96bc2d81fca8808fdca3bf4dd2e',1,'MQTTAsync_responseOptions::onSuccess5()'],['../structMQTTAsync__connectOptions.html#af108a647db655523e892938d3a67d6b4',1,'MQTTAsync_connectOptions::onSuccess5()'],['../structMQTTAsync__disconnectOptions.html#ad8a30361f986c6f32ee33e59591d736b',1,'MQTTAsync_disconnectOptions::onSuccess5()']]], + ['outboundmsgs_968',['outboundMsgs',['../structClients.html#a1d9f8325aa92c6f65a285e823091bbe1',1,'Clients']]], + ['outboundqueue_969',['outboundQueue',['../structClients.html#a9495d5b5b191a897c05ea8d298e6d6b5',1,'Clients']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_f.html b/docs/MQTTClient_internal/html/search/variables_f.html index a708dbf0..d97920d0 100644 --- a/docs/MQTTClient_internal/html/search/variables_f.html +++ b/docs/MQTTClient_internal/html/search/variables_f.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/MQTTClient_internal/html/search/variables_f.js b/docs/MQTTClient_internal/html/search/variables_f.js index 2d6109bc..e9acf4c1 100644 --- a/docs/MQTTClient_internal/html/search/variables_f.js +++ b/docs/MQTTClient_internal/html/search/variables_f.js @@ -1,32 +1,32 @@ var searchData= [ - ['packet_5fnames_958',['packet_names',['../MQTTPacket_8c.html#a4536b1c36ed06171f20baeb69c01aa02',1,'MQTTPacket.c']]], - ['packet_5ftype_959',['packet_type',['../structMQTTAsync__failureData5.html#a20603650f6fd4e429fc4c246d5005843',1,'MQTTAsync_failureData5']]], - ['parent_960',['parent',['../structNodeStruct.html#a1a00514fc5241f8b1391fa0eb433a128',1,'NodeStruct']]], - ['password_961',['password',['../structClients.html#a9f88bf65b015c91ec6ae7bc827513d66',1,'Clients::password()'],['../structMQTTAsync__connectOptions.html#a52a773222e567d8480c85b6a27bf36f2',1,'MQTTAsync_connectOptions::password()'],['../structMQTTClient__connectOptions.html#a8f0e7e9e217a913fa8e200e2d5e45f6e',1,'MQTTClient_connectOptions::password()'],['../structConnect.html#a5ad7b3bbaab88cc22692b849f31b2756',1,'Connect::password()']]], - ['passwordlen_962',['passwordlen',['../structClients.html#a9fc28cb6abab3247752403043c346aa1',1,'Clients']]], - ['payload_963',['payload',['../structMQTTAsync__message.html#a13d88e9c871b5b39b73370a0784331af',1,'MQTTAsync_message::payload()'],['../structMQTTAsync__willOptions.html#a359707f9e88d705bce91d482d9816e33',1,'MQTTAsync_willOptions::payload()'],['../structMQTTClient__message.html#a90437a223f235ad4412d0c7c69f08125',1,'MQTTClient_message::payload()'],['../structMQTTClient__willOptions.html#a7553866f76f2f01ee59bc2114da9a169',1,'MQTTClient_willOptions::payload()'],['../structPublish.html#abe2b6e569277a3c7fda52449e1ea31b6',1,'Publish::payload()']]], - ['payloadlen_964',['payloadlen',['../structMQTTAsync__message.html#a9271900e2789ff81e382a47842aaee8f',1,'MQTTAsync_message::payloadlen()'],['../structMQTTClient__message.html#a85b39bde61ef9f5ed853ad6489145a94',1,'MQTTClient_message::payloadlen()'],['../structPublish.html#ac250077e84d98fc44f95530793bae79b',1,'Publish::payloadlen()']]], - ['pclear_965',['pclear',['../structMQTTClient__persistence.html#a4eb919940dcc01a005abcdeb08a7eb10',1,'MQTTClient_persistence']]], - ['pclose_966',['pclose',['../structMQTTClient__persistence.html#a1bcc2ebaee1ab155b906493b14088a33',1,'MQTTClient_persistence']]], - ['pcontainskey_967',['pcontainskey',['../structMQTTClient__persistence.html#a049d548dc2bbe906309a9f869a60653c',1,'MQTTClient_persistence']]], - ['persistence_968',['persistence',['../structClients.html#a8745ab9f05600fd3f97bf695e99a7f17',1,'Clients']]], - ['pget_969',['pget',['../structMQTTClient__persistence.html#a0f9fe9edd3946f0647862de7904e4098',1,'MQTTClient_persistence']]], - ['phandle_970',['phandle',['../structClients.html#a1a0ca8e87f5d963ea3ab5c2e7748aaa5',1,'Clients']]], - ['ping_5fdue_971',['ping_due',['../structClients.html#a121c64145977cb25dfd05a3297a4d6f1',1,'Clients']]], - ['ping_5fdue_5ftime_972',['ping_due_time',['../structClients.html#a4e6f0b2b23c1a2b86899c9ca7b06b29b',1,'Clients']]], - ['pkeys_973',['pkeys',['../structMQTTClient__persistence.html#a36a69926a618f7e0f5098db61ece101b',1,'MQTTClient_persistence']]], - ['popen_974',['popen',['../structMQTTClient__persistence.html#ae58084438624ad267f7c050debd1b2ff',1,'MQTTClient_persistence']]], - ['pos_975',['pos',['../structws__frame.html#a03099256dd943b73f0558039b6ff4c6b',1,'ws_frame']]], - ['pput_976',['pput',['../structMQTTClient__persistence.html#a0f7846e9b4118a7a63702c504f4c8e9d',1,'MQTTClient_persistence']]], - ['premove_977',['premove',['../structMQTTClient__persistence.html#a815d4110bfd7f2678a60f9264b13e075',1,'MQTTClient_persistence']]], - ['prev_978',['prev',['../structListElementStruct.html#a988db5828265edf844721e841e71fffe',1,'ListElementStruct']]], - ['privatekey_979',['privateKey',['../structMQTTAsync__SSLOptions.html#a8b56d6075568072840f02abc8c642f6a',1,'MQTTAsync_SSLOptions::privateKey()'],['../structMQTTClient__SSLOptions.html#a5f3cc2c0f36991db85aae88ccd4985f9',1,'MQTTClient_SSLOptions::privateKey()']]], - ['privatekeypassword_980',['privateKeyPassword',['../structMQTTAsync__SSLOptions.html#a498e4dfcb65894bfc04290ace6b9a4cd',1,'MQTTAsync_SSLOptions::privateKeyPassword()'],['../structMQTTClient__SSLOptions.html#a183af235478d93a6b14c204e9e291bab',1,'MQTTClient_SSLOptions::privateKeyPassword()']]], - ['properties_981',['properties',['../structMQTTAsync__message.html#a48ff43122b16a12b6b8a9890ebfb6410',1,'MQTTAsync_message::properties()'],['../structMQTTAsync__failureData5.html#a9c1807e86e398de6f4846d90b4a5eda6',1,'MQTTAsync_failureData5::properties()'],['../structMQTTAsync__successData5.html#ac425dfec67b3245e95a3e415d93ba5bf',1,'MQTTAsync_successData5::properties()'],['../structMQTTAsync__responseOptions.html#abc19c474b6908b2bcbd42f8410d46336',1,'MQTTAsync_responseOptions::properties()'],['../structMQTTAsync__disconnectOptions.html#a2df711f7d216b57a584195691ac5630f',1,'MQTTAsync_disconnectOptions::properties()'],['../structMQTTClient__message.html#aa24d24d388481c0616a704cabb041f95',1,'MQTTClient_message::properties()'],['../structConnack.html#ab5d35213eadd6bbecd56627b9680ac0c',1,'Connack::properties()'],['../structSuback.html#a57c418a7021b10c92aec4c4d010b7f67',1,'Suback::properties()'],['../structUnsuback.html#adc48396a054907a9806fef1dd46d1055',1,'Unsuback::properties()'],['../structPublish.html#a99fce902e497cd379686c6d447a17be3',1,'Publish::properties()'],['../structAck.html#a7eff67c84b323fc798eb3282b2981069',1,'Ack::properties()']]], - ['protocol_982',['Protocol',['../structConnect.html#ab87417598de200c235ce28e8947f8804',1,'Connect']]], - ['protos_983',['protos',['../structMQTTAsync__SSLOptions.html#a9947024802d3fb16fc050f4741a46e04',1,'MQTTAsync_SSLOptions::protos()'],['../structMQTTClient__SSLOptions.html#ad3db47e7874990570d03758a3fa28dad',1,'MQTTClient_SSLOptions::protos()']]], - ['protos_5flen_984',['protos_len',['../structMQTTAsync__SSLOptions.html#ad9e390b02afbf856c5a9267d30f09208',1,'MQTTAsync_SSLOptions::protos_len()'],['../structMQTTClient__SSLOptions.html#ac2df368c72cfaa432f90e3b657bd0883',1,'MQTTClient_SSLOptions::protos_len()']]], - ['ptr_985',['ptr',['../structstorageElement.html#a0d617635e796eaa92ace8cb5cd6d0925',1,'storageElement']]], - ['pub_986',['pub',['../structMQTTAsync__successData.html#a61d994959ff1350ab2a0986d33ecd204',1,'MQTTAsync_successData::pub()'],['../structMQTTAsync__successData5.html#a7e75879a42ba01477a3c921487e3c564',1,'MQTTAsync_successData5::pub()']]] + ['packet_5fnames_970',['packet_names',['../MQTTPacket_8c.html#a4536b1c36ed06171f20baeb69c01aa02',1,'MQTTPacket.c']]], + ['packet_5ftype_971',['packet_type',['../structMQTTAsync__failureData5.html#a20603650f6fd4e429fc4c246d5005843',1,'MQTTAsync_failureData5']]], + ['parent_972',['parent',['../structNodeStruct.html#a1a00514fc5241f8b1391fa0eb433a128',1,'NodeStruct']]], + ['password_973',['password',['../structMQTTClient__connectOptions.html#a8f0e7e9e217a913fa8e200e2d5e45f6e',1,'MQTTClient_connectOptions::password()'],['../structClients.html#a9f88bf65b015c91ec6ae7bc827513d66',1,'Clients::password()'],['../structConnect.html#a5ad7b3bbaab88cc22692b849f31b2756',1,'Connect::password()'],['../structMQTTAsync__connectOptions.html#a52a773222e567d8480c85b6a27bf36f2',1,'MQTTAsync_connectOptions::password()']]], + ['passwordlen_974',['passwordlen',['../structClients.html#a9fc28cb6abab3247752403043c346aa1',1,'Clients']]], + ['payload_975',['payload',['../structMQTTClient__message.html#a90437a223f235ad4412d0c7c69f08125',1,'MQTTClient_message::payload()'],['../structMQTTAsync__message.html#a13d88e9c871b5b39b73370a0784331af',1,'MQTTAsync_message::payload()'],['../structPublish.html#abe2b6e569277a3c7fda52449e1ea31b6',1,'Publish::payload()'],['../structMQTTClient__willOptions.html#a7553866f76f2f01ee59bc2114da9a169',1,'MQTTClient_willOptions::payload()'],['../structMQTTAsync__willOptions.html#a359707f9e88d705bce91d482d9816e33',1,'MQTTAsync_willOptions::payload()']]], + ['payloadlen_976',['payloadlen',['../structMQTTAsync__message.html#a9271900e2789ff81e382a47842aaee8f',1,'MQTTAsync_message::payloadlen()'],['../structPublish.html#ac250077e84d98fc44f95530793bae79b',1,'Publish::payloadlen()'],['../structMQTTClient__message.html#a85b39bde61ef9f5ed853ad6489145a94',1,'MQTTClient_message::payloadlen()']]], + ['pclear_977',['pclear',['../structMQTTClient__persistence.html#a4eb919940dcc01a005abcdeb08a7eb10',1,'MQTTClient_persistence']]], + ['pclose_978',['pclose',['../structMQTTClient__persistence.html#a1bcc2ebaee1ab155b906493b14088a33',1,'MQTTClient_persistence']]], + ['pcontainskey_979',['pcontainskey',['../structMQTTClient__persistence.html#a049d548dc2bbe906309a9f869a60653c',1,'MQTTClient_persistence']]], + ['persistence_980',['persistence',['../structClients.html#a8745ab9f05600fd3f97bf695e99a7f17',1,'Clients']]], + ['pget_981',['pget',['../structMQTTClient__persistence.html#a0f9fe9edd3946f0647862de7904e4098',1,'MQTTClient_persistence']]], + ['phandle_982',['phandle',['../structClients.html#a1a0ca8e87f5d963ea3ab5c2e7748aaa5',1,'Clients']]], + ['ping_5fdue_983',['ping_due',['../structClients.html#a121c64145977cb25dfd05a3297a4d6f1',1,'Clients']]], + ['ping_5fdue_5ftime_984',['ping_due_time',['../structClients.html#a4e6f0b2b23c1a2b86899c9ca7b06b29b',1,'Clients']]], + ['pkeys_985',['pkeys',['../structMQTTClient__persistence.html#a36a69926a618f7e0f5098db61ece101b',1,'MQTTClient_persistence']]], + ['popen_986',['popen',['../structMQTTClient__persistence.html#ae58084438624ad267f7c050debd1b2ff',1,'MQTTClient_persistence']]], + ['pos_987',['pos',['../structws__frame.html#a03099256dd943b73f0558039b6ff4c6b',1,'ws_frame']]], + ['pput_988',['pput',['../structMQTTClient__persistence.html#a0f7846e9b4118a7a63702c504f4c8e9d',1,'MQTTClient_persistence']]], + ['premove_989',['premove',['../structMQTTClient__persistence.html#a815d4110bfd7f2678a60f9264b13e075',1,'MQTTClient_persistence']]], + ['prev_990',['prev',['../structListElementStruct.html#a988db5828265edf844721e841e71fffe',1,'ListElementStruct']]], + ['privatekey_991',['privateKey',['../structMQTTClient__SSLOptions.html#a5f3cc2c0f36991db85aae88ccd4985f9',1,'MQTTClient_SSLOptions::privateKey()'],['../structMQTTAsync__SSLOptions.html#a8b56d6075568072840f02abc8c642f6a',1,'MQTTAsync_SSLOptions::privateKey()']]], + ['privatekeypassword_992',['privateKeyPassword',['../structMQTTClient__SSLOptions.html#a183af235478d93a6b14c204e9e291bab',1,'MQTTClient_SSLOptions::privateKeyPassword()'],['../structMQTTAsync__SSLOptions.html#a498e4dfcb65894bfc04290ace6b9a4cd',1,'MQTTAsync_SSLOptions::privateKeyPassword()']]], + ['properties_993',['properties',['../structMQTTAsync__responseOptions.html#abc19c474b6908b2bcbd42f8410d46336',1,'MQTTAsync_responseOptions::properties()'],['../structMQTTAsync__disconnectOptions.html#a2df711f7d216b57a584195691ac5630f',1,'MQTTAsync_disconnectOptions::properties()'],['../structMQTTClient__message.html#aa24d24d388481c0616a704cabb041f95',1,'MQTTClient_message::properties()'],['../structMQTTAsync__message.html#a48ff43122b16a12b6b8a9890ebfb6410',1,'MQTTAsync_message::properties()'],['../structConnack.html#ab5d35213eadd6bbecd56627b9680ac0c',1,'Connack::properties()'],['../structSuback.html#a57c418a7021b10c92aec4c4d010b7f67',1,'Suback::properties()'],['../structMQTTAsync__failureData5.html#a9c1807e86e398de6f4846d90b4a5eda6',1,'MQTTAsync_failureData5::properties()'],['../structUnsuback.html#adc48396a054907a9806fef1dd46d1055',1,'Unsuback::properties()'],['../structPublish.html#a99fce902e497cd379686c6d447a17be3',1,'Publish::properties()'],['../structMQTTAsync__successData5.html#ac425dfec67b3245e95a3e415d93ba5bf',1,'MQTTAsync_successData5::properties()'],['../structAck.html#a7eff67c84b323fc798eb3282b2981069',1,'Ack::properties()']]], + ['protocol_994',['Protocol',['../structConnect.html#ab87417598de200c235ce28e8947f8804',1,'Connect']]], + ['protos_995',['protos',['../structMQTTAsync__SSLOptions.html#a9947024802d3fb16fc050f4741a46e04',1,'MQTTAsync_SSLOptions::protos()'],['../structMQTTClient__SSLOptions.html#ad3db47e7874990570d03758a3fa28dad',1,'MQTTClient_SSLOptions::protos()']]], + ['protos_5flen_996',['protos_len',['../structMQTTAsync__SSLOptions.html#ad9e390b02afbf856c5a9267d30f09208',1,'MQTTAsync_SSLOptions::protos_len()'],['../structMQTTClient__SSLOptions.html#ac2df368c72cfaa432f90e3b657bd0883',1,'MQTTClient_SSLOptions::protos_len()']]], + ['ptr_997',['ptr',['../structstorageElement.html#a0d617635e796eaa92ace8cb5cd6d0925',1,'storageElement']]], + ['pub_998',['pub',['../structMQTTAsync__successData.html#a61d994959ff1350ab2a0986d33ecd204',1,'MQTTAsync_successData::pub()'],['../structMQTTAsync__successData5.html#a7e75879a42ba01477a3c921487e3c564',1,'MQTTAsync_successData5::pub()']]] ]; diff --git a/docs/MQTTClient_internal/html/structAck.html b/docs/MQTTClient_internal/html/structAck.html index c50eaf80..4a788c29 100644 --- a/docs/MQTTClient_internal/html/structAck.html +++ b/docs/MQTTClient_internal/html/structAck.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Ack Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for Ack:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -134,9 +134,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structAckRequest.html b/docs/MQTTClient_internal/html/structAckRequest.html index a17c586a..a736fd73 100644 --- a/docs/MQTTClient_internal/html/structAckRequest.html +++ b/docs/MQTTClient_internal/html/structAckRequest.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: AckRequest Struct Reference @@ -30,10 +30,10 @@
        - + @@ -84,9 +84,7 @@ int ackType diff --git a/docs/MQTTClient_internal/html/structAck__coll__graph.md5 b/docs/MQTTClient_internal/html/structAck__coll__graph.md5 index a21eaf1e..0df04416 100644 --- a/docs/MQTTClient_internal/html/structAck__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structAck__coll__graph.md5 @@ -1 +1 @@ -52b72bc4763da5a1205c712e986c8e00 \ No newline at end of file +371598f06e55793f607880c695c5128b \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structAck__coll__graph.png b/docs/MQTTClient_internal/html/structAck__coll__graph.png index 9fee85fe..6134bded 100644 Binary files a/docs/MQTTClient_internal/html/structAck__coll__graph.png and b/docs/MQTTClient_internal/html/structAck__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structClientStates.html b/docs/MQTTClient_internal/html/structClientStates.html index 2a7cb154..a170db88 100644 --- a/docs/MQTTClient_internal/html/structClientStates.html +++ b/docs/MQTTClient_internal/html/structClientStates.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: ClientStates Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for ClientStates:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -101,9 +101,7 @@ const char * version diff --git a/docs/MQTTClient_internal/html/structClientStates__coll__graph.md5 b/docs/MQTTClient_internal/html/structClientStates__coll__graph.md5 index d96755c1..3d066aa9 100644 --- a/docs/MQTTClient_internal/html/structClientStates__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structClientStates__coll__graph.md5 @@ -1 +1 @@ -f41a506ed3ed7f7865d23255998c8218 \ No newline at end of file +dd27f6b9e13fd0bb3ac1b317f1a0a92e \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structClientStates__coll__graph.png b/docs/MQTTClient_internal/html/structClientStates__coll__graph.png index ce5cb627..408123f5 100644 Binary files a/docs/MQTTClient_internal/html/structClientStates__coll__graph.png and b/docs/MQTTClient_internal/html/structClientStates__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structClients.html b/docs/MQTTClient_internal/html/structClients.html index 9940d52b..6d068a7d 100644 --- a/docs/MQTTClient_internal/html/structClients.html +++ b/docs/MQTTClient_internal/html/structClients.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Clients Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for Clients:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -219,10 +219,10 @@ void * MQTTVersion  the version of MQTT being used, 3, 4 or 5
          - -int sessionExpiry - MQTT 5 session expiry.
        -  + +unsigned int sessionExpiry + MQTT 5 session expiry.
        char * httpProxy  HTTP proxy.
        @@ -240,9 +240,7 @@ char *  diff --git a/docs/MQTTClient_internal/html/structClients__coll__graph.md5 b/docs/MQTTClient_internal/html/structClients__coll__graph.md5 index f9003469..8199b57c 100644 --- a/docs/MQTTClient_internal/html/structClients__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structClients__coll__graph.md5 @@ -1 +1 @@ -e83eb740b429760ea8115689b65590f6 \ No newline at end of file +705c71caaf9c0357a03d686495e733bc \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structClients__coll__graph.png b/docs/MQTTClient_internal/html/structClients__coll__graph.png index d989a70d..a8a434f4 100644 Binary files a/docs/MQTTClient_internal/html/structClients__coll__graph.png and b/docs/MQTTClient_internal/html/structClients__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structConnack.html b/docs/MQTTClient_internal/html/structConnack.html index 7719e4bf..718fff2b 100644 --- a/docs/MQTTClient_internal/html/structConnack.html +++ b/docs/MQTTClient_internal/html/structConnack.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Connack Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for Connack:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -151,9 +151,7 @@ unsigned int  diff --git a/docs/MQTTClient_internal/html/structConnack__coll__graph.md5 b/docs/MQTTClient_internal/html/structConnack__coll__graph.md5 index efdb7d50..b213d3f4 100644 --- a/docs/MQTTClient_internal/html/structConnack__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structConnack__coll__graph.md5 @@ -1 +1 @@ -67ae1d033a15ea4983ac2fe0904fbc46 \ No newline at end of file +9825910820d36917d448e150269c0249 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structConnack__coll__graph.png b/docs/MQTTClient_internal/html/structConnack__coll__graph.png index 478139f3..42125a03 100644 Binary files a/docs/MQTTClient_internal/html/structConnack__coll__graph.png and b/docs/MQTTClient_internal/html/structConnack__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structConnect.html b/docs/MQTTClient_internal/html/structConnect.html index 425d0945..024973fa 100644 --- a/docs/MQTTClient_internal/html/structConnect.html +++ b/docs/MQTTClient_internal/html/structConnect.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Connect Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for Connect:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -163,9 +163,7 @@ unsigned char  diff --git a/docs/MQTTClient_internal/html/structList.html b/docs/MQTTClient_internal/html/structList.html index e1857560..7ef4a2c1 100644 --- a/docs/MQTTClient_internal/html/structList.html +++ b/docs/MQTTClient_internal/html/structList.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: List Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for List:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -114,9 +114,7 @@ size_t  diff --git a/docs/MQTTClient_internal/html/structListElementStruct.html b/docs/MQTTClient_internal/html/structListElementStruct.html index 03031d86..85101948 100644 --- a/docs/MQTTClient_internal/html/structListElementStruct.html +++ b/docs/MQTTClient_internal/html/structListElementStruct.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: ListElementStruct Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for ListElementStruct:
        -
        Collaboration graph
        - +
        Collaboration graph
        +
        [legend]
        @@ -105,9 +105,7 @@ void *  diff --git a/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.md5 b/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.md5 index f6a8c002..130700e2 100644 --- a/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.md5 @@ -1 +1 @@ -0184e6058272cfc6fb36470075597a22 \ No newline at end of file +702d41a6ac16cdcbb518b42edc6e0adb \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.png b/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.png index 40f8faa6..ab6fe802 100644 Binary files a/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.png and b/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structList__coll__graph.md5 b/docs/MQTTClient_internal/html/structList__coll__graph.md5 index 18a67afd..a7914c8f 100644 --- a/docs/MQTTClient_internal/html/structList__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structList__coll__graph.md5 @@ -1 +1 @@ -65591f24c03e06810bfca27a463dcd58 \ No newline at end of file +9e6f58d19c14d1182832916c03bbc8a3 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structList__coll__graph.png b/docs/MQTTClient_internal/html/structList__coll__graph.png index 50623dce..d41b804f 100644 Binary files a/docs/MQTTClient_internal/html/structList__coll__graph.png and b/docs/MQTTClient_internal/html/structList__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structLog__nameValue.html b/docs/MQTTClient_internal/html/structLog__nameValue.html index 861660f8..3fa21133 100644 --- a/docs/MQTTClient_internal/html/structLog__nameValue.html +++ b/docs/MQTTClient_internal/html/structLog__nameValue.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Log_nameValue Struct Reference @@ -30,10 +30,10 @@ - + @@ -84,9 +84,7 @@ const char * value diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html index 1201c1ef..d1f36666 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_SSLOptions Struct Reference @@ -30,10 +30,10 @@ - + @@ -323,9 +323,7 @@ unsigned int  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__command.html b/docs/MQTTClient_internal/html/structMQTTAsync__command.html index 4a1d0f80..01501cce 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__command.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__command.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_command Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,9 +71,9 @@ $(function() {
        Collaboration diagram for MQTTAsync_command:
        -
        Collaboration graph
        - - +
        Collaboration graph
        + + @@ -193,9 +193,7 @@ union {
        diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.map index 832f3502..67c9b6b0 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.md5 index 90ce602c..0c3f2d8b 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.md5 @@ -1 +1 @@ -981174a6deba9ee09db90074c8634bc2 \ No newline at end of file +87071ac125ced1effe7cb71faa38a698 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.png index 8a0cd6a2..811ae7f2 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__connectData.html b/docs/MQTTClient_internal/html/structMQTTAsync__connectData.html index 10c21d10..13e35f24 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__connectData.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__connectData.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_connectData Struct Reference @@ -30,10 +30,10 @@ - + @@ -102,7 +102,7 @@ Data Fields

        The connect options that can be updated before an automatic reconnect.

        Field Documentation

        -

        ◆ binarypwd

        +

        ◆ 

        @@ -175,9 +175,7 @@ Data Fields
        diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html index ef8f61e8..e323780f 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_connectOptions Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTAsync_connectOptions:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -220,7 +220,7 @@ const char * 
        -

        ◆ binarypwd

        +

        ◆ 

        @@ -547,9 +547,7 @@ const char *  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.md5 index d2902db3..6a04b882 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.md5 @@ -1 +1 @@ -a1981e5cfce1ae01c2b833e883487b21 \ No newline at end of file +e93735612b6ec77cbb48ac2d8b538b8c \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.png index 306368a2..8c1a7a21 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__createOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__createOptions.html index 1eff8d75..40182068 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__createOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__createOptions.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_createOptions Struct Reference @@ -30,10 +30,10 @@
        - + @@ -184,9 +184,7 @@ int persistQoS0 diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html index 9bac24e6..78c6a4e0 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_disconnectOptions Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTAsync_disconnectOptions:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -247,9 +247,7 @@ enum MQTTReasonCodes  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.md5 index 09f6db29..2160e324 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.md5 @@ -1 +1 @@ -8d0459e3ba021a3aaa7d915a7258e3af \ No newline at end of file +ecf3e272baea1bce741afd566ac477ce \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.png index c0141940..c1e817de 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__failureData.html b/docs/MQTTClient_internal/html/structMQTTAsync__failureData.html index 6c6debe3..62d695d6 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__failureData.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__failureData.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_failureData Struct Reference @@ -30,10 +30,10 @@
        - + @@ -114,9 +114,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html index 6db4ae4a..18e01232 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_failureData5 Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTAsync_failureData5:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -177,9 +177,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.md5 index ff91b9ea..ce619b5e 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.md5 @@ -1 +1 @@ -25bd9e8ec7c1103f30ca98bbd58953ef \ No newline at end of file +4347623546bd8d2ce30d511d4f6b5ecf \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.png index d1d5024e..5586ed34 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__init__options.html b/docs/MQTTClient_internal/html/structMQTTAsync__init__options.html index 30900fe3..15180a13 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__init__options.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__init__options.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_init_options Struct Reference @@ -30,10 +30,10 @@
        - + @@ -130,9 +130,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__message.html b/docs/MQTTClient_internal/html/structMQTTAsync__message.html index 0d7d947a..4f6385d8 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__message.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__message.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_message Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTAsync_message:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -240,9 +240,7 @@ void *  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.md5 index 812c7307..6e5a6384 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.md5 @@ -1 +1 @@ -d8d94807684a0d7df96ac3a6c9cd0a58 \ No newline at end of file +a878f9bd744a4ad3f08271ab97a2cf3a \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.png index 313fab98..527573f9 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__nameValue.html b/docs/MQTTClient_internal/html/structMQTTAsync__nameValue.html index 0ae56b6b..efc18545 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__nameValue.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__nameValue.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_nameValue Struct Reference @@ -30,10 +30,10 @@
        - + @@ -93,9 +93,7 @@ const char *  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html index bd79c519..63a8642f 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_queuedCommand Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,8 +71,8 @@ $(function() {
        Collaboration diagram for MQTTAsync_queuedCommand:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -87,9 +87,9 @@ Collaboration diagram for MQTTAsync_queuedCommand:
        - - - + + +
        [legend]
        @@ -117,9 +117,7 @@ char *  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.map index 696c52d3..2945ac16 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.map @@ -13,7 +13,7 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.md5 index 5e2fb5de..3b57e3e5 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.md5 @@ -1 +1 @@ -2c2be61f918ad2d087c07cd98b10078b \ No newline at end of file +e1788f1cb2b8e7b40d76709cee4ea92c \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.png index b73feb50..d29f946a 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions.html index d1ebbd9b..ae3b75fd 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions.html @@ -3,7 +3,7 @@ - +MQTT C Client Libraries Internals: MQTTAsync_responseOptions Struct Reference @@ -30,10 +30,10 @@
        key
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTAsync_responseOptions:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -272,9 +272,7 @@ int subscribeOptionsCount<
        diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.md5 index e9e870de..117f1fd2 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.md5 @@ -1 +1 @@ -5e7120b646a40caa333bf562957e7954 \ No newline at end of file +198257cc67ad363da581d54bf8967931 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.png index fc196293..56c94c2c 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__struct.html b/docs/MQTTClient_internal/html/structMQTTAsync__struct.html index f4b3ec6e..fd5cf644 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__struct.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__struct.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_struct Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,10 +71,10 @@ $(function() {
        Collaboration diagram for MQTTAsync_struct:
        -
        Collaboration graph
        - - - +
        Collaboration graph
        + + + @@ -215,9 +215,7 @@ int reconnectNow<
        diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.map index 31bbdc48..269c0213 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.map @@ -1,6 +1,6 @@ - - + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.md5 index 7922d8b6..32329c1d 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.md5 @@ -1 +1 @@ -e3b524f310285fbbde8030059c9279dc \ No newline at end of file +f2eefb9bcc8fbd29b39397175654f5ff \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.png index dac3ef0f..8a7a6e6b 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData.html b/docs/MQTTClient_internal/html/structMQTTAsync__successData.html index 5e7d005d..acd1295b 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__successData.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__successData.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_successData Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTAsync_successData:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -176,9 +176,7 @@ union {
        diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html b/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html index 407d067a..eb893005 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_successData5 Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTAsync_successData5:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -226,9 +226,7 @@ union {
        diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.md5 index 763e8f9a..77378c2e 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.md5 @@ -1 +1 @@ -7c741247ae2aa8798699a45c26dd4476 \ No newline at end of file +48bf140aa6ec479afe2a4634f0630e61 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.png index 93881805..f8da24c3 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.md5 index fbbf0b22..a14aa66b 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.md5 @@ -1 +1 @@ -e0c371b9912a50eda1080d60af29b2a2 \ No newline at end of file +b375a3b29bea51e5cb57f920a05d00e1 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.png index 2c862529..c2b39025 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__willOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__willOptions.html index b12c6976..d52cb2f1 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__willOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__willOptions.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTAsync_willOptions Struct Reference @@ -30,10 +30,10 @@ - + @@ -116,7 +116,7 @@ int MQTTAsync_willOptions structure is passed in the MQTTAsync_connectOptions structure used in the MQTTAsync_connect() call that connects the client to the server. The pointer to MQTTAsync_willOptions can be set to NULL if the LWT function is not required.

        Field Documentation

        -

        ◆ payload

        +

        ◆ 

        @@ -172,9 +172,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html index ca56f5b4..3d2b3f3e 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClient_SSLOptions Struct Reference @@ -30,10 +30,10 @@
        - + @@ -323,9 +323,7 @@ unsigned int  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html index 73868071..b06f2cc7 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClient_connectOptions Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTClient_connectOptions:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -190,7 +190,7 @@ const char * 

        Field Documentation

        -

        ◆ binarypwd

        +

        ◆ 

        @@ -435,9 +435,7 @@ const char *  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__createOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__createOptions.html index 16437d5c..53acc0ad 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__createOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__createOptions.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClient_createOptions Struct Reference @@ -30,10 +30,10 @@
        - + @@ -147,9 +147,7 @@ Data Fields
        diff --git a/docs/MQTTClient_internal/html/structMQTTClient__init__options.html b/docs/MQTTClient_internal/html/structMQTTClient__init__options.html index 9e6ff641..d58f0d43 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__init__options.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__init__options.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClient_init_options Struct Reference @@ -30,10 +30,10 @@ - + @@ -130,9 +130,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__message.html b/docs/MQTTClient_internal/html/structMQTTClient__message.html index c7504c0d..202b46f5 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__message.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__message.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClient_message Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTClient_message:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -224,9 +224,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.md5 index 5618fbaf..60de3950 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.md5 @@ -1 +1 @@ -ed1c6430ea1190a5b2af407468fab9a5 \ No newline at end of file +881d6e5955a5af7ef0b42c0408c52617 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.png index 4b551c64..88a6cff2 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTClient__nameValue.html b/docs/MQTTClient_internal/html/structMQTTClient__nameValue.html index 6a098295..4bda16c7 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__nameValue.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__nameValue.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClient_nameValue Struct Reference @@ -30,10 +30,10 @@
        - + @@ -92,9 +92,7 @@ const char * value diff --git a/docs/MQTTClient_internal/html/structMQTTClient__persistence.html b/docs/MQTTClient_internal/html/structMQTTClient__persistence.html index dfb45b5c..9fcf4db8 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__persistence.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__persistence.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClient_persistence Struct Reference @@ -30,10 +30,10 @@ - + @@ -121,9 +121,7 @@ void *  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html index 0498ca8c..8c696354 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClient_willOptions Struct Reference @@ -30,10 +30,10 @@ - + @@ -116,7 +116,7 @@ int MQTTClient_willOptions structure is passed in the MQTTClient_connectOptions structure used in the MQTTClient_connect() call that connects the client to the server. The pointer to MQTTClient_willOptions can be set to NULL if the LWT function is not required.

        Field Documentation

        -

        ◆ payload

        +

        ◆ 

        @@ -172,9 +172,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTClients.html b/docs/MQTTClient_internal/html/structMQTTClients.html index 064b8e1e..57baa77c 100644 --- a/docs/MQTTClient_internal/html/structMQTTClients.html +++ b/docs/MQTTClient_internal/html/structMQTTClients.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTClients Struct Reference @@ -30,10 +30,10 @@
        - + @@ -71,8 +71,8 @@ $(function() {
        Collaboration diagram for MQTTClients:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -152,9 +152,7 @@ unsigned long commandTimeo
        diff --git a/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.md5 index f01c5457..5d1a50ac 100644 --- a/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.md5 @@ -1 +1 @@ -7cea3311ad17af09d14394cbef104473 \ No newline at end of file +d2ba1fcada93479e0cfb81d6e897be68 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.png index 4489e69b..5961ef37 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTLenString.html b/docs/MQTTClient_internal/html/structMQTTLenString.html index 3f4cefe5..820caef5 100644 --- a/docs/MQTTClient_internal/html/structMQTTLenString.html +++ b/docs/MQTTClient_internal/html/structMQTTLenString.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTLenString Struct Reference @@ -30,10 +30,10 @@
        - + @@ -93,9 +93,7 @@ char *  diff --git a/docs/MQTTClient_internal/html/structMQTTPacket.html b/docs/MQTTClient_internal/html/structMQTTPacket.html index 568b0afc..72ee403f 100644 --- a/docs/MQTTClient_internal/html/structMQTTPacket.html +++ b/docs/MQTTClient_internal/html/structMQTTPacket.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTPacket Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTPacket:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -98,9 +98,7 @@ Data Fields
        diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__message.html b/docs/MQTTClient_internal/html/structMQTTPersistence__message.html index c08f4beb..41016cfa 100644 --- a/docs/MQTTClient_internal/html/structMQTTPersistence__message.html +++ b/docs/MQTTClient_internal/html/structMQTTPersistence__message.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTPersistence_message Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,8 +71,8 @@ $(function() {
        Collaboration diagram for MQTTPersistence_message:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -116,9 +116,7 @@ int msgid
        diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.md5 index 8bf97406..16255a49 100644 --- a/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.md5 @@ -1 +1 @@ -87149ebcb22ae2ae4bc0f8ee9848b51b \ No newline at end of file +5781ab3dd079b578cfbdc19bef4a2dd1 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.png index be72c681..5914c81f 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry.html b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry.html index 54a74e6e..0c3ed12b 100644 --- a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry.html +++ b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTPersistence_qEntry Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,8 +71,8 @@ $(function() {
        Collaboration diagram for MQTTPersistence_qEntry:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -102,9 +102,7 @@ unsigned int seqno diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.md5 index eabe6100..cc598b80 100644 --- a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.md5 @@ -1 +1 @@ -d6ba16155041fc5c6a6a516d073dccff \ No newline at end of file +6f8ff555da30aba887567d763ca79d36 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.png index 1128aafc..5d0f7cbd 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTProperties.html b/docs/MQTTClient_internal/html/structMQTTProperties.html index eb792be1..93f8c654 100644 --- a/docs/MQTTClient_internal/html/structMQTTProperties.html +++ b/docs/MQTTClient_internal/html/structMQTTProperties.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTProperties Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTProperties:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -111,9 +111,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.md5 index f2910d51..79395880 100644 --- a/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.md5 @@ -1 +1 @@ -c0039f55fd24d2918198a690006e0702 \ No newline at end of file +f1c74731d0a38fbc345465f284e95c3b \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.png index 71cfbd9e..8fcd8327 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTProperty.html b/docs/MQTTClient_internal/html/structMQTTProperty.html index e664794b..84f0495d 100644 --- a/docs/MQTTClient_internal/html/structMQTTProperty.html +++ b/docs/MQTTClient_internal/html/structMQTTProperty.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTProperty Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTProperty:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -144,9 +144,7 @@ union {
        diff --git a/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.md5 index 98ee022a..991971e9 100644 --- a/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.md5 @@ -1 +1 @@ -57b5bfa34e54c9db09b8babc9d397691 \ No newline at end of file +630713446e25d41582d5fdb978f05af2 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.png index de2e88db..a40cbcf7 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTProtocol.html b/docs/MQTTClient_internal/html/structMQTTProtocol.html index 4767dcea..288c29f6 100644 --- a/docs/MQTTClient_internal/html/structMQTTProtocol.html +++ b/docs/MQTTClient_internal/html/structMQTTProtocol.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTProtocol Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,8 +71,8 @@ $(function() {
        Collaboration diagram for MQTTProtocol:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -100,9 +100,7 @@ unsigned int msgs_sent
        diff --git a/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.md5 index 5cbe3eb1..0213f3ff 100644 --- a/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.md5 @@ -1 +1 @@ -9775c31cd0d657a82571df2172da3f6e \ No newline at end of file +77b6754347e83556b907c9d07d9a5b2f \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.png index c5ec871c..3669faee 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTResponse.html b/docs/MQTTClient_internal/html/structMQTTResponse.html index 09f0b133..693eb347 100644 --- a/docs/MQTTClient_internal/html/structMQTTResponse.html +++ b/docs/MQTTClient_internal/html/structMQTTResponse.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTResponse Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for MQTTResponse:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -111,9 +111,7 @@ enum MQTTReasonCodes * rea
        diff --git a/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.md5 b/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.md5 index 12956204..e95db8fe 100644 --- a/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.md5 @@ -1 +1 @@ -660b87d0c34f588e5b181a8928684744 \ No newline at end of file +0c8a6b1cc480c5ecf9b7c78cc33dceea \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.png index 276aa119..2958ed98 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTSubscribe__options.html b/docs/MQTTClient_internal/html/structMQTTSubscribe__options.html index 772a53dd..cf6649f0 100644 --- a/docs/MQTTClient_internal/html/structMQTTSubscribe__options.html +++ b/docs/MQTTClient_internal/html/structMQTTSubscribe__options.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: MQTTSubscribe_options Struct Reference @@ -30,10 +30,10 @@ - + @@ -170,9 +170,7 @@ unsigned char  diff --git a/docs/MQTTClient_internal/html/structMessages.html b/docs/MQTTClient_internal/html/structMessages.html index 93a1ba2c..850c6b83 100644 --- a/docs/MQTTClient_internal/html/structMessages.html +++ b/docs/MQTTClient_internal/html/structMessages.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Messages Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for Messages:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -132,9 +132,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMessages__coll__graph.md5 b/docs/MQTTClient_internal/html/structMessages__coll__graph.md5 index 68929853..9a0eb81e 100644 --- a/docs/MQTTClient_internal/html/structMessages__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structMessages__coll__graph.md5 @@ -1 +1 @@ -373bd7505098a1f36f29b07a71307a50 \ No newline at end of file +cfbb2b0530a6141b82aeadf833313580 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structMessages__coll__graph.png b/docs/MQTTClient_internal/html/structMessages__coll__graph.png index 73e8aa3f..b5850c6a 100644 Binary files a/docs/MQTTClient_internal/html/structMessages__coll__graph.png and b/docs/MQTTClient_internal/html/structMessages__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structNodeStruct.html b/docs/MQTTClient_internal/html/structNodeStruct.html index a26cf558..b69819cf 100644 --- a/docs/MQTTClient_internal/html/structNodeStruct.html +++ b/docs/MQTTClient_internal/html/structNodeStruct.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: NodeStruct Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for NodeStruct:
        -
        Collaboration graph
        - +
        Collaboration graph
        +
        [legend]
        @@ -112,9 +112,7 @@ unsigned int red: 1 diff --git a/docs/MQTTClient_internal/html/structPacketBuffers.html b/docs/MQTTClient_internal/html/structPacketBuffers.html index 0631796c..fbfa93e3 100644 --- a/docs/MQTTClient_internal/html/structPacketBuffers.html +++ b/docs/MQTTClient_internal/html/structPacketBuffers.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: PacketBuffers Struct Reference @@ -30,10 +30,10 @@ - + @@ -109,9 +109,7 @@ uint8_t  diff --git a/docs/MQTTClient_internal/html/structPublications.html b/docs/MQTTClient_internal/html/structPublications.html index de899334..309be144 100644 --- a/docs/MQTTClient_internal/html/structPublications.html +++ b/docs/MQTTClient_internal/html/structPublications.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Publications Struct Reference @@ -30,10 +30,10 @@ - + @@ -103,9 +103,7 @@ uint8_t mask [4]< diff --git a/docs/MQTTClient_internal/html/structPublish.html b/docs/MQTTClient_internal/html/structPublish.html index 75039120..d15ec72d 100644 --- a/docs/MQTTClient_internal/html/structPublish.html +++ b/docs/MQTTClient_internal/html/structPublish.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Publish Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for Publish:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -149,9 +149,7 @@ uint8_t  diff --git a/docs/MQTTClient_internal/html/structPublish__coll__graph.md5 b/docs/MQTTClient_internal/html/structPublish__coll__graph.md5 index 7716329c..947d77ac 100644 --- a/docs/MQTTClient_internal/html/structPublish__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structPublish__coll__graph.md5 @@ -1 +1 @@ -a125c7bb24c9000b67283f83952926b4 \ No newline at end of file +5324f9cad6c9e3fee60d90b3d138256f \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structPublish__coll__graph.png b/docs/MQTTClient_internal/html/structPublish__coll__graph.png index 82a51a45..085c4b69 100644 Binary files a/docs/MQTTClient_internal/html/structPublish__coll__graph.png and b/docs/MQTTClient_internal/html/structPublish__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structSHA__CTX__S.html b/docs/MQTTClient_internal/html/structSHA__CTX__S.html index d250e839..8b7e0a2d 100644 --- a/docs/MQTTClient_internal/html/structSHA__CTX__S.html +++ b/docs/MQTTClient_internal/html/structSHA__CTX__S.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: SHA_CTX_S Struct Reference @@ -30,10 +30,10 @@
        - + @@ -97,9 +97,7 @@ unsigned int total diff --git a/docs/MQTTClient_internal/html/structSockets.html b/docs/MQTTClient_internal/html/structSockets.html index 0834b2b1..1a4ffc94 100644 --- a/docs/MQTTClient_internal/html/structSockets.html +++ b/docs/MQTTClient_internal/html/structSockets.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Sockets Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for Sockets:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -149,9 +149,7 @@ struct {
        diff --git a/docs/MQTTClient_internal/html/structSockets__coll__graph.md5 b/docs/MQTTClient_internal/html/structSockets__coll__graph.md5 index 0e08cc48..17d7a477 100644 --- a/docs/MQTTClient_internal/html/structSockets__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structSockets__coll__graph.md5 @@ -1 +1 @@ -65268525d45335ec12a607a0e4f8699b \ No newline at end of file +3d3003be5dcee7d590ed1672f9e8587e \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structSockets__coll__graph.png b/docs/MQTTClient_internal/html/structSockets__coll__graph.png index 7271abe3..21f002c3 100644 Binary files a/docs/MQTTClient_internal/html/structSockets__coll__graph.png and b/docs/MQTTClient_internal/html/structSockets__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structSuback.html b/docs/MQTTClient_internal/html/structSuback.html index 553f13fd..d794aa22 100644 --- a/docs/MQTTClient_internal/html/structSuback.html +++ b/docs/MQTTClient_internal/html/structSuback.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Suback Struct Reference @@ -30,10 +30,10 @@ - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for Suback:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -136,9 +136,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structSuback__coll__graph.md5 b/docs/MQTTClient_internal/html/structSuback__coll__graph.md5 index e519b002..dfddcb48 100644 --- a/docs/MQTTClient_internal/html/structSuback__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structSuback__coll__graph.md5 @@ -1 +1 @@ -1ed33e72c4c1e3d93ca82bd624e59c72 \ No newline at end of file +20d7ebd5b2d371a4a7d740f7c19d0d45 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structSuback__coll__graph.png b/docs/MQTTClient_internal/html/structSuback__coll__graph.png index 94a4a761..3bf86c61 100644 Binary files a/docs/MQTTClient_internal/html/structSuback__coll__graph.png and b/docs/MQTTClient_internal/html/structSuback__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structTree.html b/docs/MQTTClient_internal/html/structTree.html index 45d034a3..6a070a64 100644 --- a/docs/MQTTClient_internal/html/structTree.html +++ b/docs/MQTTClient_internal/html/structTree.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Tree Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for Tree:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -126,9 +126,7 @@ unsigned int  diff --git a/docs/MQTTClient_internal/html/structUnsuback.html b/docs/MQTTClient_internal/html/structUnsuback.html index cf224e49..96de3205 100644 --- a/docs/MQTTClient_internal/html/structUnsuback.html +++ b/docs/MQTTClient_internal/html/structUnsuback.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Unsuback Struct Reference @@ -30,10 +30,10 @@
        - + @@ -76,8 +76,8 @@ $(function() {
        Collaboration diagram for Unsuback:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -136,9 +136,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structUnsuback__coll__graph.md5 b/docs/MQTTClient_internal/html/structUnsuback__coll__graph.md5 index 493217ac..abdf1184 100644 --- a/docs/MQTTClient_internal/html/structUnsuback__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structUnsuback__coll__graph.md5 @@ -1 +1 @@ -cef65174d7094cd8a0ef630451108933 \ No newline at end of file +17345746960fdc9ba145f9bc1d30c38a \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structUnsuback__coll__graph.png b/docs/MQTTClient_internal/html/structUnsuback__coll__graph.png index db3eb556..9293827e 100644 Binary files a/docs/MQTTClient_internal/html/structUnsuback__coll__graph.png and b/docs/MQTTClient_internal/html/structUnsuback__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structcond__type__struct.html b/docs/MQTTClient_internal/html/structcond__type__struct.html index 97e17201..33a7e286 100644 --- a/docs/MQTTClient_internal/html/structcond__type__struct.html +++ b/docs/MQTTClient_internal/html/structcond__type__struct.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: cond_type_struct Struct Reference @@ -30,10 +30,10 @@
        - + @@ -84,9 +84,7 @@ pthread_mutex_t mutex< diff --git a/docs/MQTTClient_internal/html/structconlost__sync__data.html b/docs/MQTTClient_internal/html/structconlost__sync__data.html new file mode 100644 index 00000000..a6b6a321 --- /dev/null +++ b/docs/MQTTClient_internal/html/structconlost__sync__data.html @@ -0,0 +1,90 @@ + + + + + + + +MQTT C Client Libraries Internals: conlost_sync_data Struct Reference + + + + + + + + + +
        +
        + + + + + + + +
        +
        MQTT C Client Libraries Internals +
        +
        +
        + + + + + + + + +
        +
        + + +
        + +
        + +
        +
        + +
        +
        conlost_sync_data Struct Reference
        +
        +
        + + + + + + +

        +Data Fields

        +sem_type sem
         
        +void * m
         
        +
        The documentation for this struct was generated from the following file: +
        + + + + diff --git a/docs/MQTTClient_internal/html/structframeData.html b/docs/MQTTClient_internal/html/structframeData.html index af6f8f0f..1978b516 100644 --- a/docs/MQTTClient_internal/html/structframeData.html +++ b/docs/MQTTClient_internal/html/structframeData.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: frameData Struct Reference @@ -30,10 +30,10 @@ - + @@ -105,9 +105,7 @@ size_t wsbuf0len< diff --git a/docs/MQTTClient_internal/html/structheap__info.html b/docs/MQTTClient_internal/html/structheap__info.html index 043e998d..1a592b3e 100644 --- a/docs/MQTTClient_internal/html/structheap__info.html +++ b/docs/MQTTClient_internal/html/structheap__info.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: heap_info Struct Reference @@ -30,10 +30,10 @@ - + @@ -93,9 +93,7 @@ size_t  diff --git a/docs/MQTTClient_internal/html/structnameToType.html b/docs/MQTTClient_internal/html/structnameToType.html index 7bd46c73..24bc6105 100644 --- a/docs/MQTTClient_internal/html/structnameToType.html +++ b/docs/MQTTClient_internal/html/structnameToType.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: nameToType Struct Reference @@ -30,10 +30,10 @@ - + @@ -84,9 +84,7 @@ enum MQTTPropertyTypes typ diff --git a/docs/MQTTClient_internal/html/structnetworkHandles.html b/docs/MQTTClient_internal/html/structnetworkHandles.html index be98a3f8..100018e0 100644 --- a/docs/MQTTClient_internal/html/structnetworkHandles.html +++ b/docs/MQTTClient_internal/html/structnetworkHandles.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: networkHandles Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,8 +71,8 @@ $(function() {
        Collaboration diagram for networkHandles:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -115,9 +115,7 @@ const MQTTClient_nameValue
        diff --git a/docs/MQTTClient_internal/html/structpending__write.html b/docs/MQTTClient_internal/html/structpending__write.html index d750b960..d6539344 100644 --- a/docs/MQTTClient_internal/html/structpending__write.html +++ b/docs/MQTTClient_internal/html/structpending__write.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: pending_write Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,8 +71,8 @@ $(function() {
        Collaboration diagram for pending_write:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -93,9 +93,7 @@ SOCKET socket diff --git a/docs/MQTTClient_internal/html/structpending__writes.html b/docs/MQTTClient_internal/html/structpending__writes.html index 719a82c6..514751fd 100644 --- a/docs/MQTTClient_internal/html/structpending__writes.html +++ b/docs/MQTTClient_internal/html/structpending__writes.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: pending_writes Struct Reference @@ -30,10 +30,10 @@
        - + @@ -96,9 +96,7 @@ int frees [5] diff --git a/docs/MQTTClient_internal/html/structprops__rc__parms.html b/docs/MQTTClient_internal/html/structprops__rc__parms.html index 33d4d8be..800246fc 100644 --- a/docs/MQTTClient_internal/html/structprops__rc__parms.html +++ b/docs/MQTTClient_internal/html/structprops__rc__parms.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: props_rc_parms Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,8 +71,8 @@ $(function() {
        Collaboration diagram for props_rc_parms:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -108,9 +108,7 @@ enum MQTTReasonCodes reaso
        diff --git a/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.md5 b/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.md5 index ca7ab9d5..d719ee18 100644 --- a/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.md5 @@ -1 +1 @@ -ceb7e4e5a7d9771cc209d4b6b144b8b8 \ No newline at end of file +9ac5505ca0612518992813ed408582c0 \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.png b/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.png index 8cbbf592..483a5d0b 100644 Binary files a/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.png and b/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structqEntry.html b/docs/MQTTClient_internal/html/structqEntry.html index 5c2e244d..c483acf9 100644 --- a/docs/MQTTClient_internal/html/structqEntry.html +++ b/docs/MQTTClient_internal/html/structqEntry.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: qEntry Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,8 +71,8 @@ $(function() {
        Collaboration diagram for qEntry:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -107,9 +107,7 @@ unsigned int seqno diff --git a/docs/MQTTClient_internal/html/structqEntry__coll__graph.md5 b/docs/MQTTClient_internal/html/structqEntry__coll__graph.md5 index f9530891..60ea0201 100644 --- a/docs/MQTTClient_internal/html/structqEntry__coll__graph.md5 +++ b/docs/MQTTClient_internal/html/structqEntry__coll__graph.md5 @@ -1 +1 @@ -82628213d62be0f56191fc63296e0317 \ No newline at end of file +2249ebd753b65f326ac5ba42fd660e1f \ No newline at end of file diff --git a/docs/MQTTClient_internal/html/structqEntry__coll__graph.png b/docs/MQTTClient_internal/html/structqEntry__coll__graph.png index 14a21df6..b4d736f3 100644 Binary files a/docs/MQTTClient_internal/html/structqEntry__coll__graph.png and b/docs/MQTTClient_internal/html/structqEntry__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structsocket__queue.html b/docs/MQTTClient_internal/html/structsocket__queue.html index 31f2d798..bd1878be 100644 --- a/docs/MQTTClient_internal/html/structsocket__queue.html +++ b/docs/MQTTClient_internal/html/structsocket__queue.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: socket_queue Struct Reference @@ -30,10 +30,10 @@
        - + @@ -102,9 +102,7 @@ char * buf diff --git a/docs/MQTTClient_internal/html/structstackEntry.html b/docs/MQTTClient_internal/html/structstackEntry.html index 2d38c7db..cd542aaf 100644 --- a/docs/MQTTClient_internal/html/structstackEntry.html +++ b/docs/MQTTClient_internal/html/structstackEntry.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: stackEntry Struct Reference @@ -30,10 +30,10 @@ - + @@ -87,9 +87,7 @@ int line diff --git a/docs/MQTTClient_internal/html/structstorageElement.html b/docs/MQTTClient_internal/html/structstorageElement.html index d25a7f3a..ffb7876a 100644 --- a/docs/MQTTClient_internal/html/structstorageElement.html +++ b/docs/MQTTClient_internal/html/structstorageElement.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: storageElement Struct Reference @@ -30,10 +30,10 @@ - + @@ -99,9 +99,7 @@ size_t  diff --git a/docs/MQTTClient_internal/html/structthreadEntry.html b/docs/MQTTClient_internal/html/structthreadEntry.html index a2bfecd1..d47befe4 100644 --- a/docs/MQTTClient_internal/html/structthreadEntry.html +++ b/docs/MQTTClient_internal/html/structthreadEntry.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: threadEntry Struct Reference @@ -30,10 +30,10 @@ - + @@ -71,8 +71,8 @@ $(function() {
        Collaboration diagram for threadEntry:
        -
        Collaboration graph
        - +
        Collaboration graph
        + @@ -99,9 +99,7 @@ int current_depth
        diff --git a/docs/MQTTClient_internal/html/structtraceEntry.html b/docs/MQTTClient_internal/html/structtraceEntry.html index 35ac5e3a..331f2f54 100644 --- a/docs/MQTTClient_internal/html/structtraceEntry.html +++ b/docs/MQTTClient_internal/html/structtraceEntry.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: traceEntry Struct Reference @@ -30,10 +30,10 @@ - + @@ -108,9 +108,7 @@ enum LOG_LEVELS level< diff --git a/docs/MQTTClient_internal/html/structtrace__settings__type.html b/docs/MQTTClient_internal/html/structtrace__settings__type.html index 09418f13..f1fbdd8c 100644 --- a/docs/MQTTClient_internal/html/structtrace__settings__type.html +++ b/docs/MQTTClient_internal/html/structtrace__settings__type.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: trace_settings_type Struct Reference @@ -30,10 +30,10 @@ - + @@ -90,9 +90,7 @@ enum LOG_LEVELS  diff --git a/docs/MQTTClient_internal/html/structwillMessages.html b/docs/MQTTClient_internal/html/structwillMessages.html index 7d86dc22..1983e0ff 100644 --- a/docs/MQTTClient_internal/html/structwillMessages.html +++ b/docs/MQTTClient_internal/html/structwillMessages.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: willMessages Struct Reference @@ -30,10 +30,10 @@ - + @@ -100,9 +100,7 @@ int qos diff --git a/docs/MQTTClient_internal/html/structws__frame.html b/docs/MQTTClient_internal/html/structws__frame.html index 811a8673..536881b0 100644 --- a/docs/MQTTClient_internal/html/structws__frame.html +++ b/docs/MQTTClient_internal/html/structws__frame.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: ws_frame Struct Reference @@ -30,10 +30,10 @@ - + @@ -91,9 +91,7 @@ size_t  diff --git a/docs/MQTTClient_internal/html/unionHeader.html b/docs/MQTTClient_internal/html/unionHeader.html index a14e2aad..b74415e2 100644 --- a/docs/MQTTClient_internal/html/unionHeader.html +++ b/docs/MQTTClient_internal/html/unionHeader.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: Header Union Reference @@ -30,10 +30,10 @@ - + @@ -109,9 +109,7 @@ struct { diff --git a/docs/MQTTClient_internal/html/utf-8_8c.html b/docs/MQTTClient_internal/html/utf-8_8c.html index c87dc044..c94fa0db 100644 --- a/docs/MQTTClient_internal/html/utf-8_8c.html +++ b/docs/MQTTClient_internal/html/utf-8_8c.html @@ -3,7 +3,7 @@ - + MQTT C Client Libraries Internals: utf-8.c File Reference @@ -30,10 +30,10 @@ - + @@ -80,8 +80,8 @@ $(function() {
        Include dependency graph for utf-8.c:
        -
        - +
        + @@ -219,8 +219,8 @@ Variables
        Here is the call graph for this function:
        -
        - +
        + @@ -255,8 +255,8 @@ Here is the call graph for this function:
        Here is the call graph for this function:
        -
        - +
        + @@ -267,7 +267,7 @@ Here is the call graph for this function:

        Variable Documentation

        -

        ◆ valid_ranges

        +

        ◆ 

        @@ -297,9 +297,7 @@ Here is the call graph for this function:
        diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4c064090..0f795b9a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,5 +1,5 @@ #******************************************************************************* -# Copyright (c) 2015, 2020 logi.cals GmbH and others +# Copyright (c) 2015, 2023 logi.cals GmbH and others # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v2.0 @@ -68,6 +68,9 @@ ELSEIF (UNIX) IF(LIB_ANL) SET(LIBS_SYSTEM "${LIBS_SYSTEM}" anl) ENDIF() + IF(PAHO_WITH_LIBUUID) + SET(LIBS_SYSTEM "${LIBS_SYSTEM}" uuid) + ENDIF() ADD_DEFINITIONS(-D_GNU_SOURCE -fvisibility=hidden) ELSEIF (CMAKE_SYSTEM_NAME MATCHES "Android") SET(LIBS_SYSTEM c dl) diff --git a/src/Clients.h b/src/Clients.h index 130a9622..67489582 100644 --- a/src/Clients.h +++ b/src/Clients.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp. and Ian Craggs + * Copyright (c) 2009, 2023 IBM Corp. and Ian Craggs * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -150,7 +150,7 @@ typedef struct void* afterRead_context; /**< context to be used with the persistence afterRead callback */ void* context; /**< calling context - used when calling disconnect_internal */ int MQTTVersion; /**< the version of MQTT being used, 3, 4 or 5 */ - int sessionExpiry; /**< MQTT 5 session expiry */ + unsigned int sessionExpiry; /**< MQTT 5 session expiry */ char* httpProxy; /**< HTTP proxy */ char* httpsProxy; /**< HTTPS proxy */ #if defined(OPENSSL) diff --git a/src/Heap.c b/src/Heap.c index 3255acb0..13543ddd 100644 --- a/src/Heap.c +++ b/src/Heap.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2020 IBM Corp. + * Copyright (c) 2009, 2023 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -164,7 +164,7 @@ void* mymalloc(char* file, int line, size_t size) size_t filenamelen = strlen(file)+1; void* rc = NULL; - Thread_lock_mutex(heap_mutex); + Paho_thread_lock_mutex(heap_mutex); size = Heap_roundup(size); if ((s = malloc(sizeof(storageElement))) == NULL) { @@ -194,7 +194,7 @@ void* mymalloc(char* file, int line, size_t size) goto exit; } memset(s->stack, 0, sizeof(filenamelen)); - StackTrace_get(Thread_getid(), s->stack, STACK_LEN); + StackTrace_get(Paho_thread_getid(), s->stack, STACK_LEN); #endif s->line = line; /* Add space for eyecatcher at each end */ @@ -216,7 +216,7 @@ void* mymalloc(char* file, int line, size_t size) state.max_size = state.current_size; rc = ((eyecatcherType*)(s->ptr)) + 1; /* skip start eyecatcher */ exit: - Thread_unlock_mutex(heap_mutex); + Paho_thread_unlock_mutex(heap_mutex); return rc; } @@ -280,10 +280,10 @@ void myfree(char* file, int line, void* p) { if (p) /* it is legal und usual to call free(NULL) */ { - Thread_lock_mutex(heap_mutex); + Paho_thread_lock_mutex(heap_mutex); if (Internal_heap_unlink(file, line, p)) free(((eyecatcherType*)p)-1); - Thread_unlock_mutex(heap_mutex); + Paho_thread_unlock_mutex(heap_mutex); } else { @@ -301,9 +301,9 @@ void myfree(char* file, int line, void* p) */ void Heap_unlink(char* file, int line, void* p) { - Thread_lock_mutex(heap_mutex); + Paho_thread_lock_mutex(heap_mutex); Internal_heap_unlink(file, line, p); - Thread_unlock_mutex(heap_mutex); + Paho_thread_unlock_mutex(heap_mutex); } @@ -324,7 +324,7 @@ void *myrealloc(char* file, int line, void* p, size_t size) void* rc = NULL; storageElement* s = NULL; - Thread_lock_mutex(heap_mutex); + Paho_thread_lock_mutex(heap_mutex); s = TreeRemoveKey(&heap, ((eyecatcherType*)p)-1); if (s == NULL) Log(LOG_ERROR, 13, "Failed to reallocate heap item at file %s line %d", file, line); @@ -356,7 +356,7 @@ void *myrealloc(char* file, int line, void* p, size_t size) TreeAdd(&heap, s, space); } exit: - Thread_unlock_mutex(heap_mutex); + Paho_thread_unlock_mutex(heap_mutex); return (rc == NULL) ? NULL : ((eyecatcherType*)(rc)) + 1; /* skip start eyecatcher */ } @@ -371,9 +371,9 @@ void* Heap_findItem(void* p) { Node* e = NULL; - Thread_lock_mutex(heap_mutex); + Paho_thread_lock_mutex(heap_mutex); e = TreeFind(&heap, ((eyecatcherType*)p)-1); - Thread_unlock_mutex(heap_mutex); + Paho_thread_unlock_mutex(heap_mutex); return (e == NULL) ? NULL : e->content; } @@ -386,7 +386,7 @@ static void HeapScan(enum LOG_LEVELS log_level) { Node* current = NULL; - Thread_lock_mutex(heap_mutex); + Paho_thread_lock_mutex(heap_mutex); Log(log_level, -1, "Heap scan start, total %d bytes", (int)state.current_size); while ((current = TreeNextElement(&heap, current)) != NULL) { @@ -398,7 +398,7 @@ static void HeapScan(enum LOG_LEVELS log_level) #endif } Log(log_level, -1, "Heap scan end"); - Thread_unlock_mutex(heap_mutex); + Paho_thread_unlock_mutex(heap_mutex); } diff --git a/src/Log.c b/src/Log.c index 92054db0..d77c91f2 100644 --- a/src/Log.c +++ b/src/Log.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp. + * Copyright (c) 2009, 2023 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -430,7 +430,7 @@ void Log(enum LOG_LEVELS log_level, int msgno, const char *format, ...) va_list args; /* we're using a static character buffer, so we need to make sure only one thread uses it at a time */ - Thread_lock_mutex(log_mutex); + Paho_thread_lock_mutex(log_mutex); if (format == NULL && (temp = Messages_get(msgno, log_level)) != NULL) format = temp; @@ -439,7 +439,7 @@ void Log(enum LOG_LEVELS log_level, int msgno, const char *format, ...) Log_trace(log_level, msg_buf); va_end(args); - Thread_unlock_mutex(log_mutex); + Paho_thread_unlock_mutex(log_mutex); } } @@ -463,7 +463,7 @@ void Log_stackTrace(enum LOG_LEVELS log_level, int msgno, thread_id_type thread_ if (log_level < trace_settings.trace_level) return; - Thread_lock_mutex(log_mutex); + Paho_thread_lock_mutex(log_mutex); cur_entry = Log_pretrace(); memcpy(&(cur_entry->ts), &now_ts, sizeof(now_ts)); @@ -483,7 +483,7 @@ void Log_stackTrace(enum LOG_LEVELS log_level, int msgno, thread_id_type thread_ } Log_posttrace(log_level, cur_entry); - Thread_unlock_mutex(log_mutex); + Paho_thread_unlock_mutex(log_mutex); } diff --git a/src/MQTTAsync.c b/src/MQTTAsync.c index 11d8723f..c6a11f6d 100644 --- a/src/MQTTAsync.c +++ b/src/MQTTAsync.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp., Ian Craggs and others + * Copyright (c) 2009, 2023 IBM Corp., Ian Craggs and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -648,7 +648,7 @@ int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions* options) m->connectTimeout = options->connectTimeout; /* don't lock async mutex if we are being called from a callback */ - thread_id = Thread_getid(); + thread_id = Paho_thread_getid(); if (thread_id != sendThread_id && thread_id != receiveThread_id) { MQTTAsync_lock_mutex(mqttasync_mutex); @@ -658,12 +658,12 @@ int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions* options) if (sendThread_state != STARTING && sendThread_state != RUNNING) { sendThread_state = STARTING; - Thread_start(MQTTAsync_sendThread, NULL); + Paho_thread_start(MQTTAsync_sendThread, NULL); } if (receiveThread_state != STARTING && receiveThread_state != RUNNING) { receiveThread_state = STARTING; - Thread_start(MQTTAsync_receiveThread, handle); + Paho_thread_start(MQTTAsync_receiveThread, handle); } if (locked) MQTTAsync_unlock_mutex(mqttasync_mutex); diff --git a/src/MQTTAsync.h b/src/MQTTAsync.h index 90f9f7b7..e11af048 100644 --- a/src/MQTTAsync.h +++ b/src/MQTTAsync.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp., Ian Craggs and others + * Copyright (c) 2009, 2023 IBM Corp., Ian Craggs and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -29,7 +29,7 @@ * @cond MQTTAsync_main * @mainpage Asynchronous MQTT client library for C (MQTTAsync) * - * © Copyright 2009, 2022 IBM Corp., Ian Craggs and others + * © Copyright 2009, 2023 IBM Corp., Ian Craggs and others * * @brief An Asynchronous MQTT client library for C. * diff --git a/src/MQTTAsyncUtils.c b/src/MQTTAsyncUtils.c index 0ad0145a..6d933040 100644 --- a/src/MQTTAsyncUtils.c +++ b/src/MQTTAsyncUtils.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp., Ian Craggs and others + * Copyright (c) 2009, 2023 IBM Corp., Ian Craggs and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -38,7 +38,7 @@ #include "Proxy.h" static int clientSockCompare(void* a, void* b); -static int MQTTAsync_checkConn(MQTTAsync_command* command, MQTTAsyncs* client); +static int MQTTAsync_checkConn(MQTTAsync_command* command, MQTTAsyncs* client, int was_connected); #if !defined(NO_PERSISTENCE) static int MQTTAsync_unpersistCommand(MQTTAsync_queuedCommand* qcmd); static int MQTTAsync_persistCommand(MQTTAsync_queuedCommand* qcmd); @@ -165,7 +165,7 @@ static int clientSockCompare(void* a, void* b) void MQTTAsync_lock_mutex(mutex_type amutex) { - int rc = Thread_lock_mutex(amutex); + int rc = Paho_thread_lock_mutex(amutex); if (rc != 0) Log(LOG_ERROR, 0, "Error %s locking mutex", strerror(rc)); } @@ -173,7 +173,7 @@ void MQTTAsync_lock_mutex(mutex_type amutex) void MQTTAsync_unlock_mutex(mutex_type amutex) { - int rc = Thread_unlock_mutex(amutex); + int rc = Paho_thread_unlock_mutex(amutex); if (rc != 0) Log(LOG_ERROR, 0, "Error %s unlocking mutex", strerror(rc)); } @@ -182,14 +182,15 @@ void MQTTAsync_unlock_mutex(mutex_type amutex) /* Check whether there are any more connect options. If not then we are finished with connect attempts. + return 1 if more connect options left */ -static int MQTTAsync_checkConn(MQTTAsync_command* command, MQTTAsyncs* client) +static int MQTTAsync_checkConn(MQTTAsync_command* command, MQTTAsyncs* client, int was_connected) { int rc; FUNC_ENTRY; rc = command->details.conn.currentURI + 1 < client->serverURIcount || - (command->details.conn.MQTTVersion == 4 && client->c->MQTTVersion == MQTTVERSION_DEFAULT); + (was_connected == 0 && command->details.conn.MQTTVersion == MQTTVERSION_3_1 && client->c->MQTTVersion == MQTTVERSION_DEFAULT); FUNC_EXIT_RC(rc); return rc; } @@ -1539,7 +1540,7 @@ static int MQTTAsync_processCommand(void) MQTTAsync_disconnect_internal(command->client, 0); if (command->command.type == CONNECT - && MQTTAsync_checkConn(&command->command, command->client)) + && MQTTAsync_checkConn(&command->command, command->client, 0)) { Log(TRACE_MIN, -1, "Connect failed, more to try"); @@ -1602,7 +1603,7 @@ static void nextOrClose(MQTTAsyncs* m, int rc, char* message) int connectionLost_called = 0; FUNC_ENTRY; - more_to_try = MQTTAsync_checkConn(&m->connect, m); + more_to_try = MQTTAsync_checkConn(&m->connect, m, was_connected); if (more_to_try) { MQTTAsync_queuedCommand* conn; @@ -1624,7 +1625,8 @@ static void nextOrClose(MQTTAsyncs* m, int rc, char* message) if (conn->client->c->MQTTVersion == MQTTVERSION_DEFAULT) { - if (conn->command.details.conn.MQTTVersion == MQTTVERSION_3_1) + /* if last attempt successfully connected and we are using the DEFAULT option, don't fallback to MQTT 3.1 */ + if (was_connected == 0 || conn->command.details.conn.MQTTVersion == MQTTVERSION_3_1) { conn->command.details.conn.currentURI++; conn->command.details.conn.MQTTVersion = MQTTVERSION_DEFAULT; @@ -1640,11 +1642,6 @@ static void nextOrClose(MQTTAsyncs* m, int rc, char* message) if (!more_to_try) { MQTTAsync_closeSession(m->c, MQTTREASONCODE_SUCCESS, NULL); - if (connectionLost_called == 0 && m->cl && was_connected) - { - Log(TRACE_MIN, -1, "Calling connectionLost for client %s", m->c->clientID); - (*(m->cl))(m->clContext, NULL); - } if (m->connect.onFailure) { MQTTAsync_failureData data; @@ -1671,6 +1668,11 @@ static void nextOrClose(MQTTAsyncs* m, int rc, char* message) m->connect.onFailure5 = NULL; m->connect.onSuccess5 = NULL; } + if (connectionLost_called == 0 && m->cl && was_connected) + { + Log(TRACE_MIN, -1, "Calling connectionLost for client %s", m->c->clientID); + (*(m->cl))(m->clContext, NULL); + } MQTTAsync_startConnectRetry(m); } exit: @@ -1784,7 +1786,7 @@ thread_return_type WINAPI MQTTAsync_sendThread(void* n) Thread_set_name("MQTTAsync_send"); MQTTAsync_lock_mutex(mqttasync_mutex); sendThread_state = RUNNING; - sendThread_id = Thread_getid(); + sendThread_id = Paho_thread_getid(); MQTTAsync_unlock_mutex(mqttasync_mutex); while (!MQTTAsync_tostop) { @@ -1817,6 +1819,15 @@ thread_return_type WINAPI MQTTAsync_sendThread(void* n) sendThread_state = STOPPED; sendThread_id = 0; MQTTAsync_unlock_mutex(mqttasync_mutex); + +#if defined(OPENSSL) +#if OPENSSL_VERSION_NUMBER < 0x1010000fL + ERR_remove_state(0); +#else + OPENSSL_thread_stop(); +#endif +#endif + FUNC_EXIT; #if defined(_WIN32) || defined(_WIN64) ExitThread(0); @@ -2004,7 +2015,7 @@ thread_return_type WINAPI MQTTAsync_receiveThread(void* n) Thread_set_name("MQTTAsync_rcv"); MQTTAsync_lock_mutex(mqttasync_mutex); receiveThread_state = RUNNING; - receiveThread_id = Thread_getid(); + receiveThread_id = Paho_thread_getid(); while (!MQTTAsync_tostop) { int rc = SOCKET_ERROR; @@ -2317,6 +2328,15 @@ thread_return_type WINAPI MQTTAsync_receiveThread(void* n) if (sendThread_state != STOPPED) Thread_post_sem(send_sem); #endif + +#if defined(OPENSSL) +#if OPENSSL_VERSION_NUMBER < 0x1010000fL + ERR_remove_state(0); +#else + OPENSSL_thread_stop(); +#endif +#endif + FUNC_EXIT; #if defined(_WIN32) || defined(_WIN64) ExitThread(0); @@ -2388,12 +2408,12 @@ static void MQTTAsync_closeOnly(Clients* client, enum MQTTReasonCodes reasonCode client->session = NULL; /* show the session has been freed */ SSLSocket_close(&client->net); #endif - Socket_close(client->net.socket); + MQTTAsync_unlock_mutex(socket_mutex); + Socket_close(client->net.socket); /* Socket_close locks socket mutex itself */ client->net.socket = 0; #if defined(OPENSSL) client->net.ssl = NULL; #endif - MQTTAsync_unlock_mutex(socket_mutex); } client->connected = 0; client->connect_state = NOT_IN_PROGRESS; @@ -2715,7 +2735,7 @@ int MQTTAsync_assignMsgId(MQTTAsyncs* m) /* need to check: commands list and response list for a client */ FUNC_ENTRY; /* We might be called in a callback. In which case, this mutex will be already locked. */ - thread_id = Thread_getid(); + thread_id = Paho_thread_getid(); if (thread_id != sendThread_id && thread_id != receiveThread_id) { MQTTAsync_lock_mutex(mqttasync_mutex); @@ -3032,9 +3052,9 @@ static MQTTPacket* MQTTAsync_cycle(SOCKET* sock, unsigned long timeout, int* rc) pack->header.bits.type == PUBREC) { int msgid = 0, - msgtype = 0, - ackrc = 0, mqttversion = 0; + unsigned int msgtype = 0, + ackrc = 0; MQTTProperties msgprops = MQTTProperties_initializer; Publications* pubToRemove = NULL; @@ -3053,11 +3073,11 @@ static MQTTPacket* MQTTAsync_cycle(SOCKET* sock, unsigned long timeout, int* rc) } } - if (pack->header.bits.type == PUBCOMP) + if (msgtype == PUBCOMP) *rc = MQTTProtocol_handlePubcomps(pack, *sock, &pubToRemove); - else if (pack->header.bits.type == PUBREC) + else if (msgtype == PUBREC) *rc = MQTTProtocol_handlePubrecs(pack, *sock, &pubToRemove); - else if (pack->header.bits.type == PUBACK) + else if (msgtype == PUBACK) *rc = MQTTProtocol_handlePubacks(pack, *sock, &pubToRemove); if (!m) Log(LOG_ERROR, -1, "PUBCOMP, PUBACK or PUBREC received for no client, msgid %d", msgid); @@ -3112,7 +3132,7 @@ static MQTTPacket* MQTTAsync_cycle(SOCKET* sock, unsigned long timeout, int* rc) data.token = command->command.token; data.reasonCode = ackrc; data.properties = msgprops; - data.packet_type = pack->header.bits.type; + data.packet_type = msgtype; Log(TRACE_MIN, -1, "Calling publish failure for client %s", m->c->clientID); (*(command->command.onFailure5))(command->command.context, &data); } diff --git a/src/MQTTClient.c b/src/MQTTClient.c index 3548e957..b6a7714b 100644 --- a/src/MQTTClient.c +++ b/src/MQTTClient.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp., Ian Craggs and others + * Copyright (c) 2009, 2023 IBM Corp., Ian Craggs and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -117,7 +117,6 @@ MQTTProtocol state; static mutex_type mqttclient_mutex = NULL; mutex_type socket_mutex = NULL; static mutex_type subscribe_mutex = NULL; -static mutex_type unsubscribe_mutex = NULL; static mutex_type connect_mutex = NULL; #if !defined(NO_HEAP_TRACKING) extern mutex_type stack_mutex; @@ -143,12 +142,6 @@ int MQTTClient_init(void) printf("subscribe_mutex error %d\n", rc); goto exit; } - if ((unsubscribe_mutex = CreateMutex(NULL, 0, NULL)) == NULL) - { - rc = GetLastError(); - printf("unsubscribe_mutex error %d\n", rc); - goto exit; - } if ((connect_mutex = CreateMutex(NULL, 0, NULL)) == NULL) { rc = GetLastError(); @@ -192,8 +185,6 @@ void MQTTClient_cleanup(void) CloseHandle(connect_mutex); if (subscribe_mutex) CloseHandle(subscribe_mutex); - if (unsubscribe_mutex) - CloseHandle(unsubscribe_mutex); #if !defined(NO_HEAP_TRACKING) if (stack_mutex) CloseHandle(stack_mutex); @@ -255,9 +246,6 @@ mutex_type socket_mutex = &socket_mutex_store; static pthread_mutex_t subscribe_mutex_store = PTHREAD_MUTEX_INITIALIZER; static mutex_type subscribe_mutex = &subscribe_mutex_store; -static pthread_mutex_t unsubscribe_mutex_store = PTHREAD_MUTEX_INITIALIZER; -static mutex_type unsubscribe_mutex = &unsubscribe_mutex_store; - static pthread_mutex_t connect_mutex_store = PTHREAD_MUTEX_INITIALIZER; static mutex_type connect_mutex = &connect_mutex_store; @@ -278,8 +266,6 @@ int MQTTClient_init(void) printf("MQTTClient: error %d initializing socket_mutex\n", rc); else if ((rc = pthread_mutex_init(subscribe_mutex, &attr)) != 0) printf("MQTTClient: error %d initializing subscribe_mutex\n", rc); - else if ((rc = pthread_mutex_init(unsubscribe_mutex, &attr)) != 0) - printf("MQTTClient: error %d initializing unsubscribe_mutex\n", rc); else if ((rc = pthread_mutex_init(connect_mutex, &attr)) != 0) printf("MQTTClient: error %d initializing connect_mutex\n", rc); @@ -387,7 +373,7 @@ int MQTTClient_createWithOptions(MQTTClient* handle, const char* serverURI, cons BOOL bStatus = InitOnceExecuteOnce(&g_InitOnce, InitOnceFunction, NULL, NULL); #endif FUNC_ENTRY; - if ((rc = Thread_lock_mutex(mqttclient_mutex)) != 0) + if ((rc = Paho_thread_lock_mutex(mqttclient_mutex)) != 0) goto nounlock_exit; if (serverURI == NULL || clientId == NULL) @@ -531,7 +517,7 @@ int MQTTClient_createWithOptions(MQTTClient* handle, const char* serverURI, cons ListAppend(bstate->clients, m->c, sizeof(Clients) + 3*sizeof(List)); exit: - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); nounlock_exit: FUNC_EXIT_RC(rc); return rc; @@ -592,8 +578,8 @@ void MQTTClient_destroy(MQTTClient* handle) MQTTClients* m = *handle; FUNC_ENTRY; - Thread_lock_mutex(connect_mutex); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(connect_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (m == NULL) goto exit; @@ -626,8 +612,8 @@ void MQTTClient_destroy(MQTTClient* handle) MQTTClient_terminate(); exit: - Thread_unlock_mutex(mqttclient_mutex); - Thread_unlock_mutex(connect_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(connect_mutex); FUNC_EXIT; } @@ -651,6 +637,19 @@ void MQTTClient_free(void* memory) } +void* MQTTClient_malloc(size_t size) +{ + void* val; + int rc = 0; + + FUNC_ENTRY; + val = malloc(size); + rc = (val != NULL); + FUNC_EXIT_RC(rc); + return val; +} + + void MQTTResponse_free(MQTTResponse response) { FUNC_ENTRY; @@ -722,7 +721,7 @@ int MQTTClient_setDisconnected(MQTTClient handle, void* context, MQTTClient_disc MQTTClients* m = handle; FUNC_ENTRY; - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (m == NULL || m->c->connect_state != NOT_IN_PROGRESS) rc = MQTTCLIENT_FAILURE; @@ -732,7 +731,7 @@ int MQTTClient_setDisconnected(MQTTClient handle, void* context, MQTTClient_disc m->disconnected = disconnected; } - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); FUNC_EXIT_RC(rc); return rc; } @@ -763,7 +762,7 @@ int MQTTClient_setPublished(MQTTClient handle, void* context, MQTTClient_publish MQTTClients* m = handle; FUNC_ENTRY; - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (m == NULL || m->c->connect_state != NOT_IN_PROGRESS) rc = MQTTCLIENT_FAILURE; @@ -773,7 +772,7 @@ int MQTTClient_setPublished(MQTTClient handle, void* context, MQTTClient_publish m->published = published; } - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); FUNC_EXIT_RC(rc); return rc; } @@ -786,7 +785,7 @@ int MQTTClient_setHandleAuth(MQTTClient handle, void* context, MQTTClient_handle MQTTClients* m = handle; FUNC_ENTRY; - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (m == NULL || m->c->connect_state != NOT_IN_PROGRESS) rc = MQTTCLIENT_FAILURE; @@ -796,7 +795,7 @@ int MQTTClient_setHandleAuth(MQTTClient handle, void* context, MQTTClient_handle m->auth_handle = auth_handle; } - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); FUNC_EXIT_RC(rc); return rc; } @@ -828,9 +827,9 @@ static thread_return_type WINAPI MQTTClient_run(void* n) FUNC_ENTRY; Thread_set_name("MQTTClient_run"); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); - run_id = Thread_getid(); + run_id = Paho_thread_getid(); running = 1; while (!tostop) { @@ -839,9 +838,9 @@ static thread_return_type WINAPI MQTTClient_run(void* n) MQTTClients* m = NULL; MQTTPacket* pack = NULL; - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); pack = MQTTClient_cycle(&sock, timeout, &rc); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (tostop) break; timeout = 100L; @@ -890,9 +889,9 @@ static thread_return_type WINAPI MQTTClient_run(void* n) Log(TRACE_MIN, -1, "Calling messageArrived for client %s, queue depth %d", m->c->clientID, m->c->messageQueue->count); - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); rc = (*(m->ma))(m->context, qe->topicName, topicLen, qe->msg); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); /* if 0 (false) is returned by the callback then it failed, so we don't remove the message from * the queue, and it will be retried later. If 1 is returned then the message data may have been freed, * so we must be careful how we use it. @@ -947,7 +946,7 @@ static thread_return_type WINAPI MQTTClient_run(void* n) *(dp->properties) = disc->properties; MQTTClient_disconnect1(m, 10, 0, 1, MQTTREASONCODE_SUCCESS, NULL); Log(TRACE_MIN, -1, "Calling disconnected for client %s", m->c->clientID); - Thread_start(call_disconnected, dp); + Paho_thread_start(call_disconnected, dp); } else free(dp); @@ -965,7 +964,7 @@ static thread_return_type WINAPI MQTTClient_run(void* n) dp.reasonCode = disc->rc; free(pack); Log(TRACE_MIN, -1, "Calling auth_handle for client %s", m->c->clientID); - Thread_start(call_auth_handle, &dp); + Paho_thread_start(call_auth_handle, &dp); } #endif } @@ -1013,7 +1012,7 @@ static thread_return_type WINAPI MQTTClient_run(void* n) } run_id = 0; running = tostop = 0; - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); FUNC_EXIT; #if defined(_WIN32) || defined(_WIN64) ExitThread(0); @@ -1048,14 +1047,14 @@ static int MQTTClient_stop(void) { int count = 0; tostop = 1; - if (Thread_getid() != run_id) + if (Paho_thread_getid() != run_id) { while (running && ++count < 100) { - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); Log(TRACE_MIN, -1, "sleeping"); MQTTTime_sleep(100L); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); } } rc = 1; @@ -1073,7 +1072,7 @@ int MQTTClient_setCallbacks(MQTTClient handle, void* context, MQTTClient_connect MQTTClients* m = handle; FUNC_ENTRY; - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (m == NULL || ma == NULL || m->c->connect_state != NOT_IN_PROGRESS) rc = MQTTCLIENT_FAILURE; @@ -1085,7 +1084,7 @@ int MQTTClient_setCallbacks(MQTTClient handle, void* context, MQTTClient_connect m->dc = dc; } - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); FUNC_EXIT_RC(rc); return rc; } @@ -1101,7 +1100,7 @@ static void MQTTClient_closeSession(Clients* client, enum MQTTReasonCodes reason { if (client->connected) MQTTPacket_send_disconnect(client, reason, props); - Thread_lock_mutex(socket_mutex); + Paho_thread_lock_mutex(socket_mutex); WebSocket_close(&client->net, WebSocket_CLOSE_NORMAL, NULL); #if defined(OPENSSL) @@ -1109,8 +1108,8 @@ static void MQTTClient_closeSession(Clients* client, enum MQTTReasonCodes reason client->session = NULL; /* show the session has been freed */ SSLSocket_close(&client->net); #endif + Paho_thread_unlock_mutex(socket_mutex); Socket_close(client->net.socket); - Thread_unlock_mutex(socket_mutex); client->net.socket = 0; #if defined(OPENSSL) client->net.ssl = NULL; @@ -1213,7 +1212,7 @@ static MQTTResponse MQTTClient_connectURIVersion(MQTTClient handle, MQTTClient_c { int count = 0; - Thread_start(MQTTClient_run, handle); + Paho_thread_start(MQTTClient_run, handle); if (MQTTTime_elapsed(start) >= millisecsTimeout) { rc = SOCKET_ERROR; @@ -1222,9 +1221,9 @@ static MQTTResponse MQTTClient_connectURIVersion(MQTTClient handle, MQTTClient_c while (!running && ++count < 5) { - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); MQTTTime_sleep(100L); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); } if (!running) { @@ -1260,9 +1259,9 @@ static MQTTResponse MQTTClient_connectURIVersion(MQTTClient handle, MQTTClient_c if (m->c->connect_state == TCP_IN_PROGRESS) /* TCP connect started - wait for completion */ { - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); MQTTClient_waitfor(handle, CONNECT, &rc, millisecsTimeout - MQTTTime_elapsed(start)); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (rc != 0) { rc = SOCKET_ERROR; @@ -1365,9 +1364,9 @@ static MQTTResponse MQTTClient_connectURIVersion(MQTTClient handle, MQTTClient_c #if defined(OPENSSL) if (m->c->connect_state == SSL_IN_PROGRESS) /* SSL connect sent - wait for completion */ { - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); MQTTClient_waitfor(handle, CONNECT, &rc, millisecsTimeout - MQTTTime_elapsed(start)); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (rc != 1) { rc = SOCKET_ERROR; @@ -1401,9 +1400,9 @@ static MQTTResponse MQTTClient_connectURIVersion(MQTTClient handle, MQTTClient_c if (m->c->connect_state == WEBSOCKET_IN_PROGRESS) /* websocket request sent - wait for upgrade */ { - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); MQTTClient_waitfor(handle, CONNECT, &rc, millisecsTimeout - MQTTTime_elapsed(start)); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); m->c->connect_state = WAIT_FOR_CONNACK; /* websocket upgrade complete */ if (MQTTPacket_send_connect(m->c, MQTTVersion, connectProperties, willProperties) == SOCKET_ERROR) { @@ -1415,9 +1414,9 @@ static MQTTResponse MQTTClient_connectURIVersion(MQTTClient handle, MQTTClient_c if (m->c->connect_state == WAIT_FOR_CONNACK) /* MQTT connect sent - wait for CONNACK */ { MQTTPacket* pack = NULL; - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); pack = MQTTClient_waitfor(handle, CONNACK, &rc, millisecsTimeout - MQTTTime_elapsed(start)); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (pack == NULL) rc = SOCKET_ERROR; else @@ -1744,8 +1743,8 @@ MQTTResponse MQTTClient_connectAll(MQTTClient handle, MQTTClient_connectOptions* MQTTResponse rc = MQTTResponse_initializer; FUNC_ENTRY; - Thread_lock_mutex(connect_mutex); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(connect_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); rc.reasonCode = SOCKET_ERROR; if (!library_initialized) @@ -1906,8 +1905,8 @@ exit: free(m->c->will); m->c->will = NULL; } - Thread_unlock_mutex(mqttclient_mutex); - Thread_unlock_mutex(connect_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(connect_mutex); FUNC_EXIT_RC(rc.reasonCode); return rc; } @@ -1942,9 +1941,9 @@ static int MQTTClient_disconnect1(MQTTClient handle, int timeout, int call_conne { /* wait for all inflight message flows to finish, up to timeout */ if (MQTTTime_elapsed(start) >= (ELAPSED_TIME_TYPE)timeout) break; - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); MQTTClient_yield(); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); } } @@ -1957,7 +1956,7 @@ exit: { sync.sem = Thread_create_sem(&rc); Log(TRACE_MIN, -1, "Calling connectionLost for client %s", m->c->clientID); - Thread_start(connectionLost_call, &sync); + Paho_thread_start(connectionLost_call, &sync); Thread_wait_sem(sync.sem, 5000); Thread_destroy_sem(sync.sem); } @@ -1988,9 +1987,9 @@ int MQTTClient_disconnect(MQTTClient handle, int timeout) { int rc = 0; - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); rc = MQTTClient_disconnect1(handle, timeout, 0, 1, MQTTREASONCODE_SUCCESS, NULL); - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); return rc; } @@ -1999,9 +1998,9 @@ int MQTTClient_disconnect5(MQTTClient handle, int timeout, enum MQTTReasonCodes { int rc = 0; - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); rc = MQTTClient_disconnect1(handle, timeout, 0, 1, reason, props); - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); return rc; } @@ -2012,10 +2011,10 @@ int MQTTClient_isConnected(MQTTClient handle) int rc = 0; FUNC_ENTRY; - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (m && m->c) rc = m->c->connected; - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); FUNC_EXIT_RC(rc); return rc; } @@ -2033,8 +2032,8 @@ MQTTResponse MQTTClient_subscribeMany5(MQTTClient handle, int count, char* const int msgid = 0; FUNC_ENTRY; - Thread_lock_mutex(subscribe_mutex); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(subscribe_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); resp.reasonCode = MQTTCLIENT_FAILURE; if (m == NULL || m->c == NULL) @@ -2083,9 +2082,9 @@ MQTTResponse MQTTClient_subscribeMany5(MQTTClient handle, int count, char* const { MQTTPacket* pack = NULL; - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); pack = MQTTClient_waitfor(handle, SUBACK, &rc, m->commandTimeout); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (pack != NULL) { Suback* sub = (Suback*)pack; @@ -2150,8 +2149,8 @@ MQTTResponse MQTTClient_subscribeMany5(MQTTClient handle, int count, char* const exit: if (rc < 0) resp.reasonCode = rc; - Thread_unlock_mutex(mqttclient_mutex); - Thread_unlock_mutex(subscribe_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(subscribe_mutex); FUNC_EXIT_RC(resp.reasonCode); return resp; } @@ -2211,8 +2210,8 @@ MQTTResponse MQTTClient_unsubscribeMany5(MQTTClient handle, int count, char* con int msgid = 0; FUNC_ENTRY; - Thread_lock_mutex(unsubscribe_mutex); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(subscribe_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); resp.reasonCode = MQTTCLIENT_FAILURE; if (m == NULL || m->c == NULL) @@ -2249,9 +2248,9 @@ MQTTResponse MQTTClient_unsubscribeMany5(MQTTClient handle, int count, char* con { MQTTPacket* pack = NULL; - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); pack = MQTTClient_waitfor(handle, UNSUBACK, &rc, m->commandTimeout); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (pack != NULL) { Unsuback* unsub = (Unsuback*)pack; @@ -2298,8 +2297,8 @@ MQTTResponse MQTTClient_unsubscribeMany5(MQTTClient handle, int count, char* con exit: if (rc < 0) resp.reasonCode = rc; - Thread_unlock_mutex(mqttclient_mutex); - Thread_unlock_mutex(unsubscribe_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(subscribe_mutex); FUNC_EXIT_RC(resp.reasonCode); return resp; } @@ -2348,7 +2347,7 @@ MQTTResponse MQTTClient_publish5(MQTTClient handle, const char* topicName, int p MQTTResponse resp = MQTTResponse_initializer; FUNC_ENTRY; - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (m == NULL || m->c == NULL) rc = MQTTCLIENT_FAILURE; @@ -2369,9 +2368,9 @@ MQTTResponse MQTTClient_publish5(MQTTClient handle, const char* topicName, int p blocked = 1; Log(TRACE_MIN, -1, "Blocking publish on queue full for client %s", m->c->clientID); } - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); MQTTClient_yield(); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (m->c->connected == 0) { rc = MQTTCLIENT_FAILURE; @@ -2434,16 +2433,16 @@ MQTTResponse MQTTClient_publish5(MQTTClient handle, const char* topicName, int p { pending_writes* writing = NULL; - Thread_lock_mutex(socket_mutex); + Paho_thread_lock_mutex(socket_mutex); writing = SocketBuffer_getWrite(m->c->net.socket); - Thread_unlock_mutex(socket_mutex); + Paho_thread_unlock_mutex(socket_mutex); if (writing == NULL) break; - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); MQTTClient_yield(); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); } rc = (qos > 0 || m->c->connected == 1) ? MQTTCLIENT_SUCCESS : MQTTCLIENT_FAILURE; } @@ -2469,7 +2468,7 @@ exit_and_free: } exit: - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); resp.reasonCode = rc; FUNC_EXIT_RC(resp.reasonCode); return resp; @@ -2578,7 +2577,7 @@ static MQTTPacket* MQTTClient_cycle(SOCKET* sock, ELAPSED_TIME_TYPE timeout, int #if defined(OPENSSL) } #endif - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (*sock > 0 && rc1 == 0) { MQTTClients* m = NULL; @@ -2647,7 +2646,7 @@ static MQTTPacket* MQTTClient_cycle(SOCKET* sock, ELAPSED_TIME_TYPE timeout, int } } MQTTClient_retry(); - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); FUNC_EXIT_RC(*rc); return pack; } @@ -2667,9 +2666,9 @@ static MQTTPacket* MQTTClient_waitfor(MQTTClient handle, int packet_type, int* r goto exit; } - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); is_running = running; - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); if (is_running) { @@ -2842,14 +2841,14 @@ void MQTTClient_yield(void) { SOCKET sock = -1; MQTTClient_cycle(&sock, (timeout > elapsed) ? timeout - elapsed : 0L, &rc); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (rc == SOCKET_ERROR && ListFindItem(handles, &sock, clientSockCompare)) { MQTTClients* m = (MQTTClient)(handles->current->content); if (m->c->connect_state != DISCONNECTING) MQTTClient_disconnect_internal(m, 0); } - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); elapsed = MQTTTime_elapsed(start); } while (elapsed < timeout); @@ -2873,17 +2872,16 @@ int MQTTClient_waitForCompletion(MQTTClient handle, MQTTClient_deliveryToken mdt MQTTClients* m = handle; FUNC_ENTRY; - Thread_lock_mutex(mqttclient_mutex); - - if (m == NULL || m->c == NULL) - { - rc = MQTTCLIENT_FAILURE; - goto exit; - } + Paho_thread_lock_mutex(mqttclient_mutex); elapsed = MQTTTime_elapsed(start); while (elapsed < timeout) { + if (m == NULL || m->c == NULL) + { + rc = MQTTCLIENT_FAILURE; + goto exit; + } if (m->c->connected == 0) { rc = MQTTCLIENT_DISCONNECTED; @@ -2894,14 +2892,14 @@ int MQTTClient_waitForCompletion(MQTTClient handle, MQTTClient_deliveryToken mdt rc = MQTTCLIENT_SUCCESS; /* well we couldn't find it */ goto exit; } - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); MQTTClient_yield(); - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); elapsed = MQTTTime_elapsed(start); } exit: - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); FUNC_EXIT_RC(rc); return rc; } @@ -2914,7 +2912,7 @@ int MQTTClient_getPendingDeliveryTokens(MQTTClient handle, MQTTClient_deliveryTo *tokens = NULL; FUNC_ENTRY; - Thread_lock_mutex(mqttclient_mutex); + Paho_thread_lock_mutex(mqttclient_mutex); if (m == NULL) { @@ -2942,7 +2940,7 @@ int MQTTClient_getPendingDeliveryTokens(MQTTClient handle, MQTTClient_deliveryTo } exit: - Thread_unlock_mutex(mqttclient_mutex); + Paho_thread_unlock_mutex(mqttclient_mutex); FUNC_EXIT_RC(rc); return rc; } diff --git a/src/MQTTClient.h b/src/MQTTClient.h index 8d6a32af..a5dc7f26 100644 --- a/src/MQTTClient.h +++ b/src/MQTTClient.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp., Ian Craggs and others + * Copyright (c) 2009, 2023 IBM Corp., Ian Craggs and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -41,7 +41,7 @@ * @endcond * @cond MQTTClient_main * @mainpage MQTT Client library for C (MQTTClient) - * © Copyright 2009, 2022 IBM Corp., Ian Craggs and others + * © Copyright 2009, 2023 IBM Corp., Ian Craggs and others * * @brief An MQTT client library in C. * @@ -1401,6 +1401,14 @@ LIBMQTT_API void MQTTClient_freeMessage(MQTTClient_message** msg); */ LIBMQTT_API void MQTTClient_free(void* ptr); +/** + * This function is used to allocate memory to be used or freed by the MQTT C client library, + * especially the data in user persistence. This is needed on Windows when the client library + * and application program have been compiled with different versions of the C compiler. + * @param size The size of the memory to be allocated. + */ +LIBMQTT_API void* MQTTClient_malloc(size_t size); + /** * This function frees the memory allocated to an MQTT client (see * MQTTClient_create()). It should be called when the client is no longer diff --git a/src/MQTTPacket.c b/src/MQTTPacket.c index 9d8f08dd..e44fa5a0 100644 --- a/src/MQTTPacket.c +++ b/src/MQTTPacket.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp. and Ian Craggs + * Copyright (c) 2009, 2023 IBM Corp. and Ian Craggs * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -942,14 +942,14 @@ void MQTTPacket_free_packet(MQTTPacket* pack) * @param pptr pointer to the output buffer - incremented by the number of bytes used & returned * @param anInt the integer to write */ -void writeInt4(char** pptr, int anInt) +void writeInt4(char** pptr, unsigned int anInt) { - **pptr = (char)(anInt / 16777216); - (*pptr)++; - anInt %= 16777216; - **pptr = (char)(anInt / 65536); - (*pptr)++; - anInt %= 65536; + **pptr = (char)(anInt / 16777216); + (*pptr)++; + anInt %= 16777216; + **pptr = (char)(anInt / 65536); + (*pptr)++; + anInt %= 65536; **pptr = (char)(anInt / 256); (*pptr)++; **pptr = (char)(anInt % 256); @@ -962,10 +962,10 @@ void writeInt4(char** pptr, int anInt) * @param pptr pointer to the input buffer - incremented by the number of bytes used & returned * @return the integer value calculated */ -int readInt4(char** pptr) +unsigned int readInt4(char** pptr) { unsigned char* ptr = (unsigned char*)*pptr; - int value = 16777216*(*ptr) + 65536*(*(ptr+1)) + 256*(*(ptr+2)) + (*(ptr+3)); + unsigned int value = 16777216*(*ptr) + 65536*(*(ptr+1)) + 256*(*(ptr+2)) + (*(ptr+3)); *pptr += 4; return value; } diff --git a/src/MQTTPacket.h b/src/MQTTPacket.h index 658404a7..1fc8e06e 100644 --- a/src/MQTTPacket.h +++ b/src/MQTTPacket.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2020 IBM Corp. + * Copyright (c) 2009, 2023 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -259,8 +259,8 @@ int MQTTPacket_send_pubcomp(int MQTTVersion, int msgid, networkHandles* net, con void MQTTPacket_free_packet(MQTTPacket* pack); -void writeInt4(char** pptr, int anInt); -int readInt4(char** pptr); +void writeInt4(char** pptr, unsigned int anInt); +unsigned int readInt4(char** pptr); void writeMQTTLenString(char** pptr, MQTTLenString lenstring); int MQTTLenStringRead(MQTTLenString* lenstring, char** pptr, char* enddata); int MQTTPacket_VBIlen(int rem_len); diff --git a/src/MQTTPersistence.c b/src/MQTTPersistence.c index 7e6e11e8..7cf47774 100644 --- a/src/MQTTPersistence.c +++ b/src/MQTTPersistence.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp. + * Copyright (c) 2009, 2023 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -340,16 +340,29 @@ int MQTTPersistence_restorePackets(Clients *c) buffer = NULL; } if (msgkeys[i]) + { free(msgkeys[i]); + msgkeys[i] = NULL; + } i++; } - if (msgkeys) - free(msgkeys); } Log(TRACE_MINIMUM, -1, "%d sent messages and %d received messages restored for client %s\n", msgs_sent, msgs_rcvd, c->clientID); MQTTPersistence_wrapMsgID(c); exit: + if (msgkeys) + { + int i = 0; + for (i = 0; i < nkeys; ++i) + { + if (msgkeys[i]) + free(msgkeys[i]); + } + free(msgkeys); + } + if (buffer) + free(buffer); FUNC_EXIT_RC(rc); return rc; } diff --git a/src/MQTTPersistenceDefault.c b/src/MQTTPersistenceDefault.c index ee9de994..fe3bd17b 100644 --- a/src/MQTTPersistenceDefault.c +++ b/src/MQTTPersistenceDefault.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2020 IBM Corp. + * Copyright (c) 2009, 2023 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -835,12 +835,18 @@ int keysUnix(char *dirname, char ***keys, int *nkeys) if (!temp) { + int n = 0; + for (n = 0; n < i; n++) + free(fkeys[n]); free(fkeys); rc = PAHO_MEMORY_ERROR; goto exit; } if (snprintf(temp, allocsize, "%s/%s", dirname, dir_entry->d_name) >= allocsize) { + int n = 0; + for (n = 0; n < i; n++) + free(fkeys[n]); free(temp); free(fkeys); rc = MQTTCLIENT_PERSISTENCE_ERROR; @@ -850,6 +856,9 @@ int keysUnix(char *dirname, char ***keys, int *nkeys) { if ((fkeys[i] = malloc(strlen(dir_entry->d_name) + 1)) == NULL) { + int n = 0; + for (n = 0; n < i; n++) + free(fkeys[n]); free(temp); free(fkeys); rc = PAHO_MEMORY_ERROR; diff --git a/src/MQTTProperties.h b/src/MQTTProperties.h index 81b8e3af..bbfd732c 100644 --- a/src/MQTTProperties.h +++ b/src/MQTTProperties.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2017, 2020 IBM Corp. and others + * Copyright (c) 2017, 2023 IBM Corp. and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -127,7 +127,10 @@ typedef struct MQTTProperties int MQTTProperties_len(MQTTProperties* props); /** - * Add a property pointer to the property array. There is no memory allocation. + * Add a property pointer to the property array. Memory is allocated in this function, + * so MQTTClient_create or MQTTAsync_create must be called first to initialize the + * internal heap tracking. Alternatively MQTTAsync_global_init() can be called first + * or build with the HIGH_PERFORMANCE option which disables the heap tracking. * @param props The property list to add the property to. * @param prop The property to add to the list. * @return 0 on success, -1 on failure. diff --git a/src/MQTTProtocolOut.c b/src/MQTTProtocolOut.c index c588819e..756f4214 100644 --- a/src/MQTTProtocolOut.c +++ b/src/MQTTProtocolOut.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp., Ian Craggs and others + * Copyright (c) 2009, 2023 IBM Corp., Ian Craggs and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -335,8 +335,9 @@ int MQTTProtocol_connect(const char* ip_address, Clients* aClient, int websocket { #if defined(OPENSSL) rc = WebSocket_connect(&aClient->net, ssl, ip_address); -#endif +#else rc = WebSocket_connect(&aClient->net, 0, ip_address); +#endif if ( rc == TCPSOCKET_INTERRUPTED ) aClient->connect_state = WEBSOCKET_IN_PROGRESS; /* Websocket connect called - wait for completion */ } diff --git a/src/Socket.c b/src/Socket.c index 9a91c58d..7f8a2cff 100644 --- a/src/Socket.c +++ b/src/Socket.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp., Ian Craggs and others + * Copyright (c) 2009, 2023 IBM Corp., Ian Craggs and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -270,7 +270,7 @@ int Socket_addSocket(SOCKET newSd) int rc = 0; FUNC_ENTRY; - Thread_lock_mutex(socket_mutex); + Paho_thread_lock_mutex(socket_mutex); mod_s.nfds++; if (mod_s.fds_read) mod_s.fds_read = realloc(mod_s.fds_read, mod_s.nfds * sizeof(mod_s.fds_read[0])); @@ -285,7 +285,7 @@ int Socket_addSocket(SOCKET newSd) mod_s.fds_write = realloc(mod_s.fds_write, mod_s.nfds * sizeof(mod_s.fds_write[0])); else mod_s.fds_write = malloc(mod_s.nfds * sizeof(mod_s.fds_write[0])); - if (!mod_s.fds_read) + if (!mod_s.fds_write) { rc = PAHO_MEMORY_ERROR; goto exit; @@ -310,7 +310,7 @@ int Socket_addSocket(SOCKET newSd) Log(LOG_ERROR, -1, "addSocket: setnonblocking"); exit: - Thread_unlock_mutex(socket_mutex); + Paho_thread_unlock_mutex(socket_mutex); FUNC_EXIT_RC(rc); return rc; } @@ -384,7 +384,7 @@ SOCKET Socket_getReadySocket(int more_work, int timeout, mutex_type mutex, int* int timeout_ms = 1000; FUNC_ENTRY; - Thread_lock_mutex(mutex); + Paho_thread_lock_mutex(mutex); if (mod_s.clientsds->count == 0) goto exit; @@ -423,9 +423,9 @@ SOCKET Socket_getReadySocket(int more_work, int timeout, mutex_type mutex, int* goto exit; /* no work to do */ } /* Prevent performance issue by unlocking the socket_mutex while waiting for a ready socket. */ - Thread_unlock_mutex(mutex); + Paho_thread_unlock_mutex(mutex); *rc = select(maxfdp1_saved, &(mod_s.rset), &pwset, NULL, &timeout_tv); - Thread_lock_mutex(mutex); + Paho_thread_lock_mutex(mutex); if (*rc == SOCKET_ERROR) { Socket_error("read select", 0); @@ -473,7 +473,7 @@ SOCKET Socket_getReadySocket(int more_work, int timeout, mutex_type mutex, int* ListNextElement(mod_s.clientsds, &mod_s.cur_clientsds); } exit: - Thread_unlock_mutex(mutex); + Paho_thread_unlock_mutex(mutex); FUNC_EXIT_RC(sock); return sock; } /* end getReadySocket */ @@ -493,7 +493,7 @@ SOCKET Socket_getReadySocket(int more_work, int timeout, mutex_type mutex, int* int timeout_ms = 1000; FUNC_ENTRY; - Thread_lock_mutex(mutex); + Paho_thread_lock_mutex(mutex); if (mod_s.nfds == 0 && mod_s.saved.nfds == 0) goto exit; @@ -516,17 +516,40 @@ SOCKET Socket_getReadySocket(int more_work, int timeout, mutex_type mutex, int* if (mod_s.nfds != mod_s.saved.nfds) { mod_s.saved.nfds = mod_s.nfds; - if (mod_s.saved.fds_read) + if (mod_s.nfds == 0) + { + if (mod_s.saved.fds_read) + { + free(mod_s.saved.fds_read); + mod_s.saved.fds_read = NULL; + } + } + else if (mod_s.saved.fds_read) mod_s.saved.fds_read = realloc(mod_s.saved.fds_read, mod_s.nfds * sizeof(struct pollfd)); else mod_s.saved.fds_read = malloc(mod_s.nfds * sizeof(struct pollfd)); - if (mod_s.saved.fds_write) + + if (mod_s.nfds == 0) + { + if (mod_s.saved.fds_write) + { + free(mod_s.saved.fds_write); + mod_s.saved.fds_write = NULL; + } + } + else if (mod_s.saved.fds_write) mod_s.saved.fds_write = realloc(mod_s.saved.fds_write, mod_s.nfds * sizeof(struct pollfd)); else mod_s.saved.fds_write = malloc(mod_s.nfds * sizeof(struct pollfd)); } - memcpy(mod_s.saved.fds_read, mod_s.fds_read, mod_s.nfds * sizeof(struct pollfd)); - memcpy(mod_s.saved.fds_write, mod_s.fds_write, mod_s.nfds * sizeof(struct pollfd)); + if (mod_s.fds_read == NULL) + mod_s.saved.fds_read = NULL; + else + memcpy(mod_s.saved.fds_read, mod_s.fds_read, mod_s.nfds * sizeof(struct pollfd)); + if (mod_s.fds_write == NULL) + mod_s.saved.fds_write = NULL; + else + memcpy(mod_s.saved.fds_write, mod_s.fds_write, mod_s.nfds * sizeof(struct pollfd)); if (mod_s.saved.nfds == 0) { @@ -543,9 +566,9 @@ SOCKET Socket_getReadySocket(int more_work, int timeout, mutex_type mutex, int* } /* Prevent performance issue by unlocking the socket_mutex while waiting for a ready socket. */ - Thread_unlock_mutex(mutex); + Paho_thread_unlock_mutex(mutex); *rc = poll(mod_s.saved.fds_read, mod_s.saved.nfds, timeout_ms); - Thread_lock_mutex(mutex); + Paho_thread_lock_mutex(mutex); if (*rc == SOCKET_ERROR) { Socket_error("poll", 0); @@ -577,7 +600,7 @@ SOCKET Socket_getReadySocket(int more_work, int timeout, mutex_type mutex, int* mod_s.saved.cur_fd = (mod_s.saved.cur_fd == mod_s.saved.nfds - 1) ? -1 : mod_s.saved.cur_fd + 1; } exit: - Thread_unlock_mutex(mutex); + Paho_thread_unlock_mutex(mutex); FUNC_EXIT_RC(sock); return sock; } /* end getReadySocket */ @@ -942,6 +965,7 @@ int Socket_close(SOCKET socket) int rc = 0; FUNC_ENTRY; + Paho_thread_lock_mutex(socket_mutex); Socket_close_only(socket); Socket_abortWrite(socket); SocketBuffer_cleanup(socket); @@ -1009,6 +1033,7 @@ int Socket_close(SOCKET socket) else Log(LOG_ERROR, -1, "Failed to remove socket %d", socket); exit: + Paho_thread_unlock_mutex(socket_mutex); FUNC_EXIT_RC(rc); return rc; } @@ -1181,9 +1206,9 @@ int Socket_new(const char* addr, size_t addr_len, int port, SOCKET* sock) goto exit; } *pnewSd = *sock; - Thread_lock_mutex(socket_mutex); + Paho_thread_lock_mutex(socket_mutex); result = ListAppend(mod_s.connect_pending, pnewSd, sizeof(SOCKET)); - Thread_unlock_mutex(socket_mutex); + Paho_thread_unlock_mutex(socket_mutex); if (!result) { free(pnewSd); @@ -1197,9 +1222,7 @@ int Socket_new(const char* addr, size_t addr_len, int port, SOCKET* sock) as reported in https://github.com/eclipse/paho.mqtt.c/issues/135 */ if (rc != 0 && (rc != EINPROGRESS) && (rc != EWOULDBLOCK)) { - Thread_lock_mutex(socket_mutex); Socket_close(*sock); /* close socket and remove from our list of sockets */ - Thread_unlock_mutex(socket_mutex); *sock = SOCKET_ERROR; /* as initialized before */ } } @@ -1410,9 +1433,9 @@ int Socket_continueWrites(SOCKET* sock, mutex_type mutex) if (writecomplete) { - Thread_unlock_mutex(mutex); + Paho_thread_unlock_mutex(mutex); (*writecomplete)(socket, rc); - Thread_lock_mutex(mutex); + Paho_thread_lock_mutex(mutex); } } else diff --git a/src/StackTrace.c b/src/StackTrace.c index 0fd61e31..d3d298de 100644 --- a/src/StackTrace.c +++ b/src/StackTrace.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp. + * Copyright (c) 2009, 2023 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -80,7 +80,7 @@ int setStack(int create); int setStack(int create) { int i = -1; - thread_id_type curid = Thread_getid(); + thread_id_type curid = Paho_thread_getid(); my_thread = NULL; for (i = 0; i < MAX_THREADS && i < thread_count; ++i) @@ -105,7 +105,7 @@ int setStack(int create) void StackTrace_entry(const char* name, int line, enum LOG_LEVELS trace_level) { - Thread_lock_mutex(stack_mutex); + Paho_thread_lock_mutex(stack_mutex); if (!setStack(1)) goto exit; if (trace_level != -1) @@ -117,13 +117,13 @@ void StackTrace_entry(const char* name, int line, enum LOG_LEVELS trace_level) if (my_thread->current_depth >= MAX_STACK_DEPTH) Log(LOG_FATAL, -1, "Max stack depth exceeded"); exit: - Thread_unlock_mutex(stack_mutex); + Paho_thread_unlock_mutex(stack_mutex); } void StackTrace_exit(const char* name, int line, void* rc, enum LOG_LEVELS trace_level) { - Thread_lock_mutex(stack_mutex); + Paho_thread_lock_mutex(stack_mutex); if (!setStack(0)) goto exit; if (--(my_thread->current_depth) < 0) @@ -138,7 +138,7 @@ void StackTrace_exit(const char* name, int line, void* rc, enum LOG_LEVELS trace Log_stackTrace(trace_level, 11, my_thread->id, my_thread->current_depth, name, line, (int*)rc); } exit: - Thread_unlock_mutex(stack_mutex); + Paho_thread_unlock_mutex(stack_mutex); } diff --git a/src/Thread.c b/src/Thread.c index 811ff5a1..f4d43fb6 100644 --- a/src/Thread.c +++ b/src/Thread.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp. and Ian Craggs + * Copyright (c) 2009, 2023 IBM Corp. and Ian Craggs * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -56,7 +56,7 @@ * @param fn the function to run, must be of the correct signature * @param parameter pointer to the function parameter, can be NULL */ -void Thread_start(thread_fn fn, void* parameter) +void Paho_thread_start(thread_fn fn, void* parameter) { #if defined(_WIN32) || defined(_WIN64) thread_type thread = NULL; @@ -104,7 +104,7 @@ int Thread_set_name(const char* thread_name) #else #if defined(__GNUC__) && defined(__linux__) #if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 12 - rc = pthread_setname_np(Thread_getid(), thread_name); + rc = pthread_setname_np(Paho_thread_getid(), thread_name); #endif #endif #endif @@ -118,7 +118,7 @@ int Thread_set_name(const char* thread_name) * @param rc return code: 0 for success, negative otherwise * @return the new mutex */ -mutex_type Thread_create_mutex(int* rc) +mutex_type Paho_thread_create_mutex(int* rc) { mutex_type mutex = NULL; @@ -141,7 +141,7 @@ mutex_type Thread_create_mutex(int* rc) * Lock a mutex which has alrea * @return completion code, 0 is success */ -int Thread_lock_mutex(mutex_type mutex) +int Paho_thread_lock_mutex(mutex_type mutex) { int rc = -1; @@ -162,7 +162,7 @@ int Thread_lock_mutex(mutex_type mutex) * @param mutex the mutex * @return completion code, 0 is success */ -int Thread_unlock_mutex(mutex_type mutex) +int Paho_thread_unlock_mutex(mutex_type mutex) { int rc = -1; @@ -185,7 +185,7 @@ int Thread_unlock_mutex(mutex_type mutex) * Destroy a mutex which has already been created * @param mutex the mutex */ -int Thread_destroy_mutex(mutex_type mutex) +int Paho_thread_destroy_mutex(mutex_type mutex) { int rc = 0; @@ -205,7 +205,7 @@ int Thread_destroy_mutex(mutex_type mutex) * Get the thread id of the thread from which this function is called * @return thread id, type varying according to OS */ -thread_id_type Thread_getid(void) +thread_id_type Paho_thread_getid(void) { #if defined(_WIN32) || defined(_WIN64) return GetCurrentThreadId(); diff --git a/src/Thread.h b/src/Thread.h index 23675a95..b0c823b6 100644 --- a/src/Thread.h +++ b/src/Thread.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp. + * Copyright (c) 2009, 2023 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -68,15 +68,15 @@ int Thread_destroy_cond(cond_type); #endif -LIBMQTT_API void Thread_start(thread_fn, void*); +LIBMQTT_API void Paho_thread_start(thread_fn, void*); int Thread_set_name(const char* thread_name); -LIBMQTT_API mutex_type Thread_create_mutex(int*); -LIBMQTT_API int Thread_lock_mutex(mutex_type); -LIBMQTT_API int Thread_unlock_mutex(mutex_type); -int Thread_destroy_mutex(mutex_type); +LIBMQTT_API mutex_type Paho_thread_create_mutex(int*); +LIBMQTT_API int Paho_thread_lock_mutex(mutex_type); +LIBMQTT_API int Paho_thread_unlock_mutex(mutex_type); +int Paho_thread_destroy_mutex(mutex_type); -LIBMQTT_API thread_id_type Thread_getid(); +LIBMQTT_API thread_id_type Paho_thread_getid(); sem_type Thread_create_sem(int*); int Thread_wait_sem(sem_type sem, int timeout); diff --git a/src/WebSocket.c b/src/WebSocket.c index 4870f916..c57ae7de 100644 --- a/src/WebSocket.c +++ b/src/WebSocket.c @@ -89,7 +89,7 @@ #define HTTP_PROTOCOL(x) x ? "https" : "http" #if !(defined(_WIN32) || defined(_WIN64)) -#if defined(LIBUUID) +#if defined(USE_LIBUUID) #include #else /* if defined(USE_LIBUUID) */ #include @@ -103,7 +103,7 @@ typedef unsigned char uuid_t[16]; * @brief generates a uuid, compatible with RFC 4122, version 4 (random) * @note Uses a very insecure algorithm but no external dependencies */ -void uuid_generate( uuid_t out ) +static void uuid_generate( uuid_t out ) { #if defined(OPENSSL) int rc = RAND_bytes( out, sizeof(uuid_t)); @@ -121,7 +121,7 @@ void uuid_generate( uuid_t out ) } /** @brief converts a uuid to a string */ -void uuid_unparse( uuid_t uu, char *out ) +static void uuid_unparse( uuid_t uu, char *out ) { int i; for ( i = 0; i < 16; ++i ) @@ -135,7 +135,7 @@ void uuid_unparse( uuid_t uu, char *out ) } *out = '\0'; } -#endif /* else if defined(LIBUUID) */ +#endif /* else if defined(USE_LIBUUID) */ #endif /* if !(defined(_WIN32) || defined(_WIN64)) */ #include "Heap.h" diff --git a/src/samples/MQTTAsync_publish.c b/src/samples/MQTTAsync_publish.c index b2ac829a..7695a745 100644 --- a/src/samples/MQTTAsync_publish.c +++ b/src/samples/MQTTAsync_publish.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2012, 2022 IBM Corp., Ian Craggs + * Copyright (c) 2012, 2023 IBM Corp., Ian Craggs * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -45,7 +45,8 @@ void connlost(void *context, char *cause) int rc; printf("\nConnection lost\n"); - printf(" cause: %s\n", cause); + if (cause) + printf(" cause: %s\n", cause); printf("Reconnecting\n"); conn_opts.keepAliveInterval = 20; @@ -151,7 +152,7 @@ int main(int argc, char* argv[]) exit(EXIT_FAILURE); } - if ((rc = MQTTAsync_setCallbacks(client, NULL, connlost, messageArrived, NULL)) != MQTTASYNC_SUCCESS) + if ((rc = MQTTAsync_setCallbacks(client, client, connlost, messageArrived, NULL)) != MQTTASYNC_SUCCESS) { printf("Failed to set callback, return code %d\n", rc); exit(EXIT_FAILURE); diff --git a/src/samples/MQTTAsync_publish_time.c b/src/samples/MQTTAsync_publish_time.c index e6998de3..6aad601a 100644 --- a/src/samples/MQTTAsync_publish_time.c +++ b/src/samples/MQTTAsync_publish_time.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2012, 2020 IBM Corp. + * Copyright (c) 2012, 2023 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -62,7 +62,8 @@ void connlost(void *context, char *cause) int rc; printf("\nConnection lost\n"); - printf(" cause: %s\n", cause); + if (cause) + printf(" cause: %s\n", cause); printf("Reconnecting\n"); conn_opts.keepAliveInterval = 20; @@ -157,7 +158,7 @@ int main(int argc, char* argv[]) exit(EXIT_FAILURE); } - if ((rc = MQTTAsync_setCallbacks(client, NULL, connlost, messageArrived, NULL)) != MQTTASYNC_SUCCESS) + if ((rc = MQTTAsync_setCallbacks(client, client, connlost, messageArrived, NULL)) != MQTTASYNC_SUCCESS) { printf("Failed to set callback, return code %d\n", rc); exit(EXIT_FAILURE); diff --git a/src/samples/MQTTClient_publish_async.c b/src/samples/MQTTClient_publish_async.c index c5685417..a2b45e87 100644 --- a/src/samples/MQTTClient_publish_async.c +++ b/src/samples/MQTTClient_publish_async.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2012, 2022 IBM Corp., Ian Craggs + * Copyright (c) 2012, 2023 IBM Corp., Ian Craggs * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -53,7 +53,8 @@ int msgarrvd(void *context, char *topicName, int topicLen, MQTTClient_message *m void connlost(void *context, char *cause) { printf("\nConnection lost\n"); - printf(" cause: %s\n", cause); + if (cause) + printf(" cause: %s\n", cause); } int main(int argc, char* argv[]) diff --git a/src/samples/MQTTClient_subscribe.c b/src/samples/MQTTClient_subscribe.c index 8a527a39..8872dd13 100644 --- a/src/samples/MQTTClient_subscribe.c +++ b/src/samples/MQTTClient_subscribe.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2012, 2022 IBM Corp., Ian Craggs + * Copyright (c) 2012, 2023 IBM Corp., Ian Craggs * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -47,7 +47,8 @@ int msgarrvd(void *context, char *topicName, int topicLen, MQTTClient_message *m void connlost(void *context, char *cause) { printf("\nConnection lost\n"); - printf(" cause: %s\n", cause); + if (cause) + printf(" cause: %s\n", cause); } int main(int argc, char* argv[]) diff --git a/test/test1.c b/test/test1.c index 8410f745..bf2c7d05 100644 --- a/test/test1.c +++ b/test/test1.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp., Ian Craggs + * Copyright (c) 2009, 2023 IBM Corp., Ian Craggs * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -750,9 +750,9 @@ int test4_run(int qos) while (tokens[i] != -1) MyLog(LOGA_DEBUG, "Pending delivery token %d", tokens[i++]); - MQTTClient_free(tokens); assert1("no of tokens should be count", i == count, "no of tokens %d count %d", i, count); mytoken = tokens[0]; + MQTTClient_free(tokens); } MQTTClient_destroy(&c); /* force re-reading persistence on create */ diff --git a/test/test10.c b/test/test10.c index 2e5557ba..53d61601 100644 --- a/test/test10.c +++ b/test/test10.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2020 IBM Corp. and others + * Copyright (c) 2009, 2023 IBM Corp. and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -1281,6 +1281,7 @@ int test_qos_1_2_errors(struct Options options) exit: MQTTClient_setTraceCallback(NULL); MQTTProperties_free(&props); + MQTTProperties_free(&pubmsg.properties); MQTTClient_destroy(&c); MyLog(LOGA_INFO, "TEST6: test %s. %d tests run, %d failures.", diff --git a/test/test2.c b/test/test2.c index ec970afb..0da3d854 100644 --- a/test/test2.c +++ b/test/test2.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2022 IBM Corp., Ian Craggs and others + * Copyright (c) 2009, 2023 IBM Corp., Ian Craggs and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -288,14 +288,14 @@ mutex_type deliveryCompleted_mutex = &deliveryCompleted_mutex_store; void lock_mutex(mutex_type amutex) { - int rc = Thread_lock_mutex(amutex); + int rc = Paho_thread_lock_mutex(amutex); if (rc != 0) MyLog(LOGA_INFO, "Error %s locking mutex", strerror(rc)); } void unlock_mutex(mutex_type amutex) { - int rc = Thread_unlock_mutex(amutex); + int rc = Paho_thread_unlock_mutex(amutex); if (rc != 0) MyLog(LOGA_INFO, "Error %s unlocking mutex", strerror(rc)); } @@ -365,7 +365,7 @@ thread_return_type WINAPI test1_sendAndReceive(void* n) rc = MQTTClient_subscribe(c, test_topic, subsqos); assert("Good rc from subscribe", rc == MQTTCLIENT_SUCCESS, "rc was %d", rc); - MyLog(LOGA_INFO, "Thread %u, %d messages at QoS %d", Thread_getid(), iterations, qos); + MyLog(LOGA_INFO, "Thread %u, %d messages at QoS %d", Paho_thread_getid(), iterations, qos); test1_pubmsg.payload = test1_pubmsg_check.payload; test1_pubmsg.payloadlen = test1_pubmsg_check.payloadlen; test1_pubmsg.retained = 0; @@ -462,13 +462,13 @@ int test1(struct Options options) test1_deliveryCompleted = test1_arrivedcount = 0; struct thread_parms parms0 = {c, 0, test_topic}; - Thread_start(test1_sendAndReceive, (void*)&parms0); + Paho_thread_start(test1_sendAndReceive, (void*)&parms0); struct thread_parms parms1 = {c, 1, test_topic}; - Thread_start(test1_sendAndReceive, (void*)&parms1); + Paho_thread_start(test1_sendAndReceive, (void*)&parms1); struct thread_parms parms2 = {c, 2, test_topic}; - Thread_start(test1_sendAndReceive, (void*)&parms2); + Paho_thread_start(test1_sendAndReceive, (void*)&parms2); /* MQTT servers can send a message to a subscriber before the server has completed the QoS 2 handshake with the publisher. For QoS 1 and 2, diff --git a/test/test9.c b/test/test9.c index fe9d08f2..59bbcef7 100644 --- a/test/test9.c +++ b/test/test9.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2012, 2022 IBM Corp., Ian Craggs + * Copyright (c) 2012, 2023 IBM Corp., Ian Craggs * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -338,7 +338,7 @@ int test1_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test1_will_message_received = 1; else test1_messages_received++; @@ -599,7 +599,7 @@ int test2_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test2_will_message_received = 1; else test2_messages_received++; @@ -868,9 +868,9 @@ int test3_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MQTTAsync c = (MQTTAsync)context; static int message_count = 0; - MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); + MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\" %d", topicName, message->payloadlen, message->payload, message->payloadlen); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test3_will_message_received = 1; else test3_messages_received++; @@ -1129,7 +1129,7 @@ int test4_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test4_will_message_received = 1; else test4_messages_received++; @@ -1391,9 +1391,9 @@ int test5_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MQTTAsync c = (MQTTAsync)context; static int message_count = 0; - MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); + MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\" %d", topicName, message->payloadlen, message->payload, message->payloadlen); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test5_will_message_received = 1; else test5_messages_received++; @@ -1716,7 +1716,7 @@ int test6(struct Options options) /* let client c go: connect, and send disconnect command to proxy */ opts.will = &wopts; opts.will->payload.data = "will message"; - opts.will->payload.len = (int)strlen(opts.will->payload.data) + 1; + opts.will->payload.len = (int)strlen(opts.will->payload.data); opts.will->qos = 1; opts.will->retained = 0; opts.will->topicName = willTopic; @@ -1814,7 +1814,7 @@ int test7_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test7_will_message_received = 1; else test7_messages_received++; diff --git a/test/test95.c b/test/test95.c index b759790c..46633409 100644 --- a/test/test95.c +++ b/test/test95.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2012, 2022 IBM Corp., Ian Craggs + * Copyright (c) 2012, 2023 IBM Corp., Ian Craggs * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -383,7 +383,7 @@ int test1_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test1_will_message_received = 1; else test1_messages_received++; @@ -720,7 +720,7 @@ int test2_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test2_will_message_received = 1; else test2_messages_received++; @@ -992,7 +992,7 @@ int test3_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test3_will_message_received = 1; else test3_messages_received++; @@ -1260,7 +1260,7 @@ int test4_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test4_will_message_received = 1; else test4_messages_received++; @@ -1532,7 +1532,7 @@ int test5_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test5_will_message_received = 1; else test5_messages_received++; @@ -1869,7 +1869,7 @@ int test6(struct Options options) /* let client c go: connect, and send disconnect command to proxy */ opts.will = &wopts; opts.will->payload.data = "will message"; - opts.will->payload.len = (int)strlen(opts.will->payload.data) + 1; + opts.will->payload.len = (int)strlen(opts.will->payload.data); opts.will->qos = 1; opts.will->retained = 0; opts.will->topicName = willTopic; @@ -1970,7 +1970,7 @@ int test7_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync MyLog(LOGA_DEBUG, "Message received on topic %s, \"%.*s\"", topicName, message->payloadlen, message->payload); - if (memcmp(message->payload, "will message", message->payloadlen) == 0) + if (message->payloadlen == strlen("will message") && memcmp(message->payload, "will message", message->payloadlen) == 0) test7_will_message_received = 1; else test7_messages_received++; diff --git a/test/test_connect_destroy.c b/test/test_connect_destroy.c index cc37ed8f..d1850827 100644 --- a/test/test_connect_destroy.c +++ b/test/test_connect_destroy.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2020 IBM Corp. and others + * Copyright (c) 2009, 2023 IBM Corp. and others * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -285,14 +285,14 @@ void myassert(char* filename, int lineno, char* description, int value, char* fo void lock_mutex(mutex_type amutex) { - int rc = Thread_lock_mutex(amutex); + int rc = Paho_thread_lock_mutex(amutex); if (rc != 0) MyLog(LOGA_INFO, "Error %s locking mutex", strerror(rc)); } void unlock_mutex(mutex_type amutex) { - int rc = Thread_unlock_mutex(amutex); + int rc = Paho_thread_unlock_mutex(amutex); if (rc != 0) MyLog(LOGA_INFO, "Error %s unlocking mutex", strerror(rc)); } @@ -365,7 +365,7 @@ int test1(struct Options options) opts.will = NULL; struct thread_parms parms = {&c}; - Thread_start(test1_destroy, (void*)&parms); + Paho_thread_start(test1_destroy, (void*)&parms); MQTTClient_connect(c, &opts); diff --git a/test/thread.c b/test/thread.c index d52023a0..4918f8a2 100644 --- a/test/thread.c +++ b/test/thread.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2020 IBM Corp. + * Copyright (c) 2009, 2023 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 @@ -305,7 +305,7 @@ int test_sem(struct Options options) assert("duration is 2s", duration >= 1500L, "duration was %ld", duration); MyLog(LOGA_DEBUG, "Starting secondary thread"); - Thread_start(sem_secondary, (void*)sem); + Paho_thread_start(sem_secondary, (void*)sem); mysleep(2); MyLog(LOGA_DEBUG, "post secondary"); @@ -397,7 +397,7 @@ int test_cond(struct Options options) assert("rc 0 from signal cond", rc == 0, "rc was %d", rc); MyLog(LOGA_DEBUG, "Starting secondary thread"); - Thread_start(cond_secondary, (void*)cond); + Paho_thread_start(cond_secondary, (void*)cond); MyLog(LOGA_DEBUG, "wait for secondary thread to enter second wait"); mysleep(2); @@ -428,13 +428,13 @@ static thread_return_type WINAPI mutex_secondary(void* n) /* this should take 2s, as there is another lock held */ start = start_clock(); - rc = Thread_lock_mutex(mutex); + rc = Paho_thread_lock_mutex(mutex); duration = elapsed(start); assert("rc 0 from lock mutex", rc == 0, "rc was %d", rc); MyLog(LOGA_INFO, "Lock duration was %ld", duration); assert("duration is 2s", duration >= 1000L, "duration was %ld", duration); - rc = Thread_unlock_mutex(mutex); + rc = Paho_thread_unlock_mutex(mutex); assert("rc 0 from unlock mutex", rc == 0, "rc was %d", rc); MyLog(LOGA_DEBUG, "Secondary thread ending"); return 0; @@ -445,7 +445,7 @@ int test_mutex(struct Options options) { char* testname = "test_mutex"; int rc = 0; - mutex_type mutex = Thread_create_mutex(&rc); + mutex_type mutex = Paho_thread_create_mutex(&rc); START_TIME_TYPE start; long duration; @@ -455,27 +455,27 @@ int test_mutex(struct Options options) /* this should happen immediately, as there is no other lock held */ start = start_clock(); - rc = Thread_lock_mutex(mutex); + rc = Paho_thread_lock_mutex(mutex); duration = elapsed(start); assert("rc 0 from lock mutex", rc == 0, "rc was %d", rc); MyLog(LOGA_INFO, "Lock duration was %ld", duration); assert("duration is very low", duration < 5L, "duration was %ld", duration); MyLog(LOGA_DEBUG, "Starting secondary thread"); - Thread_start(mutex_secondary, (void*)mutex); + Paho_thread_start(mutex_secondary, (void*)mutex); mysleep(2); - rc = Thread_unlock_mutex(mutex); /* let background thread have it */ + rc = Paho_thread_unlock_mutex(mutex); /* let background thread have it */ assert("rc 0 from unlock mutex", rc == 0, "rc was %d", rc); start = start_clock(); - rc = Thread_lock_mutex(mutex); /* make sure background thread hasn't locked it */ + rc = Paho_thread_lock_mutex(mutex); /* make sure background thread hasn't locked it */ duration = elapsed(start); assert("rc 0 from lock mutex", rc == 0, "rc was %d", rc); MyLog(LOGA_INFO, "Lock duration was %ld", duration); assert("duration is very low", duration < 5L, "duration was %ld", duration); - Thread_destroy_mutex(mutex); + Paho_thread_destroy_mutex(mutex); MyLog(LOGA_DEBUG, "Main thread ending"); diff --git a/version.patch b/version.patch index 3cacc0b9..ca7bf83a 100644 --- a/version.patch +++ b/version.patch @@ -1 +1 @@ -12 \ No newline at end of file +13 \ No newline at end of file