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 31c0c3ef..98150559 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_async_8h.html +++ b/docs/MQTTAsync/html/_m_q_t_t_async_8h.html @@ -149,6 +149,8 @@ Macros   #define MQTTASYNC_0_LEN_WILL_TOPIC   -17   +#define MQTTASYNC_COMMAND_IGNORED   -18 +  #define MQTTVERSION_DEFAULT   0   #define MQTTVERSION_3_1   3 @@ -165,9 +167,9 @@ Macros   #define MQTTAsync_connectData_initializer   {{'M', 'Q', 'C', 'D'}, 0, NULL, {0, NULL}}   -#define MQTTAsync_failureData5_initializer   {{'M', 'Q', 'F', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer, 0, NULL} +#define MQTTAsync_failureData5_initializer   {{'M', 'Q', 'F', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer, 0, NULL, 0}   -#define MQTTAsync_successData5_initializer   {{'M', 'Q', 'S', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer} +#define MQTTAsync_successData5_initializer   {{'M', 'Q', 'S', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer, {.sub={0,0}}}   #define MQTTAsync_responseOptions_initializer   { {'M', 'Q', 'T', 'R'}, 1, NULL, NULL, 0, 0, NULL, NULL, MQTTProperties_initializer, MQTTSubscribe_options_initializer, 0, NULL}   @@ -589,6 +591,20 @@ Functions

Return code: 0 length will topic

+
+ + +

◆ MQTTASYNC_COMMAND_IGNORED

+ +
+
+ + + + +
#define MQTTASYNC_COMMAND_IGNORED   -18
+
+
@@ -715,7 +731,7 @@ Functions
- +
#define MQTTAsync_failureData5_initializer   {{'M', 'Q', 'F', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer, 0, NULL}#define MQTTAsync_failureData5_initializer   {{'M', 'Q', 'F', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer, 0, NULL, 0}
@@ -729,7 +745,7 @@ Functions
- +
#define MQTTAsync_successData5_initializer   {{'M', 'Q', 'S', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer}#define MQTTAsync_successData5_initializer   {{'M', 'Q', 'S', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer, {.sub={0,0}}}
@@ -2615,11 +2631,11 @@ Functions
MQTTREASONCODE_SUCCESS
@ MQTTREASONCODE_SUCCESS
Definition: MQTTReasonCodes.h:38
-
MQTTVERSION_5
#define MQTTVERSION_5
Definition: MQTTAsync.h:207
-
MQTTVERSION_DEFAULT
#define MQTTVERSION_DEFAULT
Definition: MQTTAsync.h:195
+
MQTTVERSION_5
#define MQTTVERSION_5
Definition: MQTTAsync.h:211
+
MQTTVERSION_DEFAULT
#define MQTTVERSION_DEFAULT
Definition: MQTTAsync.h:199
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 98a67de5..b26e4fe2 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 @@ -67,7 +67,7 @@ $(function() {
Go to the documentation of this file.
1 /*******************************************************************************
-
2  * Copyright (c) 2009, 2020 IBM Corp. and others
+
2  * Copyright (c) 2009, 2021 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
@@ -147,679 +147,684 @@ $(function() {
172 
177 #define MQTTASYNC_BAD_PROTOCOL -14
178 
-
181  #define MQTTASYNC_BAD_MQTT_OPTION -15
+
181 #define MQTTASYNC_BAD_MQTT_OPTION -15
182 
-
185  #define MQTTASYNC_WRONG_MQTT_VERSION -16
+
185 #define MQTTASYNC_WRONG_MQTT_VERSION -16
186 
-
189  #define MQTTASYNC_0_LEN_WILL_TOPIC -17
-
190 
-
191 
-
195 #define MQTTVERSION_DEFAULT 0
+
189 #define MQTTASYNC_0_LEN_WILL_TOPIC -17
+
190 /*
+
191  * Return code: connect or disconnect command ignored because there is already a connect or disconnect
+
192  * command at the head of the list waiting to be processed. Use the onSuccess/onFailure callbacks to wait
+
193  * for the previous connect or disconnect command to be complete.
+
194  */
+
195 #define MQTTASYNC_COMMAND_IGNORED -18
196 
-
199 #define MQTTVERSION_3_1 3
+
199 #define MQTTVERSION_DEFAULT 0
200 
-
203 #define MQTTVERSION_3_1_1 4
+
203 #define MQTTVERSION_3_1 3
204 
-
207 #define MQTTVERSION_5 5
+
207 #define MQTTVERSION_3_1_1 4
208 
-
211 #define MQTT_BAD_SUBSCRIBE 0x80
+
211 #define MQTTVERSION_5 5
212 
-
213 
-
217 typedef struct
-
218 {
-
220  char struct_id[4];
- - - -
226 
-
227 #define MQTTAsync_init_options_initializer { {'M', 'Q', 'T', 'G'}, 0, 0 }
-
228 
-
233 LIBMQTT_API void MQTTAsync_global_init(MQTTAsync_init_options* inits);
-
234 
-
239 typedef void* MQTTAsync;
-
249 typedef int MQTTAsync_token;
-
250 
-
257 typedef struct
-
258 {
-
260  char struct_id[4];
- - -
267  void* payload;
-
281  int qos;
-
300  int retained;
-
307  int dup;
-
313  int msgid;
- - -
319 
-
320 #define MQTTAsync_message_initializer { {'M', 'Q', 'T', 'M'}, 1, 0, NULL, 0, 0, 0, 0, MQTTProperties_initializer }
-
321 
-
355 typedef int MQTTAsync_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync_message* message);
-
356 
-
378 typedef void MQTTAsync_deliveryComplete(void* context, MQTTAsync_token token);
-
379 
-
398 typedef void MQTTAsync_connectionLost(void* context, char* cause);
-
399 
-
400 
-
416 typedef void MQTTAsync_connected(void* context, char* cause);
-
417 
-
430 typedef void MQTTAsync_disconnected(void* context, MQTTProperties* properties,
-
431  enum MQTTReasonCodes reasonCode);
-
432 
-
448 LIBMQTT_API int MQTTAsync_setDisconnected(MQTTAsync handle, void* context, MQTTAsync_disconnected* co);
-
449 
-
451 typedef struct
-
452 {
-
454  char struct_id[4];
- -
463  const char* username;
-
469  struct {
-
470  int len;
-
471  const void* data;
-
472  } binarypwd;
- -
474 
-
475 #define MQTTAsync_connectData_initializer {{'M', 'Q', 'C', 'D'}, 0, NULL, {0, NULL}}
-
476 
-
483 typedef int MQTTAsync_updateConnectOptions(void* context, MQTTAsync_connectData* data);
-
484 
-
494 LIBMQTT_API int MQTTAsync_setUpdateConnectOptions(MQTTAsync handle, void* context, MQTTAsync_updateConnectOptions* co);
-
495 
-
505 LIBMQTT_API int MQTTAsync_setBeforePersistenceWrite(MQTTAsync handle, void* context, MQTTPersistence_beforeWrite* co);
-
506 
-
507 
-
517 LIBMQTT_API int MQTTAsync_setAfterPersistenceRead(MQTTAsync handle, void* context, MQTTPersistence_afterRead* co);
-
518 
-
519 
-
521 typedef struct
-
522 {
- -
526  int code;
-
528  const char *message;
- -
530 
-
531 
-
533 typedef struct
-
534 {
-
536  char struct_id[4];
- - -
542  enum MQTTReasonCodes reasonCode;
- -
546  int code;
-
548  const char *message;
- - -
552 
-
553 #define MQTTAsync_failureData5_initializer {{'M', 'Q', 'F', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer, 0, NULL}
-
554 
-
556 typedef struct
-
557 {
- -
561  union
-
562  {
-
565  int qos;
-
568  int* qosList;
-
570  struct
-
571  {
- - -
574  } pub;
-
575  /* For connect, the server connected to, MQTT version used, and sessionPresent flag */
-
576  struct
-
577  {
-
578  char* serverURI;
- - -
581  } connect;
-
582  } alt;
- -
584 
-
585 
-
587 typedef struct
-
588 {
-
589  char struct_id[4];
- - -
593  enum MQTTReasonCodes reasonCode;
- -
596  union
-
597  {
-
599  struct
-
600  {
- - -
603  } sub;
-
605  struct
-
606  {
- - -
609  } pub;
-
610  /* For connect, the server connected to, MQTT version used, and sessionPresent flag */
-
611  struct
-
612  {
-
613  char* serverURI;
- - -
616  } connect;
-
618  struct
-
619  {
-
620  int reasonCodeCount;
-
621  enum MQTTReasonCodes* reasonCodes;
-
622  } unsub;
-
623  } alt;
- -
625 
-
626 #define MQTTAsync_successData5_initializer {{'M', 'Q', 'S', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer}
-
627 
-
641 typedef void MQTTAsync_onSuccess(void* context, MQTTAsync_successData* response);
-
642 
-
657 typedef void MQTTAsync_onSuccess5(void* context, MQTTAsync_successData5* response);
-
658 
-
672 typedef void MQTTAsync_onFailure(void* context, MQTTAsync_failureData* response);
-
673 
-
687 typedef void MQTTAsync_onFailure5(void* context, MQTTAsync_failureData5* response);
-
688 
- -
695 {
-
697  char struct_id[4];
- - - -
718  void* context;
- - - - -
741  /*
-
742  * MQTT V5 subscribe options, when used with subscribe only.
-
743  */
- +
215 #define MQTT_BAD_SUBSCRIBE 0x80
+
216 
+
217 
+
221 typedef struct
+
222 {
+
224  char struct_id[4];
+ + + +
230 
+
231 #define MQTTAsync_init_options_initializer { {'M', 'Q', 'T', 'G'}, 0, 0 }
+
232 
+
237 LIBMQTT_API void MQTTAsync_global_init(MQTTAsync_init_options* inits);
+
238 
+
243 typedef void* MQTTAsync;
+
253 typedef int MQTTAsync_token;
+
254 
+
261 typedef struct
+
262 {
+
264  char struct_id[4];
+ + +
271  void* payload;
+
285  int qos;
+
304  int retained;
+
311  int dup;
+
317  int msgid;
+ + +
323 
+
324 #define MQTTAsync_message_initializer { {'M', 'Q', 'T', 'M'}, 1, 0, NULL, 0, 0, 0, 0, MQTTProperties_initializer }
+
325 
+
359 typedef int MQTTAsync_messageArrived(void* context, char* topicName, int topicLen, MQTTAsync_message* message);
+
360 
+
382 typedef void MQTTAsync_deliveryComplete(void* context, MQTTAsync_token token);
+
383 
+
402 typedef void MQTTAsync_connectionLost(void* context, char* cause);
+
403 
+
404 
+
420 typedef void MQTTAsync_connected(void* context, char* cause);
+
421 
+
434 typedef void MQTTAsync_disconnected(void* context, MQTTProperties* properties,
+
435  enum MQTTReasonCodes reasonCode);
+
436 
+
452 LIBMQTT_API int MQTTAsync_setDisconnected(MQTTAsync handle, void* context, MQTTAsync_disconnected* co);
+
453 
+
455 typedef struct
+
456 {
+
458  char struct_id[4];
+ +
467  const char* username;
+
473  struct {
+
474  int len;
+
475  const void* data;
+
476  } binarypwd;
+ +
478 
+
479 #define MQTTAsync_connectData_initializer {{'M', 'Q', 'C', 'D'}, 0, NULL, {0, NULL}}
+
480 
+
487 typedef int MQTTAsync_updateConnectOptions(void* context, MQTTAsync_connectData* data);
+
488 
+
498 LIBMQTT_API int MQTTAsync_setUpdateConnectOptions(MQTTAsync handle, void* context, MQTTAsync_updateConnectOptions* co);
+
499 
+
509 LIBMQTT_API int MQTTAsync_setBeforePersistenceWrite(MQTTAsync handle, void* context, MQTTPersistence_beforeWrite* co);
+
510 
+
511 
+
521 LIBMQTT_API int MQTTAsync_setAfterPersistenceRead(MQTTAsync handle, void* context, MQTTPersistence_afterRead* co);
+
522 
+
523 
+
525 typedef struct
+
526 {
+ +
530  int code;
+
532  const char *message;
+ +
534 
+
535 
+
537 typedef struct
+
538 {
+
540  char struct_id[4];
+ + +
546  enum MQTTReasonCodes reasonCode;
+ +
550  int code;
+
552  const char *message;
+ + +
556 
+
557 #define MQTTAsync_failureData5_initializer {{'M', 'Q', 'F', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer, 0, NULL, 0}
+
558 
+
560 typedef struct
+
561 {
+ +
565  union
+
566  {
+
569  int qos;
+
572  int* qosList;
+
574  struct
+
575  {
+ + +
578  } pub;
+
579  /* For connect, the server connected to, MQTT version used, and sessionPresent flag */
+
580  struct
+
581  {
+
582  char* serverURI;
+ + +
585  } connect;
+
586  } alt;
+ +
588 
+
589 
+
591 typedef struct
+
592 {
+
593  char struct_id[4];
+ + +
597  enum MQTTReasonCodes reasonCode;
+ +
600  union
+
601  {
+
603  struct
+
604  {
+ + +
607  } sub;
+
609  struct
+
610  {
+ + +
613  } pub;
+
614  /* For connect, the server connected to, MQTT version used, and sessionPresent flag */
+
615  struct
+
616  {
+
617  char* serverURI;
+ + +
620  } connect;
+
622  struct
+
623  {
+
624  int reasonCodeCount;
+
625  enum MQTTReasonCodes* reasonCodes;
+
626  } unsub;
+
627  } alt;
+ +
629 
+
630 #define MQTTAsync_successData5_initializer {{'M', 'Q', 'S', 'D'}, 0, 0, MQTTREASONCODE_SUCCESS, MQTTProperties_initializer, {.sub={0,0}}}
+
631 
+
645 typedef void MQTTAsync_onSuccess(void* context, MQTTAsync_successData* response);
+
646 
+
661 typedef void MQTTAsync_onSuccess5(void* context, MQTTAsync_successData5* response);
+
662 
+
676 typedef void MQTTAsync_onFailure(void* context, MQTTAsync_failureData* response);
+
677 
+
691 typedef void MQTTAsync_onFailure5(void* context, MQTTAsync_failureData5* response);
+
692 
+ +
699 {
+
701  char struct_id[4];
+ + + +
722  void* context;
+ + + +
745  /*
-
746  * MQTT V5 subscribe option count, when used with subscribeMany only.
-
747  * The number of entries in the subscribe_options_list array.
-
748  */
- -
750  /*
-
751  * MQTT V5 subscribe option array, when used with subscribeMany only.
+
746  * MQTT V5 subscribe options, when used with subscribe only.
+
747  */
+ +
749  /*
+
750  * MQTT V5 subscribe option count, when used with subscribeMany only.
+
751  * The number of entries in the subscribe_options_list array.
752  */
- - -
755 
-
756 #define MQTTAsync_responseOptions_initializer { {'M', 'Q', 'T', 'R'}, 1, NULL, NULL, 0, 0, NULL, NULL, MQTTProperties_initializer, MQTTSubscribe_options_initializer, 0, NULL}
-
757 
- -
760 #define MQTTAsync_callOptions_initializer MQTTAsync_responseOptions_initializer
+ +
754  /*
+
755  * MQTT V5 subscribe option array, when used with subscribeMany only.
+
756  */
+ + +
759 
+
760 #define MQTTAsync_responseOptions_initializer { {'M', 'Q', 'T', 'R'}, 1, NULL, NULL, 0, 0, NULL, NULL, MQTTProperties_initializer, MQTTSubscribe_options_initializer, 0, NULL}
761 
-
791 LIBMQTT_API int MQTTAsync_setCallbacks(MQTTAsync handle, void* context, MQTTAsync_connectionLost* cl,
- -
793 
-
814 LIBMQTT_API int MQTTAsync_setConnectionLostCallback(MQTTAsync handle, void* context,
- -
816 
-
838 LIBMQTT_API int MQTTAsync_setMessageArrivedCallback(MQTTAsync handle, void* context,
- -
840 
-
860 LIBMQTT_API int MQTTAsync_setDeliveryCompleteCallback(MQTTAsync handle, void* context,
- -
862 
-
875 LIBMQTT_API int MQTTAsync_setConnected(MQTTAsync handle, void* context, MQTTAsync_connected* co);
-
876 
-
877 
-
886 LIBMQTT_API int MQTTAsync_reconnect(MQTTAsync handle);
-
887 
-
888 
-
933 LIBMQTT_API int MQTTAsync_create(MQTTAsync* handle, const char* serverURI, const char* clientId,
-
934  int persistence_type, void* persistence_context);
-
935 
-
937 typedef struct
-
938 {
-
940  char struct_id[4];
- - - - - -
961  /*
-
962  * When the maximum number of buffered messages is reached, delete the oldest rather than the newest.
-
963  */
- + +
764 #define MQTTAsync_callOptions_initializer MQTTAsync_responseOptions_initializer
+
765 
+
795 LIBMQTT_API int MQTTAsync_setCallbacks(MQTTAsync handle, void* context, MQTTAsync_connectionLost* cl,
+ +
797 
+
818 LIBMQTT_API int MQTTAsync_setConnectionLostCallback(MQTTAsync handle, void* context,
+ +
820 
+
842 LIBMQTT_API int MQTTAsync_setMessageArrivedCallback(MQTTAsync handle, void* context,
+ +
844 
+
864 LIBMQTT_API int MQTTAsync_setDeliveryCompleteCallback(MQTTAsync handle, void* context,
+ +
866 
+
879 LIBMQTT_API int MQTTAsync_setConnected(MQTTAsync handle, void* context, MQTTAsync_connected* co);
+
880 
+
881 
+
890 LIBMQTT_API int MQTTAsync_reconnect(MQTTAsync handle);
+
891 
+
892 
+
937 LIBMQTT_API int MQTTAsync_create(MQTTAsync* handle, const char* serverURI, const char* clientId,
+
938  int persistence_type, void* persistence_context);
+
939 
+
941 typedef struct
+
942 {
+
944  char struct_id[4];
+ + + + +
965  /*
-
966  * Restore messages from persistence on create - or clear it.
+
966  * When the maximum number of buffered messages is reached, delete the oldest rather than the newest.
967  */
- +
969  /*
-
970  * Persist QoS0 publish commands - an option to not persist them.
+
970  * Restore messages from persistence on create - or clear it.
971  */
- - -
974 
-
975 #define MQTTAsync_createOptions_initializer { {'M', 'Q', 'C', 'O'}, 2, 0, 100, MQTTVERSION_DEFAULT, 0, 0, 1, 1}
-
976 
-
977 #define MQTTAsync_createOptions_initializer5 { {'M', 'Q', 'C', 'O'}, 2, 0, 100, MQTTVERSION_5, 0, 0, 1, 1}
+ +
973  /*
+
974  * Persist QoS0 publish commands - an option to not persist them.
+
975  */
+ +
978 
-
979 
-
980 LIBMQTT_API int MQTTAsync_createWithOptions(MQTTAsync* handle, const char* serverURI, const char* clientId,
-
981  int persistence_type, void* persistence_context, MQTTAsync_createOptions* options);
+
979 #define MQTTAsync_createOptions_initializer { {'M', 'Q', 'C', 'O'}, 2, 0, 100, MQTTVERSION_DEFAULT, 0, 0, 1, 1}
+
980 
+
981 #define MQTTAsync_createOptions_initializer5 { {'M', 'Q', 'C', 'O'}, 2, 0, 100, MQTTVERSION_5, 0, 0, 1, 1}
982 
-
995 typedef struct
-
996 {
-
998  char struct_id[4];
- -
1004  const char* topicName;
-
1006  const char* message;
- -
1015  int qos;
-
1017  struct
-
1018  {
-
1019  int len;
-
1020  const void* data;
-
1021  } payload;
- -
1023 
-
1024 #define MQTTAsync_willOptions_initializer { {'M', 'Q', 'T', 'W'}, 1, NULL, NULL, 0, 0, { 0, NULL } }
-
1025 
-
1026 #define MQTT_SSL_VERSION_DEFAULT 0
-
1027 #define MQTT_SSL_VERSION_TLS_1_0 1
-
1028 #define MQTT_SSL_VERSION_TLS_1_1 2
-
1029 #define MQTT_SSL_VERSION_TLS_1_2 3
-
1030 
-
1043 typedef struct
-
1044 {
-
1046  char struct_id[4];
-
1047 
- -
1056 
-
1058  const char* trustStore;
-
1059 
-
1063  const char* keyStore;
-
1064 
-
1068  const char* privateKey;
-
1069 
-
1071  const char* privateKeyPassword;
-
1072 
-
1081  const char* enabledCipherSuites;
-
1082 
- -
1085 
- -
1091 
-
1097  int verify;
-
1098 
-
1104  const char* CApath;
-
1105 
-
1110  int (*ssl_error_cb) (const char *str, size_t len, void *u);
-
1111 
- -
1117 
-
1123  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);
-
1124 
- -
1130 
- -
1137 
-
1145  const unsigned char *protos;
-
1146 
-
1151  unsigned int protos_len;
- -
1153 
-
1154 #define MQTTAsync_SSLOptions_initializer { {'M', 'Q', 'T', 'S'}, 5, NULL, NULL, NULL, NULL, NULL, 1, MQTT_SSL_VERSION_DEFAULT, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0 }
-
1155 
-
1157 typedef struct
-
1158 {
-
1159  const char* name;
-
1160  const char* value;
- -
1162 
-
1168 typedef struct
-
1169 {
-
1171  char struct_id[4];
- - - - - -
1231  const char* username;
-
1237  const char* password;
- - - - - -
1272  void* context;
- -
1288  char* const* serverURIs;
- - - - -
1311  struct {
-
1312  int len;
-
1313  const void* data;
-
1314  } binarypwd;
-
1315  /*
-
1316  * MQTT V5 clean start flag. Only clears state at the beginning of the session.
-
1317  */
- - - - - - -
1346  const char* httpProxy;
-
1350  const char* httpsProxy;
- -
1352 
-
1353 
-
1354 #define MQTTAsync_connectOptions_initializer { {'M', 'Q', 'T', 'C'}, 8, 60, 1, 65535, NULL, NULL, NULL, 30, 0,\
-
1355 NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_DEFAULT, 0, 1, 60, {0, NULL}, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
+
983 
+
984 LIBMQTT_API int MQTTAsync_createWithOptions(MQTTAsync* handle, const char* serverURI, const char* clientId,
+
985  int persistence_type, void* persistence_context, MQTTAsync_createOptions* options);
+
986 
+
999 typedef struct
+
1000 {
+
1002  char struct_id[4];
+ +
1008  const char* topicName;
+
1010  const char* message;
+ +
1019  int qos;
+
1021  struct
+
1022  {
+
1023  int len;
+
1024  const void* data;
+
1025  } payload;
+ +
1027 
+
1028 #define MQTTAsync_willOptions_initializer { {'M', 'Q', 'T', 'W'}, 1, NULL, NULL, 0, 0, { 0, NULL } }
+
1029 
+
1030 #define MQTT_SSL_VERSION_DEFAULT 0
+
1031 #define MQTT_SSL_VERSION_TLS_1_0 1
+
1032 #define MQTT_SSL_VERSION_TLS_1_1 2
+
1033 #define MQTT_SSL_VERSION_TLS_1_2 3
+
1034 
+
1047 typedef struct
+
1048 {
+
1050  char struct_id[4];
+
1051 
+ +
1060 
+
1062  const char* trustStore;
+
1063 
+
1067  const char* keyStore;
+
1068 
+
1072  const char* privateKey;
+
1073 
+
1075  const char* privateKeyPassword;
+
1076 
+
1085  const char* enabledCipherSuites;
+
1086 
+ +
1089 
+ +
1095 
+
1101  int verify;
+
1102 
+
1108  const char* CApath;
+
1109 
+
1114  int (*ssl_error_cb) (const char *str, size_t len, void *u);
+
1115 
+ +
1121 
+
1127  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);
+
1128 
+ +
1134 
+ +
1141 
+
1149  const unsigned char *protos;
+
1150 
+
1155  unsigned int protos_len;
+ +
1157 
+
1158 #define MQTTAsync_SSLOptions_initializer { {'M', 'Q', 'T', 'S'}, 5, NULL, NULL, NULL, NULL, NULL, 1, MQTT_SSL_VERSION_DEFAULT, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0 }
+
1159 
+
1161 typedef struct
+
1162 {
+
1163  const char* name;
+
1164  const char* value;
+ +
1166 
+
1172 typedef struct
+
1173 {
+
1175  char struct_id[4];
+ + + + + +
1235  const char* username;
+
1241  const char* password;
+ + + + + +
1276  void* context;
+ +
1292  char* const* serverURIs;
+ + + + +
1315  struct {
+
1316  int len;
+
1317  const void* data;
+
1318  } binarypwd;
+
1319  /*
+
1320  * MQTT V5 clean start flag. Only clears state at the beginning of the session.
+
1321  */
+ + + + + + +
1350  const char* httpProxy;
+
1354  const char* httpsProxy;
+
1356 
-
1357 #define MQTTAsync_connectOptions_initializer5 { {'M', 'Q', 'T', 'C'}, 8, 60, 0, 65535, NULL, NULL, NULL, 30, 0,\
-
1358 NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_5, 0, 1, 60, {0, NULL}, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
-
1359 
-
1360 #define MQTTAsync_connectOptions_initializer_ws { {'M', 'Q', 'T', 'C'}, 8, 45, 1, 65535, NULL, NULL, NULL, 30, 0,\
-
1361 NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_DEFAULT, 0, 1, 60, {0, NULL}, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
-
1362 
-
1363 #define MQTTAsync_connectOptions_initializer5_ws { {'M', 'Q', 'T', 'C'}, 8, 45, 0, 65535, NULL, NULL, NULL, 30, 0,\
-
1364 NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_5, 0, 1, 60, {0, NULL}, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
-
1365 
+
1357 
+
1358 #define MQTTAsync_connectOptions_initializer { {'M', 'Q', 'T', 'C'}, 8, 60, 1, 65535, NULL, NULL, NULL, 30, 0,\
+
1359 NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_DEFAULT, 0, 1, 60, {0, NULL}, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
+
1360 
+
1361 #define MQTTAsync_connectOptions_initializer5 { {'M', 'Q', 'T', 'C'}, 8, 60, 0, 65535, NULL, NULL, NULL, 30, 0,\
+
1362 NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_5, 0, 1, 60, {0, NULL}, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
+
1363 
+
1364 #define MQTTAsync_connectOptions_initializer_ws { {'M', 'Q', 'T', 'C'}, 8, 45, 1, 65535, NULL, NULL, NULL, 30, 0,\
+
1365 NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_DEFAULT, 0, 1, 60, {0, NULL}, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
1366 
-
1387 LIBMQTT_API int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions* options);
-
1388 
-
1390 typedef struct
-
1391 {
-
1393  char struct_id[4];
- -
1400  int timeout;
- - -
1418  void* context;
- -
1426  enum MQTTReasonCodes reasonCode;
- - - -
1440 
-
1441 #define MQTTAsync_disconnectOptions_initializer { {'M', 'Q', 'T', 'D'}, 0, 0, NULL, NULL, NULL,\
-
1442  MQTTProperties_initializer, MQTTREASONCODE_SUCCESS, NULL, NULL }
-
1443 
-
1444 #define MQTTAsync_disconnectOptions_initializer5 { {'M', 'Q', 'T', 'D'}, 1, 0, NULL, NULL, NULL,\
-
1445  MQTTProperties_initializer, MQTTREASONCODE_SUCCESS, NULL, NULL }
-
1446 
-
1465 LIBMQTT_API int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions* options);
-
1466 
-
1467 
-
1475 LIBMQTT_API int MQTTAsync_isConnected(MQTTAsync handle);
-
1476 
-
1477 
-
1492 LIBMQTT_API int MQTTAsync_subscribe(MQTTAsync handle, const char* topic, int qos, MQTTAsync_responseOptions* response);
-
1493 
-
1494 
-
1512 LIBMQTT_API int MQTTAsync_subscribeMany(MQTTAsync handle, int count, char* const* topic, const int* qos, MQTTAsync_responseOptions* response);
-
1513 
-
1526 LIBMQTT_API int MQTTAsync_unsubscribe(MQTTAsync handle, const char* topic, MQTTAsync_responseOptions* response);
-
1527 
-
1540 LIBMQTT_API int MQTTAsync_unsubscribeMany(MQTTAsync handle, int count, char* const* topic, MQTTAsync_responseOptions* response);
-
1541 
-
1542 
-
1562 LIBMQTT_API int MQTTAsync_send(MQTTAsync handle, const char* destinationName, int payloadlen, const void* payload, int qos,
-
1563  int retained, MQTTAsync_responseOptions* response);
-
1564 
-
1581 LIBMQTT_API int MQTTAsync_sendMessage(MQTTAsync handle, const char* destinationName, const MQTTAsync_message* msg, MQTTAsync_responseOptions* response);
-
1582 
-
1583 
-
1602 LIBMQTT_API int MQTTAsync_getPendingTokens(MQTTAsync handle, MQTTAsync_token **tokens);
-
1603 
-
1612 #define MQTTASYNC_TRUE 1
-
1613 LIBMQTT_API int MQTTAsync_isComplete(MQTTAsync handle, MQTTAsync_token token);
-
1614 
-
1615 
-
1628 LIBMQTT_API int MQTTAsync_waitForCompletion(MQTTAsync handle, MQTTAsync_token token, unsigned long timeout);
-
1629 
-
1630 
-
1641 LIBMQTT_API void MQTTAsync_freeMessage(MQTTAsync_message** msg);
-
1642 
-
1651 LIBMQTT_API void MQTTAsync_free(void* ptr);
-
1652 
-
1660 LIBMQTT_API void* MQTTAsync_malloc(size_t size);
-
1661 
-
1669 LIBMQTT_API void MQTTAsync_destroy(MQTTAsync* handle);
-
1670 
-
1671 
-
1672 
- -
1674 {
- - - - - - - -
1682 };
-
1683 
-
1684 
-
1690 LIBMQTT_API void MQTTAsync_setTraceLevel(enum MQTTASYNC_TRACE_LEVELS level);
-
1691 
-
1692 
-
1701 typedef void MQTTAsync_traceCallback(enum MQTTASYNC_TRACE_LEVELS level, char* message);
-
1702 
-
1709 LIBMQTT_API void MQTTAsync_setTraceCallback(MQTTAsync_traceCallback* callback);
-
1710 
- -
1718 
-
1725 LIBMQTT_API const char* MQTTAsync_strerror(int code);
-
1726 
-
1727 
-
2341 #if defined(__cplusplus)
-
2342  }
-
2343 #endif
-
2344 
-
2345 #endif
+
1367 #define MQTTAsync_connectOptions_initializer5_ws { {'M', 'Q', 'T', 'C'}, 8, 45, 0, 65535, NULL, NULL, NULL, 30, 0,\
+
1368 NULL, NULL, NULL, NULL, 0, NULL, MQTTVERSION_5, 0, 1, 60, {0, NULL}, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
+
1369 
+
1370 
+
1391 LIBMQTT_API int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions* options);
+
1392 
+
1394 typedef struct
+
1395 {
+
1397  char struct_id[4];
+ +
1404  int timeout;
+ + +
1422  void* context;
+ +
1430  enum MQTTReasonCodes reasonCode;
+ + + +
1444 
+
1445 #define MQTTAsync_disconnectOptions_initializer { {'M', 'Q', 'T', 'D'}, 0, 0, NULL, NULL, NULL,\
+
1446  MQTTProperties_initializer, MQTTREASONCODE_SUCCESS, NULL, NULL }
+
1447 
+
1448 #define MQTTAsync_disconnectOptions_initializer5 { {'M', 'Q', 'T', 'D'}, 1, 0, NULL, NULL, NULL,\
+
1449  MQTTProperties_initializer, MQTTREASONCODE_SUCCESS, NULL, NULL }
+
1450 
+
1469 LIBMQTT_API int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions* options);
+
1470 
+
1471 
+
1479 LIBMQTT_API int MQTTAsync_isConnected(MQTTAsync handle);
+
1480 
+
1481 
+
1496 LIBMQTT_API int MQTTAsync_subscribe(MQTTAsync handle, const char* topic, int qos, MQTTAsync_responseOptions* response);
+
1497 
+
1498 
+
1516 LIBMQTT_API int MQTTAsync_subscribeMany(MQTTAsync handle, int count, char* const* topic, const int* qos, MQTTAsync_responseOptions* response);
+
1517 
+
1530 LIBMQTT_API int MQTTAsync_unsubscribe(MQTTAsync handle, const char* topic, MQTTAsync_responseOptions* response);
+
1531 
+
1544 LIBMQTT_API int MQTTAsync_unsubscribeMany(MQTTAsync handle, int count, char* const* topic, MQTTAsync_responseOptions* response);
+
1545 
+
1546 
+
1566 LIBMQTT_API int MQTTAsync_send(MQTTAsync handle, const char* destinationName, int payloadlen, const void* payload, int qos,
+
1567  int retained, MQTTAsync_responseOptions* response);
+
1568 
+
1585 LIBMQTT_API int MQTTAsync_sendMessage(MQTTAsync handle, const char* destinationName, const MQTTAsync_message* msg, MQTTAsync_responseOptions* response);
+
1586 
+
1587 
+
1606 LIBMQTT_API int MQTTAsync_getPendingTokens(MQTTAsync handle, MQTTAsync_token **tokens);
+
1607 
+
1616 #define MQTTASYNC_TRUE 1
+
1617 LIBMQTT_API int MQTTAsync_isComplete(MQTTAsync handle, MQTTAsync_token token);
+
1618 
+
1619 
+
1632 LIBMQTT_API int MQTTAsync_waitForCompletion(MQTTAsync handle, MQTTAsync_token token, unsigned long timeout);
+
1633 
+
1634 
+
1645 LIBMQTT_API void MQTTAsync_freeMessage(MQTTAsync_message** msg);
+
1646 
+
1655 LIBMQTT_API void MQTTAsync_free(void* ptr);
+
1656 
+
1664 LIBMQTT_API void* MQTTAsync_malloc(size_t size);
+
1665 
+
1673 LIBMQTT_API void MQTTAsync_destroy(MQTTAsync* handle);
+
1674 
+
1675 
+
1676 
+ +
1678 {
+ + + + + + + +
1686 };
+
1687 
+
1688 
+
1694 LIBMQTT_API void MQTTAsync_setTraceLevel(enum MQTTASYNC_TRACE_LEVELS level);
+
1695 
+
1696 
+
1705 typedef void MQTTAsync_traceCallback(enum MQTTASYNC_TRACE_LEVELS level, char* message);
+
1706 
+
1713 LIBMQTT_API void MQTTAsync_setTraceCallback(MQTTAsync_traceCallback* callback);
+
1714 
+ +
1722 
+
1729 LIBMQTT_API const char* MQTTAsync_strerror(int code);
+
1730 
+
1731 
+
2345 #if defined(__cplusplus)
+
2346  }
+
2347 #endif
+
2348 
+
2349 #endif
MQTTAsync_isConnected
int MQTTAsync_isConnected(MQTTAsync handle)
-
MQTTAsync_SSLOptions::protos_len
unsigned int protos_len
Definition: MQTTAsync.h:1151
+
MQTTAsync_SSLOptions::protos_len
unsigned int protos_len
Definition: MQTTAsync.h:1155
MQTTAsync_waitForCompletion
int MQTTAsync_waitForCompletion(MQTTAsync handle, MQTTAsync_token token, unsigned long timeout)
-
MQTTAsync_successData::qosList
int * qosList
Definition: MQTTAsync.h:568
-
MQTTAsync_connectOptions::httpHeaders
const MQTTAsync_nameValue * httpHeaders
Definition: MQTTAsync.h:1342
-
MQTTAsync_responseOptions::context
void * context
Definition: MQTTAsync.h:718
+
MQTTAsync_successData::qosList
int * qosList
Definition: MQTTAsync.h:572
+
MQTTAsync_connectOptions::httpHeaders
const MQTTAsync_nameValue * httpHeaders
Definition: MQTTAsync.h:1346
+
MQTTAsync_responseOptions::context
void * context
Definition: MQTTAsync.h:722
MQTTProperties.h
-
MQTTAsync_successData5::sessionPresent
int sessionPresent
Definition: MQTTAsync.h:615
-
MQTTAsync_token
int MQTTAsync_token
Definition: MQTTAsync.h:249
-
MQTTAsync_successData::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:579
-
MQTTAsync_createOptions::allowDisconnectedSendAtAnyTime
int allowDisconnectedSendAtAnyTime
Definition: MQTTAsync.h:960
-
MQTTAsync_createOptions::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:956
+
MQTTAsync_successData5::sessionPresent
int sessionPresent
Definition: MQTTAsync.h:619
+
MQTTAsync_token
int MQTTAsync_token
Definition: MQTTAsync.h:253
+
MQTTAsync_successData::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:583
+
MQTTAsync_createOptions::allowDisconnectedSendAtAnyTime
int allowDisconnectedSendAtAnyTime
Definition: MQTTAsync.h:964
+
MQTTAsync_createOptions::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:960
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:946
+
MQTTAsync_createOptions::struct_version
int struct_version
Definition: MQTTAsync.h:950
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:239
-
MQTTAsync_connectOptions::httpProxy
const char * httpProxy
Definition: MQTTAsync.h:1346
-
MQTTAsync_connectOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1182
-
MQTTAsync_successData::serverURI
char * serverURI
Definition: MQTTAsync.h:578
-
MQTTAsync_successData::sessionPresent
int sessionPresent
Definition: MQTTAsync.h:580
-
MQTTAsync_init_options::do_openssl_init
int do_openssl_init
Definition: MQTTAsync.h:224
+
MQTTAsync
void * MQTTAsync
Definition: MQTTAsync.h:243
+
MQTTAsync_connectOptions::httpProxy
const char * httpProxy
Definition: MQTTAsync.h:1350
+
MQTTAsync_connectOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1186
+
MQTTAsync_successData::serverURI
char * serverURI
Definition: MQTTAsync.h:582
+
MQTTAsync_successData::sessionPresent
int sessionPresent
Definition: MQTTAsync.h:584
+
MQTTAsync_init_options::do_openssl_init
int do_openssl_init
Definition: MQTTAsync.h:228
MQTTAsync_setTraceCallback
void MQTTAsync_setTraceCallback(MQTTAsync_traceCallback *callback)
MQTTAsync_setMessageArrivedCallback
int MQTTAsync_setMessageArrivedCallback(MQTTAsync handle, void *context, MQTTAsync_messageArrived *ma)
-
MQTTAsync_successData5
Definition: MQTTAsync.h:587
-
MQTTAsync_deliveryComplete
void MQTTAsync_deliveryComplete(void *context, MQTTAsync_token token)
Definition: MQTTAsync.h:378
+
MQTTAsync_successData5
Definition: MQTTAsync.h:591
+
MQTTAsync_deliveryComplete
void MQTTAsync_deliveryComplete(void *context, MQTTAsync_token token)
Definition: MQTTAsync.h:382
MQTTAsync_isComplete
int MQTTAsync_isComplete(MQTTAsync handle, MQTTAsync_token token)
-
MQTTAsync_connectOptions::cleanstart
int cleanstart
Definition: MQTTAsync.h:1318
-
MQTTAsync_successData5::token
MQTTAsync_token token
Definition: MQTTAsync.h:592
-
MQTTAsync_message::retained
int retained
Definition: MQTTAsync.h:300
-
MQTTAsync_failureData5
Definition: MQTTAsync.h:533
-
MQTTAsync_failureData::message
const char * message
Definition: MQTTAsync.h:528
-
MQTTAsync_SSLOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1055
+
MQTTAsync_connectOptions::cleanstart
int cleanstart
Definition: MQTTAsync.h:1322
+
MQTTAsync_successData5::token
MQTTAsync_token token
Definition: MQTTAsync.h:596
+
MQTTAsync_message::retained
int retained
Definition: MQTTAsync.h:304
+
MQTTAsync_failureData5
Definition: MQTTAsync.h:537
+
MQTTAsync_failureData::message
const char * message
Definition: MQTTAsync.h:532
+
MQTTAsync_SSLOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1059
MQTTProperties
Definition: MQTTProperties.h:112
-
MQTTAsync_SSLOptions::trustStore
const char * trustStore
Definition: MQTTAsync.h:1058
-
MQTTAsync_responseOptions::properties
MQTTProperties properties
Definition: MQTTAsync.h:740
-
MQTTAsync_connectOptions::automaticReconnect
int automaticReconnect
Definition: MQTTAsync.h:1299
-
MQTTAsync_SSLOptions::privateKey
const char * privateKey
Definition: MQTTAsync.h:1068
-
MQTTAsync_successData5::struct_version
int struct_version
Definition: MQTTAsync.h:590
-
MQTTAsync_message::msgid
int msgid
Definition: MQTTAsync.h:313
-
MQTTAsync_failureData5::code
int code
Definition: MQTTAsync.h:546
-
MQTTAsync_connectOptions::serverURIs
char *const * serverURIs
Definition: MQTTAsync.h:1288
-
MQTTAsync_responseOptions::struct_id
char struct_id[4]
Definition: MQTTAsync.h:697
-
MQTTAsync_failureData5::packet_type
int packet_type
Definition: MQTTAsync.h:550
-
MQTTAsync_disconnectOptions::properties
MQTTProperties properties
Definition: MQTTAsync.h:1422
+
MQTTAsync_SSLOptions::trustStore
const char * trustStore
Definition: MQTTAsync.h:1062
+
MQTTAsync_responseOptions::properties
MQTTProperties properties
Definition: MQTTAsync.h:744
+
MQTTAsync_connectOptions::automaticReconnect
int automaticReconnect
Definition: MQTTAsync.h:1303
+
MQTTAsync_SSLOptions::privateKey
const char * privateKey
Definition: MQTTAsync.h:1072
+
MQTTAsync_successData5::struct_version
int struct_version
Definition: MQTTAsync.h:594
+
MQTTAsync_message::msgid
int msgid
Definition: MQTTAsync.h:317
+
MQTTAsync_failureData5::code
int code
Definition: MQTTAsync.h:550
+
MQTTAsync_connectOptions::serverURIs
char *const * serverURIs
Definition: MQTTAsync.h:1292
+
MQTTAsync_responseOptions::struct_id
char struct_id[4]
Definition: MQTTAsync.h:701
+
MQTTAsync_failureData5::packet_type
int packet_type
Definition: MQTTAsync.h:554
+
MQTTAsync_disconnectOptions::properties
MQTTProperties properties
Definition: MQTTAsync.h:1426
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:1225
-
MQTTAsync_SSLOptions::CApath
const char * CApath
Definition: MQTTAsync.h:1104
-
MQTTAsync_failureData::token
MQTTAsync_token token
Definition: MQTTAsync.h:524
+
MQTTAsync_connectOptions::will
MQTTAsync_willOptions * will
Definition: MQTTAsync.h:1229
+
MQTTAsync_SSLOptions::CApath
const char * CApath
Definition: MQTTAsync.h:1108
+
MQTTAsync_failureData::token
MQTTAsync_token token
Definition: MQTTAsync.h:528
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:1043
+
MQTTAsync_SSLOptions
Definition: MQTTAsync.h:1047
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:1680
+
MQTTASYNC_TRACE_SEVERE
@ MQTTASYNC_TRACE_SEVERE
Definition: MQTTAsync.h:1684
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:1326
-
MQTTAsync_connectOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1332
-
MQTTAsync_message::payloadlen
int payloadlen
Definition: MQTTAsync.h:265
-
MQTTAsync_SSLOptions::sslVersion
int sslVersion
Definition: MQTTAsync.h:1090
-
MQTTAsync_successData5::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:614
-
MQTTAsync_connectData::username
const char * username
Definition: MQTTAsync.h:463
-
MQTTAsync_SSLOptions::keyStore
const char * keyStore
Definition: MQTTAsync.h:1063
+
MQTTAsync_connectOptions::willProperties
MQTTProperties * willProperties
Definition: MQTTAsync.h:1330
+
MQTTAsync_connectOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1336
+
MQTTAsync_message::payloadlen
int payloadlen
Definition: MQTTAsync.h:269
+
MQTTAsync_SSLOptions::sslVersion
int sslVersion
Definition: MQTTAsync.h:1094
+
MQTTAsync_successData5::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:618
+
MQTTAsync_connectData::username
const char * username
Definition: MQTTAsync.h:467
+
MQTTAsync_SSLOptions::keyStore
const char * keyStore
Definition: MQTTAsync.h:1067
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:1276
-
MQTTAsync_disconnectOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1438
-
MQTTAsync_connectData::len
int len
Definition: MQTTAsync.h:470
-
MQTTAsync_successData5::message
MQTTAsync_message message
Definition: MQTTAsync.h:607
-
MQTTAsync_connectOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1338
-
MQTTAsync_connectOptions::connectTimeout
int connectTimeout
Definition: MQTTAsync.h:1241
-
MQTTAsync_failureData5::token
MQTTAsync_token token
Definition: MQTTAsync.h:540
+
MQTTAsync_connectOptions::serverURIcount
int serverURIcount
Definition: MQTTAsync.h:1280
+
MQTTAsync_disconnectOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1442
+
MQTTAsync_connectData::len
int len
Definition: MQTTAsync.h:474
+
MQTTAsync_successData5::message
MQTTAsync_message message
Definition: MQTTAsync.h:611
+
MQTTAsync_connectOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1342
+
MQTTAsync_connectOptions::connectTimeout
int connectTimeout
Definition: MQTTAsync.h:1245
+
MQTTAsync_failureData5::token
MQTTAsync_token token
Definition: MQTTAsync.h:544
MQTTAsync_setTraceLevel
void MQTTAsync_setTraceLevel(enum MQTTASYNC_TRACE_LEVELS level)
-
MQTTAsync_connectOptions::httpsProxy
const char * httpsProxy
Definition: MQTTAsync.h:1350
-
MQTTAsync_connectOptions::connectProperties
MQTTProperties * connectProperties
Definition: MQTTAsync.h:1322
-
MQTTAsync_connectOptions::maxRetryInterval
int maxRetryInterval
Definition: MQTTAsync.h:1307
-
MQTTAsync_successData
Definition: MQTTAsync.h:556
+
MQTTAsync_connectOptions::httpsProxy
const char * httpsProxy
Definition: MQTTAsync.h:1354
+
MQTTAsync_connectOptions::connectProperties
MQTTProperties * connectProperties
Definition: MQTTAsync.h:1326
+
MQTTAsync_connectOptions::maxRetryInterval
int maxRetryInterval
Definition: MQTTAsync.h:1311
+
MQTTAsync_successData
Definition: MQTTAsync.h:560
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:1406
-
MQTTASYNC_TRACE_FATAL
@ MQTTASYNC_TRACE_FATAL
Definition: MQTTAsync.h:1681
+
MQTTAsync_disconnectOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:1410
+
MQTTASYNC_TRACE_FATAL
@ MQTTASYNC_TRACE_FATAL
Definition: MQTTAsync.h:1685
MQTTSubscribeOpts.h
-
MQTTAsync_onFailure
void MQTTAsync_onFailure(void *context, MQTTAsync_failureData *response)
Definition: MQTTAsync.h:672
-
MQTTAsync_responseOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:736
+
MQTTAsync_onFailure
void MQTTAsync_onFailure(void *context, MQTTAsync_failureData *response)
Definition: MQTTAsync.h:676
+
MQTTAsync_responseOptions::onFailure5
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:740
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:1701
+
MQTTAsync_traceCallback
void MQTTAsync_traceCallback(enum MQTTASYNC_TRACE_LEVELS level, char *message)
Definition: MQTTAsync.h:1705
MQTTAsync_getPendingTokens
int MQTTAsync_getPendingTokens(MQTTAsync handle, MQTTAsync_token **tokens)
-
MQTTAsync_updateConnectOptions
int MQTTAsync_updateConnectOptions(void *context, MQTTAsync_connectData *data)
Definition: MQTTAsync.h:483
-
MQTTAsync_connectOptions::retryInterval
int retryInterval
Definition: MQTTAsync.h:1249
-
MQTTAsync_disconnectOptions::context
void * context
Definition: MQTTAsync.h:1418
-
MQTTAsync_successData::message
MQTTAsync_message message
Definition: MQTTAsync.h:572
-
MQTTAsync_connectOptions::minRetryInterval
int minRetryInterval
Definition: MQTTAsync.h:1303
-
MQTTAsync_failureData5::struct_version
int struct_version
Definition: MQTTAsync.h:538
-
MQTTAsync_responseOptions
Definition: MQTTAsync.h:694
-
MQTTAsync_connectData
Definition: MQTTAsync.h:451
-
MQTTAsync_SSLOptions::ssl_psk_context
void * ssl_psk_context
Definition: MQTTAsync.h:1129
-
MQTTAsync_successData5::properties
MQTTProperties properties
Definition: MQTTAsync.h:594
-
MQTTASYNC_TRACE_MAXIMUM
@ MQTTASYNC_TRACE_MAXIMUM
Definition: MQTTAsync.h:1675
+
MQTTAsync_updateConnectOptions
int MQTTAsync_updateConnectOptions(void *context, MQTTAsync_connectData *data)
Definition: MQTTAsync.h:487
+
MQTTAsync_connectOptions::retryInterval
int retryInterval
Definition: MQTTAsync.h:1253
+
MQTTAsync_disconnectOptions::context
void * context
Definition: MQTTAsync.h:1422
+
MQTTAsync_successData::message
MQTTAsync_message message
Definition: MQTTAsync.h:576
+
MQTTAsync_connectOptions::minRetryInterval
int minRetryInterval
Definition: MQTTAsync.h:1307
+
MQTTAsync_failureData5::struct_version
int struct_version
Definition: MQTTAsync.h:542
+
MQTTAsync_responseOptions
Definition: MQTTAsync.h:698
+
MQTTAsync_connectData
Definition: MQTTAsync.h:455
+
MQTTAsync_SSLOptions::ssl_psk_context
void * ssl_psk_context
Definition: MQTTAsync.h:1133
+
MQTTAsync_successData5::properties
MQTTProperties properties
Definition: MQTTAsync.h:598
+
MQTTASYNC_TRACE_MAXIMUM
@ MQTTASYNC_TRACE_MAXIMUM
Definition: MQTTAsync.h:1679
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:1004
-
MQTTAsync_connectionLost
void MQTTAsync_connectionLost(void *context, char *cause)
Definition: MQTTAsync.h:398
+
MQTTAsync_willOptions::topicName
const char * topicName
Definition: MQTTAsync.h:1008
+
MQTTAsync_connectionLost
void MQTTAsync_connectionLost(void *context, char *cause)
Definition: MQTTAsync.h:402
MQTTAsync_global_init
void MQTTAsync_global_init(MQTTAsync_init_options *inits)
-
MQTTAsync_init_options
Definition: MQTTAsync.h:217
-
MQTTAsync_onFailure5
void MQTTAsync_onFailure5(void *context, MQTTAsync_failureData5 *response)
Definition: MQTTAsync.h:687
-
MQTTAsync_connectOptions::keepAliveInterval
int keepAliveInterval
Definition: MQTTAsync.h:1193
-
MQTTAsync_successData5::destinationName
char * destinationName
Definition: MQTTAsync.h:608
-
MQTTAsync_disconnectOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1432
-
MQTTAsync_SSLOptions::enabledCipherSuites
const char * enabledCipherSuites
Definition: MQTTAsync.h:1081
-
MQTTAsync_message::qos
int qos
Definition: MQTTAsync.h:281
+
MQTTAsync_init_options
Definition: MQTTAsync.h:221
+
MQTTAsync_onFailure5
void MQTTAsync_onFailure5(void *context, MQTTAsync_failureData5 *response)
Definition: MQTTAsync.h:691
+
MQTTAsync_connectOptions::keepAliveInterval
int keepAliveInterval
Definition: MQTTAsync.h:1197
+
MQTTAsync_successData5::destinationName
char * destinationName
Definition: MQTTAsync.h:612
+
MQTTAsync_disconnectOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1436
+
MQTTAsync_SSLOptions::enabledCipherSuites
const char * enabledCipherSuites
Definition: MQTTAsync.h:1085
+
MQTTAsync_message::qos
int qos
Definition: MQTTAsync.h:285
MQTTReasonCodes.h
-
MQTTAsync_disconnectOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1395
+
MQTTAsync_disconnectOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1399
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:430
-
MQTTAsync_messageArrived
int MQTTAsync_messageArrived(void *context, char *topicName, int topicLen, MQTTAsync_message *message)
Definition: MQTTAsync.h:355
-
MQTTAsync_willOptions
Definition: MQTTAsync.h:995
-
MQTTAsync_message::payload
void * payload
Definition: MQTTAsync.h:267
-
MQTTASYNC_TRACE_MINIMUM
@ MQTTASYNC_TRACE_MINIMUM
Definition: MQTTAsync.h:1677
-
MQTTAsync_responseOptions::token
MQTTAsync_token token
Definition: MQTTAsync.h:724
+
MQTTAsync_disconnected
void MQTTAsync_disconnected(void *context, MQTTProperties *properties, enum MQTTReasonCodes reasonCode)
Definition: MQTTAsync.h:434
+
MQTTAsync_messageArrived
int MQTTAsync_messageArrived(void *context, char *topicName, int topicLen, MQTTAsync_message *message)
Definition: MQTTAsync.h:359
+
MQTTAsync_willOptions
Definition: MQTTAsync.h:999
+
MQTTAsync_message::payload
void * payload
Definition: MQTTAsync.h:271
+
MQTTASYNC_TRACE_MINIMUM
@ MQTTASYNC_TRACE_MINIMUM
Definition: MQTTAsync.h:1681
+
MQTTAsync_responseOptions::token
MQTTAsync_token token
Definition: MQTTAsync.h:728
MQTTAsync_reconnect
int MQTTAsync_reconnect(MQTTAsync handle)
-
MQTTAsync_connectOptions::data
const void * data
Definition: MQTTAsync.h:1313
-
MQTTAsync_connectData::data
const void * data
Definition: MQTTAsync.h:471
-
MQTTASYNC_TRACE_LEVELS
MQTTASYNC_TRACE_LEVELS
Definition: MQTTAsync.h:1673
-
MQTTAsync_willOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1002
-
MQTTAsync_nameValue::name
const char * name
Definition: MQTTAsync.h:1159
+
MQTTAsync_connectOptions::data
const void * data
Definition: MQTTAsync.h:1317
+
MQTTAsync_connectData::data
const void * data
Definition: MQTTAsync.h:475
+
MQTTASYNC_TRACE_LEVELS
MQTTASYNC_TRACE_LEVELS
Definition: MQTTAsync.h:1677
+
MQTTAsync_willOptions::struct_version
int struct_version
Definition: MQTTAsync.h:1006
+
MQTTAsync_nameValue::name
const char * name
Definition: MQTTAsync.h:1163
MQTTAsync_setDeliveryCompleteCallback
int MQTTAsync_setDeliveryCompleteCallback(MQTTAsync handle, void *context, MQTTAsync_deliveryComplete *dc)
-
MQTTAsync_successData::destinationName
char * destinationName
Definition: MQTTAsync.h:573
+
MQTTAsync_successData::destinationName
char * destinationName
Definition: MQTTAsync.h:577
MQTTAsync_connect
int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
-
MQTTAsync_createOptions::sendWhileDisconnected
int sendWhileDisconnected
Definition: MQTTAsync.h:948
-
MQTTAsync_message
Definition: MQTTAsync.h:257
-
MQTTAsync_responseOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:712
-
MQTTAsync_connectOptions::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:1295
-
MQTTAsync_SSLOptions::protos
const unsigned char * protos
Definition: MQTTAsync.h:1145
-
MQTTAsync_connectData::struct_version
int struct_version
Definition: MQTTAsync.h:456
-
MQTTAsync_connectOptions::username
const char * username
Definition: MQTTAsync.h:1231
+
MQTTAsync_createOptions::sendWhileDisconnected
int sendWhileDisconnected
Definition: MQTTAsync.h:952
+
MQTTAsync_message
Definition: MQTTAsync.h:261
+
MQTTAsync_responseOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:716
+
MQTTAsync_connectOptions::MQTTVersion
int MQTTVersion
Definition: MQTTAsync.h:1299
+
MQTTAsync_SSLOptions::protos
const unsigned char * protos
Definition: MQTTAsync.h:1149
+
MQTTAsync_connectData::struct_version
int struct_version
Definition: MQTTAsync.h:460
+
MQTTAsync_connectOptions::username
const char * username
Definition: MQTTAsync.h:1235
MQTTAsync_free
void MQTTAsync_free(void *ptr)
-
MQTTAsync_connectOptions
Definition: MQTTAsync.h:1168
-
MQTTAsync_responseOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:730
-
MQTTAsync_failureData5::properties
MQTTProperties properties
Definition: MQTTAsync.h:544
-
MQTTASYNC_TRACE_PROTOCOL
@ MQTTASYNC_TRACE_PROTOCOL
Definition: MQTTAsync.h:1678
+
MQTTAsync_connectOptions
Definition: MQTTAsync.h:1172
+
MQTTAsync_responseOptions::onSuccess5
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:734
+
MQTTAsync_failureData5::properties
MQTTProperties properties
Definition: MQTTAsync.h:548
+
MQTTASYNC_TRACE_PROTOCOL
@ MQTTASYNC_TRACE_PROTOCOL
Definition: MQTTAsync.h:1682
MQTTAsync_strerror
const char * MQTTAsync_strerror(int code)
-
MQTTAsync_SSLOptions::verify
int verify
Definition: MQTTAsync.h:1097
-
MQTTAsync_successData5::serverURI
char * serverURI
Definition: MQTTAsync.h:613
-
MQTTAsync_nameValue
Definition: MQTTAsync.h:1157
-
MQTTAsync_SSLOptions::privateKeyPassword
const char * privateKeyPassword
Definition: MQTTAsync.h:1071
-
MQTTAsync_failureData
Definition: MQTTAsync.h:521
+
MQTTAsync_SSLOptions::verify
int verify
Definition: MQTTAsync.h:1101
+
MQTTAsync_successData5::serverURI
char * serverURI
Definition: MQTTAsync.h:617
+
MQTTAsync_nameValue
Definition: MQTTAsync.h:1161
+
MQTTAsync_SSLOptions::privateKeyPassword
const char * privateKeyPassword
Definition: MQTTAsync.h:1075
+
MQTTAsync_failureData
Definition: MQTTAsync.h:525
MQTTSubscribe_options
Definition: MQTTSubscribeOpts.h:21
-
MQTTAsync_SSLOptions::disableDefaultTrustStore
int disableDefaultTrustStore
Definition: MQTTAsync.h:1136
-
MQTTAsync_willOptions::data
const void * data
Definition: MQTTAsync.h:1020
-
MQTTAsync_connectOptions::maxInflight
int maxInflight
Definition: MQTTAsync.h:1219
-
MQTTAsync_responseOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:706
-
MQTTAsync_connectOptions::ssl
MQTTAsync_SSLOptions * ssl
Definition: MQTTAsync.h:1254
+
MQTTAsync_SSLOptions::disableDefaultTrustStore
int disableDefaultTrustStore
Definition: MQTTAsync.h:1140
+
MQTTAsync_willOptions::data
const void * data
Definition: MQTTAsync.h:1024
+
MQTTAsync_connectOptions::maxInflight
int maxInflight
Definition: MQTTAsync.h:1223
+
MQTTAsync_responseOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:710
+
MQTTAsync_connectOptions::ssl
MQTTAsync_SSLOptions * ssl
Definition: MQTTAsync.h:1258
MQTTAsync_responseOptions
struct MQTTAsync_responseOptions MQTTAsync_responseOptions
-
MQTTAsync_createOptions::persistQoS0
int persistQoS0
Definition: MQTTAsync.h:972
-
MQTTAsync_willOptions::retained
int retained
Definition: MQTTAsync.h:1010
-
MQTTAsync_createOptions::maxBufferedMessages
int maxBufferedMessages
Definition: MQTTAsync.h:950
-
MQTTAsync_createOptions::deleteOldestMessages
int deleteOldestMessages
Definition: MQTTAsync.h:964
-
MQTTAsync_successData5::reasonCodes
enum MQTTReasonCodes * reasonCodes
Definition: MQTTAsync.h:602
-
MQTTAsync_connectOptions::password
const char * password
Definition: MQTTAsync.h:1237
-
MQTTAsync_failureData::code
int code
Definition: MQTTAsync.h:526
-
MQTTAsync_responseOptions::subscribeOptions
MQTTSubscribe_options subscribeOptions
Definition: MQTTAsync.h:744
-
MQTTAsync_willOptions::message
const char * message
Definition: MQTTAsync.h:1006
-
MQTTAsync_disconnectOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1412
-
MQTTAsync_nameValue::value
const char * value
Definition: MQTTAsync.h:1160
+
MQTTAsync_createOptions::persistQoS0
int persistQoS0
Definition: MQTTAsync.h:976
+
MQTTAsync_willOptions::retained
int retained
Definition: MQTTAsync.h:1014
+
MQTTAsync_createOptions::maxBufferedMessages
int maxBufferedMessages
Definition: MQTTAsync.h:954
+
MQTTAsync_createOptions::deleteOldestMessages
int deleteOldestMessages
Definition: MQTTAsync.h:968
+
MQTTAsync_successData5::reasonCodes
enum MQTTReasonCodes * reasonCodes
Definition: MQTTAsync.h:606
+
MQTTAsync_connectOptions::password
const char * password
Definition: MQTTAsync.h:1241
+
MQTTAsync_failureData::code
int code
Definition: MQTTAsync.h:530
+
MQTTAsync_responseOptions::subscribeOptions
MQTTSubscribe_options subscribeOptions
Definition: MQTTAsync.h:748
+
MQTTAsync_willOptions::message
const char * message
Definition: MQTTAsync.h:1010
+
MQTTAsync_disconnectOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1416
+
MQTTAsync_nameValue::value
const char * value
Definition: MQTTAsync.h:1164
MQTTAsync_setConnected
int MQTTAsync_setConnected(MQTTAsync handle, void *context, MQTTAsync_connected *co)
-
MQTTAsync_failureData5::message
const char * message
Definition: MQTTAsync.h:548
-
MQTTAsync_disconnectOptions
Definition: MQTTAsync.h:1390
-
MQTTAsync_responseOptions::subscribeOptionsList
MQTTSubscribe_options * subscribeOptionsList
Definition: MQTTAsync.h:753
+
MQTTAsync_failureData5::message
const char * message
Definition: MQTTAsync.h:552
+
MQTTAsync_disconnectOptions
Definition: MQTTAsync.h:1394
+
MQTTAsync_responseOptions::subscribeOptionsList
MQTTSubscribe_options * subscribeOptionsList
Definition: MQTTAsync.h:757
MQTTPersistence_afterRead
int MQTTPersistence_afterRead(void *context, char **buffer, int *buflen)
Definition: MQTTClientPersistence.h:275
-
MQTTAsync_responseOptions::subscribeOptionsCount
int subscribeOptionsCount
Definition: MQTTAsync.h:749
-
MQTTAsync_connectOptions::len
int len
Definition: MQTTAsync.h:1312
-
MQTTASYNC_TRACE_ERROR
@ MQTTASYNC_TRACE_ERROR
Definition: MQTTAsync.h:1679
-
MQTTAsync_init_options::struct_version
int struct_version
Definition: MQTTAsync.h:222
-
MQTTAsync_connected
void MQTTAsync_connected(void *context, char *cause)
Definition: MQTTAsync.h:416
-
MQTTAsync_SSLOptions::enableServerCertAuth
int enableServerCertAuth
Definition: MQTTAsync.h:1084
+
MQTTAsync_responseOptions::subscribeOptionsCount
int subscribeOptionsCount
Definition: MQTTAsync.h:753
+
MQTTAsync_connectOptions::len
int len
Definition: MQTTAsync.h:1316
+
MQTTASYNC_TRACE_ERROR
@ MQTTASYNC_TRACE_ERROR
Definition: MQTTAsync.h:1683
+
MQTTAsync_init_options::struct_version
int struct_version
Definition: MQTTAsync.h:226
+
MQTTAsync_connected
void MQTTAsync_connected(void *context, char *cause)
Definition: MQTTAsync.h:420
+
MQTTAsync_SSLOptions::enableServerCertAuth
int enableServerCertAuth
Definition: MQTTAsync.h:1088
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:657
+
MQTTAsync_onSuccess5
void MQTTAsync_onSuccess5(void *context, MQTTAsync_successData5 *response)
Definition: MQTTAsync.h:661
MQTTClientPersistence.h
This structure represents a persistent data store, used to store outbound and inbound messages,...
-
MQTTAsync_successData5::reasonCodeCount
int reasonCodeCount
Definition: MQTTAsync.h:601
-
MQTTAsync_successData::qos
int qos
Definition: MQTTAsync.h:565
-
MQTTAsync_disconnectOptions::timeout
int timeout
Definition: MQTTAsync.h:1400
-
MQTTAsync_message::dup
int dup
Definition: MQTTAsync.h:307
-
MQTTAsync_message::properties
MQTTProperties properties
Definition: MQTTAsync.h:317
-
MQTTAsync_message::struct_version
int struct_version
Definition: MQTTAsync.h:263
-
MQTTAsync_willOptions::len
int len
Definition: MQTTAsync.h:1019
-
MQTTAsync_SSLOptions::ssl_error_context
void * ssl_error_context
Definition: MQTTAsync.h:1116
-
MQTTAsync_responseOptions::struct_version
int struct_version
Definition: MQTTAsync.h:700
-
MQTTAsync_willOptions::qos
int qos
Definition: MQTTAsync.h:1015
-
MQTTAsync_successData::token
MQTTAsync_token token
Definition: MQTTAsync.h:559
-
MQTTAsync_connectOptions::cleansession
int cleansession
Definition: MQTTAsync.h:1215
-
MQTTAsync_createOptions::restoreMessages
int restoreMessages
Definition: MQTTAsync.h:968
-
MQTTASYNC_TRACE_MEDIUM
@ MQTTASYNC_TRACE_MEDIUM
Definition: MQTTAsync.h:1676
+
MQTTAsync_successData5::reasonCodeCount
int reasonCodeCount
Definition: MQTTAsync.h:605
+
MQTTAsync_successData::qos
int qos
Definition: MQTTAsync.h:569
+
MQTTAsync_disconnectOptions::timeout
int timeout
Definition: MQTTAsync.h:1404
+
MQTTAsync_message::dup
int dup
Definition: MQTTAsync.h:311
+
MQTTAsync_message::properties
MQTTProperties properties
Definition: MQTTAsync.h:321
+
MQTTAsync_message::struct_version
int struct_version
Definition: MQTTAsync.h:267
+
MQTTAsync_willOptions::len
int len
Definition: MQTTAsync.h:1023
+
MQTTAsync_SSLOptions::ssl_error_context
void * ssl_error_context
Definition: MQTTAsync.h:1120
+
MQTTAsync_responseOptions::struct_version
int struct_version
Definition: MQTTAsync.h:704
+
MQTTAsync_willOptions::qos
int qos
Definition: MQTTAsync.h:1019
+
MQTTAsync_successData::token
MQTTAsync_token token
Definition: MQTTAsync.h:563
+
MQTTAsync_connectOptions::cleansession
int cleansession
Definition: MQTTAsync.h:1219
+
MQTTAsync_createOptions::restoreMessages
int restoreMessages
Definition: MQTTAsync.h:972
+
MQTTASYNC_TRACE_MEDIUM
@ MQTTASYNC_TRACE_MEDIUM
Definition: MQTTAsync.h:1680
MQTTAsync_freeMessage
void MQTTAsync_freeMessage(MQTTAsync_message **msg)
MQTTReasonCodes
MQTTReasonCodes
Definition: MQTTReasonCodes.h:23
-
MQTTAsync_connectOptions::context
void * context
Definition: MQTTAsync.h:1272
-
MQTTAsync_onSuccess
void MQTTAsync_onSuccess(void *context, MQTTAsync_successData *response)
Definition: MQTTAsync.h:641
-
MQTTAsync_connectOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1266
-
MQTTAsync_createOptions
Definition: MQTTAsync.h:937
-
MQTTAsync_connectOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:1260
+
MQTTAsync_connectOptions::context
void * context
Definition: MQTTAsync.h:1276
+
MQTTAsync_onSuccess
void MQTTAsync_onSuccess(void *context, MQTTAsync_successData *response)
Definition: MQTTAsync.h:645
+
MQTTAsync_connectOptions::onFailure
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1270
+
MQTTAsync_createOptions
Definition: MQTTAsync.h:941
+
MQTTAsync_connectOptions::onSuccess
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:1264
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 597fa2b8..66f8f9bb 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 @@ -443,7 +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 6eef992a..6bafaae6 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 @@ -155,7 +155,7 @@ $(function() {
Persistence_close
int(* Persistence_close)(void *handle)
Close the persistent store referred to by the handle.
Definition: MQTTClientPersistence.h:123
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 8c1c1fb1..4dc22b95 100644 --- a/docs/MQTTAsync/html/_m_q_t_t_properties_8h.html +++ b/docs/MQTTAsync/html/_m_q_t_t_properties_8h.html @@ -794,7 +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 71a5191d..82949909 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 @@ -257,7 +257,7 @@ $(function() {
MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE
@ MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE
Definition: MQTTProperties.h:49
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 d05ecc49..81470e68 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 @@ -233,7 +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 0f01b09f..af4525b7 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 @@ -188,7 +188,7 @@ $(function() {
MQTTREASONCODE_QOS_NOT_SUPPORTED
@ MQTTREASONCODE_QOS_NOT_SUPPORTED
Definition: MQTTReasonCodes.h:75
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 82feb160..381e154b 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 @@ -122,7 +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 3b0254a0..5498f30a 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 @@ -107,7 +107,7 @@ $(function() {
MQTTSubscribe_options::struct_id
char struct_id[4]
Definition: MQTTSubscribeOpts.h:38
diff --git a/docs/MQTTAsync/html/annotated.html b/docs/MQTTAsync/html/annotated.html index c937f91f..019cd0f9 100644 --- a/docs/MQTTAsync/html/annotated.html +++ b/docs/MQTTAsync/html/annotated.html @@ -92,7 +92,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/async.html b/docs/MQTTAsync/html/async.html index e4ee78c8..57272624 100644 --- a/docs/MQTTAsync/html/async.html +++ b/docs/MQTTAsync/html/async.html @@ -71,7 +71,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/auto_reconnect.html b/docs/MQTTAsync/html/auto_reconnect.html index 9e2b3127..504bbd43 100644 --- a/docs/MQTTAsync/html/auto_reconnect.html +++ b/docs/MQTTAsync/html/auto_reconnect.html @@ -73,7 +73,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/callbacks.html b/docs/MQTTAsync/html/callbacks.html index 3cc39d5e..9542d812 100644 --- a/docs/MQTTAsync/html/callbacks.html +++ b/docs/MQTTAsync/html/callbacks.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/classes.html b/docs/MQTTAsync/html/classes.html index 1455250e..fd2162d2 100644 --- a/docs/MQTTAsync/html/classes.html +++ b/docs/MQTTAsync/html/classes.html @@ -100,7 +100,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/files.html b/docs/MQTTAsync/html/files.html index 7d1c37d6..f5260945 100644 --- a/docs/MQTTAsync/html/files.html +++ b/docs/MQTTAsync/html/files.html @@ -78,7 +78,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/functions.html b/docs/MQTTAsync/html/functions.html index 2adb3ff7..b5d87dbd 100644 --- a/docs/MQTTAsync/html/functions.html +++ b/docs/MQTTAsync/html/functions.html @@ -525,7 +525,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/functions_vars.html b/docs/MQTTAsync/html/functions_vars.html index f9cc847f..e6db6b63 100644 --- a/docs/MQTTAsync/html/functions_vars.html +++ b/docs/MQTTAsync/html/functions_vars.html @@ -525,7 +525,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals.html b/docs/MQTTAsync/html/globals.html index 6c00c9b1..b63ace85 100644 --- a/docs/MQTTAsync/html/globals.html +++ b/docs/MQTTAsync/html/globals.html @@ -110,6 +110,9 @@ $(function() {
  • MQTTAsync_callOptions_initializer : MQTTAsync.h
  • +
  • MQTTASYNC_COMMAND_IGNORED +: MQTTAsync.h +
  • MQTTAsync_connect() : MQTTAsync.h
  • @@ -696,7 +699,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_defs.html b/docs/MQTTAsync/html/globals_defs.html index b18121f9..306b8802 100644 --- a/docs/MQTTAsync/html/globals_defs.html +++ b/docs/MQTTAsync/html/globals_defs.html @@ -104,6 +104,9 @@ $(function() {
  • MQTTAsync_callOptions_initializer : MQTTAsync.h
  • +
  • MQTTASYNC_COMMAND_IGNORED +: MQTTAsync.h +
  • MQTTAsync_connectData_initializer : MQTTAsync.h
  • @@ -225,7 +228,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_enum.html b/docs/MQTTAsync/html/globals_enum.html index b668dfd8..2b6f455f 100644 --- a/docs/MQTTAsync/html/globals_enum.html +++ b/docs/MQTTAsync/html/globals_enum.html @@ -79,7 +79,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_eval.html b/docs/MQTTAsync/html/globals_eval.html index 5d027817..0c489763 100644 --- a/docs/MQTTAsync/html/globals_eval.html +++ b/docs/MQTTAsync/html/globals_eval.html @@ -327,7 +327,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_func.html b/docs/MQTTAsync/html/globals_func.html index 765bdbeb..d5636ff9 100644 --- a/docs/MQTTAsync/html/globals_func.html +++ b/docs/MQTTAsync/html/globals_func.html @@ -213,7 +213,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_p.html b/docs/MQTTAsync/html/globals_p.html index dfb3e18c..e58ea58b 100644 --- a/docs/MQTTAsync/html/globals_p.html +++ b/docs/MQTTAsync/html/globals_p.html @@ -93,7 +93,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/globals_type.html b/docs/MQTTAsync/html/globals_type.html index d22efb97..20906c6e 100644 --- a/docs/MQTTAsync/html/globals_type.html +++ b/docs/MQTTAsync/html/globals_type.html @@ -148,7 +148,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/index.html b/docs/MQTTAsync/html/index.html index de83a176..647c9deb 100644 --- a/docs/MQTTAsync/html/index.html +++ b/docs/MQTTAsync/html/index.html @@ -66,7 +66,7 @@ $(function() {
    Asynchronous MQTT client library for C
    -

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

    +

    An Asynchronous MQTT client library for C.© Copyright 2009, 2021 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,7 +119,7 @@ Free any memory being used by the client
    diff --git a/docs/MQTTAsync/html/offline_publish.html b/docs/MQTTAsync/html/offline_publish.html index dc0be004..152d2c3b 100644 --- a/docs/MQTTAsync/html/offline_publish.html +++ b/docs/MQTTAsync/html/offline_publish.html @@ -73,7 +73,7 @@ $(function() {
    diff --git a/docs/MQTTAsync/html/pages.html b/docs/MQTTAsync/html/pages.html index cca998a2..99f6f717 100644 --- a/docs/MQTTAsync/html/pages.html +++ b/docs/MQTTAsync/html/pages.html @@ -82,7 +82,7 @@ $(function() {
    diff --git a/docs/MQTTAsync/html/publish.html b/docs/MQTTAsync/html/publish.html index cc788bfc..cde20a3c 100644 --- a/docs/MQTTAsync/html/publish.html +++ b/docs/MQTTAsync/html/publish.html @@ -235,47 +235,47 @@ $(function() {
    }
    -
    MQTTAsync_responseOptions::context
    void * context
    Definition: MQTTAsync.h:718
    -
    MQTTAsync_message_initializer
    #define MQTTAsync_message_initializer
    Definition: MQTTAsync.h:320
    -
    MQTTAsync_responseOptions_initializer
    #define MQTTAsync_responseOptions_initializer
    Definition: MQTTAsync.h:756
    -
    MQTTAsync
    void * MQTTAsync
    Definition: MQTTAsync.h:239
    -
    MQTTAsync_message::retained
    int retained
    Definition: MQTTAsync.h:300
    +
    MQTTAsync_responseOptions::context
    void * context
    Definition: MQTTAsync.h:722
    +
    MQTTAsync_message_initializer
    #define MQTTAsync_message_initializer
    Definition: MQTTAsync.h:324
    +
    MQTTAsync_responseOptions_initializer
    #define MQTTAsync_responseOptions_initializer
    Definition: MQTTAsync.h:760
    +
    MQTTAsync
    void * MQTTAsync
    Definition: MQTTAsync.h:243
    +
    MQTTAsync_message::retained
    int retained
    Definition: MQTTAsync.h:304
    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:524
    +
    MQTTAsync_failureData::token
    MQTTAsync_token token
    Definition: MQTTAsync.h:528
    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:265
    +
    MQTTAsync_message::payloadlen
    int payloadlen
    Definition: MQTTAsync.h:269
    MQTTAsync_destroy
    void MQTTAsync_destroy(MQTTAsync *handle)
    -
    MQTTAsync_successData
    Definition: MQTTAsync.h:556
    -
    MQTTAsync_disconnectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1406
    +
    MQTTAsync_successData
    Definition: MQTTAsync.h:560
    +
    MQTTAsync_disconnectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1410
    MQTTASYNC_SUCCESS
    #define MQTTASYNC_SUCCESS
    Definition: MQTTAsync.h:113
    -
    MQTTAsync_disconnectOptions::context
    void * context
    Definition: MQTTAsync.h:1418
    -
    MQTTAsync_responseOptions
    Definition: MQTTAsync.h:694
    +
    MQTTAsync_disconnectOptions::context
    void * context
    Definition: MQTTAsync.h:1422
    +
    MQTTAsync_responseOptions
    Definition: MQTTAsync.h:698
    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:1441
    -
    MQTTAsync_connectOptions::keepAliveInterval
    int keepAliveInterval
    Definition: MQTTAsync.h:1193
    -
    MQTTAsync_message::qos
    int qos
    Definition: MQTTAsync.h:281
    -
    MQTTAsync_message::payload
    void * payload
    Definition: MQTTAsync.h:267
    +
    MQTTAsync_disconnectOptions_initializer
    #define MQTTAsync_disconnectOptions_initializer
    Definition: MQTTAsync.h:1445
    +
    MQTTAsync_connectOptions::keepAliveInterval
    int keepAliveInterval
    Definition: MQTTAsync.h:1197
    +
    MQTTAsync_message::qos
    int qos
    Definition: MQTTAsync.h:285
    +
    MQTTAsync_message::payload
    void * payload
    Definition: MQTTAsync.h:271
    MQTTAsync_connect
    int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
    -
    MQTTAsync_message
    Definition: MQTTAsync.h:257
    -
    MQTTAsync_responseOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:712
    -
    MQTTAsync_connectOptions
    Definition: MQTTAsync.h:1168
    -
    MQTTAsync_failureData
    Definition: MQTTAsync.h:521
    -
    MQTTAsync_responseOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:706
    -
    MQTTAsync_failureData::code
    int code
    Definition: MQTTAsync.h:526
    -
    MQTTAsync_disconnectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1412
    -
    MQTTAsync_disconnectOptions
    Definition: MQTTAsync.h:1390
    -
    MQTTAsync_connectOptions_initializer
    #define MQTTAsync_connectOptions_initializer
    Definition: MQTTAsync.h:1354
    +
    MQTTAsync_message
    Definition: MQTTAsync.h:261
    +
    MQTTAsync_responseOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:716
    +
    MQTTAsync_connectOptions
    Definition: MQTTAsync.h:1172
    +
    MQTTAsync_failureData
    Definition: MQTTAsync.h:525
    +
    MQTTAsync_responseOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:710
    +
    MQTTAsync_failureData::code
    int code
    Definition: MQTTAsync.h:530
    +
    MQTTAsync_disconnectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1416
    +
    MQTTAsync_disconnectOptions
    Definition: MQTTAsync.h:1394
    +
    MQTTAsync_connectOptions_initializer
    #define MQTTAsync_connectOptions_initializer
    Definition: MQTTAsync.h:1358
    MQTTAsync.h
    -
    MQTTAsync_successData::token
    MQTTAsync_token token
    Definition: MQTTAsync.h:559
    -
    MQTTAsync_connectOptions::cleansession
    int cleansession
    Definition: MQTTAsync.h:1215
    -
    MQTTAsync_connectOptions::context
    void * context
    Definition: MQTTAsync.h:1272
    -
    MQTTAsync_connectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1266
    -
    MQTTAsync_connectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1260
    +
    MQTTAsync_successData::token
    MQTTAsync_token token
    Definition: MQTTAsync.h:563
    +
    MQTTAsync_connectOptions::cleansession
    int cleansession
    Definition: MQTTAsync.h:1219
    +
    MQTTAsync_connectOptions::context
    void * context
    Definition: MQTTAsync.h:1276
    +
    MQTTAsync_connectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1270
    +
    MQTTAsync_connectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1264
    diff --git a/docs/MQTTAsync/html/qos.html b/docs/MQTTAsync/html/qos.html index bfa43294..4715bfca 100644 --- a/docs/MQTTAsync/html/qos.html +++ b/docs/MQTTAsync/html/qos.html @@ -78,7 +78,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/search/all_10.js b/docs/MQTTAsync/html/search/all_10.js index 00443853..3424d7b7 100644 --- a/docs/MQTTAsync/html/search/all_10.js +++ b/docs/MQTTAsync/html/search/all_10.js @@ -1,9 +1,9 @@ var searchData= [ - ['threading_337',['Threading',['../async.html',1,'']]], - ['timeout_338',['timeout',['../struct_m_q_t_t_async__disconnect_options.html#a493b57f443cc38b3d3df9c1e584d9d82',1,'MQTTAsync_disconnectOptions']]], - ['token_339',['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_340',['topicName',['../struct_m_q_t_t_async__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTAsync_willOptions']]], - ['tracing_341',['Tracing',['../tracing.html',1,'']]], - ['truststore_342',['trustStore',['../struct_m_q_t_t_async___s_s_l_options.html#a032835d4c4a1c1e19b53c330a673a6e0',1,'MQTTAsync_SSLOptions']]] + ['threading_338',['Threading',['../async.html',1,'']]], + ['timeout_339',['timeout',['../struct_m_q_t_t_async__disconnect_options.html#a493b57f443cc38b3d3df9c1e584d9d82',1,'MQTTAsync_disconnectOptions']]], + ['token_340',['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_341',['topicName',['../struct_m_q_t_t_async__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTAsync_willOptions']]], + ['tracing_342',['Tracing',['../tracing.html',1,'']]], + ['truststore_343',['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.js b/docs/MQTTAsync/html/search/all_11.js index 392127c0..f719051e 100644 --- a/docs/MQTTAsync/html/search/all_11.js +++ b/docs/MQTTAsync/html/search/all_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['unsub_343',['unsub',['../struct_m_q_t_t_async__success_data5.html#a46b20b320d6951e567ebf678ea4ac1a3',1,'MQTTAsync_successData5']]], - ['username_344',['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_344',['unsub',['../struct_m_q_t_t_async__success_data5.html#a46b20b320d6951e567ebf678ea4ac1a3',1,'MQTTAsync_successData5']]], + ['username_345',['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.js b/docs/MQTTAsync/html/search/all_12.js index b8d2a2c0..a90ebcd0 100644 --- a/docs/MQTTAsync/html/search/all_12.js +++ b/docs/MQTTAsync/html/search/all_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['value_345',['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_346',['verify',['../struct_m_q_t_t_async___s_s_l_options.html#a94900629685d5ed08f66fd2931f573ce',1,'MQTTAsync_SSLOptions']]] + ['value_346',['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_347',['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.js b/docs/MQTTAsync/html/search/all_13.js index d1fd7da1..1a46d8dc 100644 --- a/docs/MQTTAsync/html/search/all_13.js +++ b/docs/MQTTAsync/html/search/all_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['will_347',['will',['../struct_m_q_t_t_async__connect_options.html#a7a9c5105542460d6fd9323facca66648',1,'MQTTAsync_connectOptions']]], - ['willproperties_348',['willProperties',['../struct_m_q_t_t_async__connect_options.html#ac31f13e964ffb7e3696caef47ecc0641',1,'MQTTAsync_connectOptions']]] + ['will_348',['will',['../struct_m_q_t_t_async__connect_options.html#a7a9c5105542460d6fd9323facca66648',1,'MQTTAsync_connectOptions']]], + ['willproperties_349',['willProperties',['../struct_m_q_t_t_async__connect_options.html#ac31f13e964ffb7e3696caef47ecc0641',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/all_9.js b/docs/MQTTAsync/html/search/all_9.js index 84f4d93b..263a52ee 100644 --- a/docs/MQTTAsync/html/search/all_9.js +++ b/docs/MQTTAsync/html/search/all_9.js @@ -22,219 +22,220 @@ var searchData= ['mqttasync_5fbad_5futf8_5fstring_55',['MQTTASYNC_BAD_UTF8_STRING',['../_m_q_t_t_async_8h.html#a80cbe091930c11b67ca719b3e385aa26',1,'MQTTAsync.h']]], ['mqttasync_5fcalloptions_56',['MQTTAsync_callOptions',['../_m_q_t_t_async_8h.html#ab6bfa6beae93c259220e1a131ba1cf9c',1,'MQTTAsync.h']]], ['mqttasync_5fcalloptions_5finitializer_57',['MQTTAsync_callOptions_initializer',['../_m_q_t_t_async_8h.html#a570185766fc8a9da410a6f84915b6df5',1,'MQTTAsync.h']]], - ['mqttasync_5fconnect_58',['MQTTAsync_connect',['../_m_q_t_t_async_8h.html#a0388b226a414b09fa733f6d65004ec32',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectdata_59',['MQTTAsync_connectData',['../struct_m_q_t_t_async__connect_data.html',1,'']]], - ['mqttasync_5fconnectdata_5finitializer_60',['MQTTAsync_connectData_initializer',['../_m_q_t_t_async_8h.html#a2e415e68016ae56f6bbbbdc9840a9c6e',1,'MQTTAsync.h']]], - ['mqttasync_5fconnected_61',['MQTTAsync_connected',['../_m_q_t_t_async_8h.html#a34bb8d321e9d368780b5c832c058f223',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectionlost_62',['MQTTAsync_connectionLost',['../_m_q_t_t_async_8h.html#a3900a98d7b1d58ad6e686bfce298bb6c',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_63',['MQTTAsync_connectOptions',['../struct_m_q_t_t_async__connect_options.html',1,'']]], - ['mqttasync_5fconnectoptions_5finitializer_64',['MQTTAsync_connectOptions_initializer',['../_m_q_t_t_async_8h.html#ae18b51f22784a43803eb809d6a0c2492',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer5_65',['MQTTAsync_connectOptions_initializer5',['../_m_q_t_t_async_8h.html#abd403ce21f7aa0348ae1d3eefd031a5d',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer5_5fws_66',['MQTTAsync_connectOptions_initializer5_ws',['../_m_q_t_t_async_8h.html#a513bfbec7b7d39c827240db75aa4044b',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer_5fws_67',['MQTTAsync_connectOptions_initializer_ws',['../_m_q_t_t_async_8h.html#a080951d916d7a58c4ceff8c6bacfe313',1,'MQTTAsync.h']]], - ['mqttasync_5fcreate_68',['MQTTAsync_create',['../_m_q_t_t_async_8h.html#a5462c4618d0a229116db5fbadacf95d2',1,'MQTTAsync.h']]], - ['mqttasync_5fcreateoptions_69',['MQTTAsync_createOptions',['../struct_m_q_t_t_async__create_options.html',1,'']]], - ['mqttasync_5fcreateoptions_5finitializer_70',['MQTTAsync_createOptions_initializer',['../_m_q_t_t_async_8h.html#a5fedeafef4753f09b1bcb92773564786',1,'MQTTAsync.h']]], - ['mqttasync_5fcreateoptions_5finitializer5_71',['MQTTAsync_createOptions_initializer5',['../_m_q_t_t_async_8h.html#a0008776a46e7268ccbef4774ce3d4579',1,'MQTTAsync.h']]], - ['mqttasync_5fcreatewithoptions_72',['MQTTAsync_createWithOptions',['../_m_q_t_t_async_8h.html#a78cbe1b851fea48001112f7ba9e4ea62',1,'MQTTAsync.h']]], - ['mqttasync_5fdeliverycomplete_73',['MQTTAsync_deliveryComplete',['../_m_q_t_t_async_8h.html#ab10296618e266b3c02fd117d6616b15d',1,'MQTTAsync.h']]], - ['mqttasync_5fdestroy_74',['MQTTAsync_destroy',['../_m_q_t_t_async_8h.html#ad5562f9dc71fbd93d25ad20b328cb887',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnect_75',['MQTTAsync_disconnect',['../_m_q_t_t_async_8h.html#adc69afa4725f8321bdaa5a05aec5cfd5',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnected_76',['MQTTASYNC_DISCONNECTED',['../_m_q_t_t_async_8h.html#a66c0f30b329bc770145c2f04b3929df6',1,'MQTTASYNC_DISCONNECTED(): MQTTAsync.h'],['../_m_q_t_t_async_8h.html#a52a1d9ab6e5d5064a3de42d0eec88f57',1,'MQTTAsync_disconnected(): MQTTAsync.h']]], - ['mqttasync_5fdisconnectoptions_77',['MQTTAsync_disconnectOptions',['../struct_m_q_t_t_async__disconnect_options.html',1,'']]], - ['mqttasync_5fdisconnectoptions_5finitializer_78',['MQTTAsync_disconnectOptions_initializer',['../_m_q_t_t_async_8h.html#a2fd5d6df31928ae468f3f2e522b9c707',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnectoptions_5finitializer5_79',['MQTTAsync_disconnectOptions_initializer5',['../_m_q_t_t_async_8h.html#aaa278001953dc129003eff83c8e7b3db',1,'MQTTAsync.h']]], - ['mqttasync_5ffailure_80',['MQTTASYNC_FAILURE',['../_m_q_t_t_async_8h.html#a7c8230fef85fc04b8a1035501f3be406',1,'MQTTAsync.h']]], - ['mqttasync_5ffailuredata_81',['MQTTAsync_failureData',['../struct_m_q_t_t_async__failure_data.html',1,'']]], - ['mqttasync_5ffailuredata5_82',['MQTTAsync_failureData5',['../struct_m_q_t_t_async__failure_data5.html',1,'']]], - ['mqttasync_5ffailuredata5_5finitializer_83',['MQTTAsync_failureData5_initializer',['../_m_q_t_t_async_8h.html#a53ce2002ae2c2579575bb41c48c51c29',1,'MQTTAsync.h']]], - ['mqttasync_5ffree_84',['MQTTAsync_free',['../_m_q_t_t_async_8h.html#a2b836f58612a2c4627e40ae848da190d',1,'MQTTAsync.h']]], - ['mqttasync_5ffreemessage_85',['MQTTAsync_freeMessage',['../_m_q_t_t_async_8h.html#a9b45db63052fe29ab1fad22d2a00c91c',1,'MQTTAsync.h']]], - ['mqttasync_5fgetpendingtokens_86',['MQTTAsync_getPendingTokens',['../_m_q_t_t_async_8h.html#abc92f60743fc471643b473abbc987be0',1,'MQTTAsync.h']]], - ['mqttasync_5fgetversioninfo_87',['MQTTAsync_getVersionInfo',['../_m_q_t_t_async_8h.html#a7cf29b785a1d4ff1de2e67e2f916b658',1,'MQTTAsync.h']]], - ['mqttasync_5fglobal_5finit_88',['MQTTAsync_global_init',['../_m_q_t_t_async_8h.html#a1705e75a48999cb45bf85c15608478f5',1,'MQTTAsync.h']]], - ['mqttasync_5finit_5foptions_89',['MQTTAsync_init_options',['../struct_m_q_t_t_async__init__options.html',1,'']]], - ['mqttasync_5finit_5foptions_5finitializer_90',['MQTTAsync_init_options_initializer',['../_m_q_t_t_async_8h.html#a866e023f70141969d48597930c0ee313',1,'MQTTAsync.h']]], - ['mqttasync_5fiscomplete_91',['MQTTAsync_isComplete',['../_m_q_t_t_async_8h.html#ab207095cab6f9a48b52cdb593b8456f4',1,'MQTTAsync.h']]], - ['mqttasync_5fisconnected_92',['MQTTAsync_isConnected',['../_m_q_t_t_async_8h.html#a46c332245c379629ae11f457fc179457',1,'MQTTAsync.h']]], - ['mqttasync_5fmalloc_93',['MQTTAsync_malloc',['../_m_q_t_t_async_8h.html#af5500ba58592afafaade2fcabdc61e61',1,'MQTTAsync.h']]], - ['mqttasync_5fmax_5fbuffered_5fmessages_94',['MQTTASYNC_MAX_BUFFERED_MESSAGES',['../_m_q_t_t_async_8h.html#a4e338072cfd5291b579e4f0c99a6e773',1,'MQTTAsync.h']]], - ['mqttasync_5fmax_5fmessages_5finflight_95',['MQTTASYNC_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_async_8h.html#ad577286d43c72fbc49818aac42f4e24a',1,'MQTTAsync.h']]], - ['mqttasync_5fmessage_96',['MQTTAsync_message',['../struct_m_q_t_t_async__message.html',1,'']]], - ['mqttasync_5fmessage_5finitializer_97',['MQTTAsync_message_initializer',['../_m_q_t_t_async_8h.html#a6a85061dadab532f28e96e5ab3c600e9',1,'MQTTAsync.h']]], - ['mqttasync_5fmessagearrived_98',['MQTTAsync_messageArrived',['../_m_q_t_t_async_8h.html#a3918ead59b56816a8d7544def184e48e',1,'MQTTAsync.h']]], - ['mqttasync_5fnamevalue_99',['MQTTAsync_nameValue',['../struct_m_q_t_t_async__name_value.html',1,'']]], - ['mqttasync_5fno_5fmore_5fmsgids_100',['MQTTASYNC_NO_MORE_MSGIDS',['../_m_q_t_t_async_8h.html#ab0f54d0bae2c74849022a8009e5d6ff7',1,'MQTTAsync.h']]], - ['mqttasync_5fnull_5fparameter_101',['MQTTASYNC_NULL_PARAMETER',['../_m_q_t_t_async_8h.html#ab88e1ebcee991099a72429e52a8253fd',1,'MQTTAsync.h']]], - ['mqttasync_5fonfailure_102',['MQTTAsync_onFailure',['../_m_q_t_t_async_8h.html#a6060c25c2641e878803aef76fefb31ee',1,'MQTTAsync.h']]], - ['mqttasync_5fonfailure5_103',['MQTTAsync_onFailure5',['../_m_q_t_t_async_8h.html#a8c5023e04d5c3e9805d5dae76df21f4c',1,'MQTTAsync.h']]], - ['mqttasync_5fonsuccess_104',['MQTTAsync_onSuccess',['../_m_q_t_t_async_8h.html#a7b0c18a0e29e2ce73f3ea109bc32617b',1,'MQTTAsync.h']]], - ['mqttasync_5fonsuccess5_105',['MQTTAsync_onSuccess5',['../_m_q_t_t_async_8h.html#a892cf122e6e8d8f6cd38c4c8efe8fb67',1,'MQTTAsync.h']]], - ['mqttasync_5foperation_5fincomplete_106',['MQTTASYNC_OPERATION_INCOMPLETE',['../_m_q_t_t_async_8h.html#aee1b79d0632bec0fe49eb7ea1abd3b2e',1,'MQTTAsync.h']]], - ['mqttasync_5fpersistence_5ferror_107',['MQTTASYNC_PERSISTENCE_ERROR',['../_m_q_t_t_async_8h.html#a4edf1249c75abd4975fec8ddeae2cdc9',1,'MQTTAsync.h']]], - ['mqttasync_5freconnect_108',['MQTTAsync_reconnect',['../_m_q_t_t_async_8h.html#abd3ea01869b89ff23f9522640479c395',1,'MQTTAsync.h']]], - ['mqttasync_5fresponseoptions_109',['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_110',['MQTTAsync_responseOptions_initializer',['../_m_q_t_t_async_8h.html#a3f8b408243b5c2369bc9758f2edf0878',1,'MQTTAsync.h']]], - ['mqttasync_5fsend_111',['MQTTAsync_send',['../_m_q_t_t_async_8h.html#a63c66a311ab16239a4175ff671871bf2',1,'MQTTAsync.h']]], - ['mqttasync_5fsendmessage_112',['MQTTAsync_sendMessage',['../_m_q_t_t_async_8h.html#a5687171e67e98f9ea590c9e3b64cde18',1,'MQTTAsync.h']]], - ['mqttasync_5fsetafterpersistenceread_113',['MQTTAsync_setAfterPersistenceRead',['../_m_q_t_t_async_8h.html#ab4d16e3c57502be6a7d1b1d3bcc382f3',1,'MQTTAsync.h']]], - ['mqttasync_5fsetbeforepersistencewrite_114',['MQTTAsync_setBeforePersistenceWrite',['../_m_q_t_t_async_8h.html#a1002b09c62a096578c9b3e0135eb98c1',1,'MQTTAsync.h']]], - ['mqttasync_5fsetcallbacks_115',['MQTTAsync_setCallbacks',['../_m_q_t_t_async_8h.html#ae9ae8d61023e7029ef5a19f5219c3599',1,'MQTTAsync.h']]], - ['mqttasync_5fsetconnected_116',['MQTTAsync_setConnected',['../_m_q_t_t_async_8h.html#a18cc19740d9b00c629dc53a4420ecf1f',1,'MQTTAsync.h']]], - ['mqttasync_5fsetconnectionlostcallback_117',['MQTTAsync_setConnectionLostCallback',['../_m_q_t_t_async_8h.html#aee15bbd9224efd9dcce9b4ae491b2e2e',1,'MQTTAsync.h']]], - ['mqttasync_5fsetdeliverycompletecallback_118',['MQTTAsync_setDeliveryCompleteCallback',['../_m_q_t_t_async_8h.html#a94ec624ee22cc01d2ca58a9e646a2665',1,'MQTTAsync.h']]], - ['mqttasync_5fsetdisconnected_119',['MQTTAsync_setDisconnected',['../_m_q_t_t_async_8h.html#ada4dd26d23c8849c51e4ab8200339040',1,'MQTTAsync.h']]], - ['mqttasync_5fsetmessagearrivedcallback_120',['MQTTAsync_setMessageArrivedCallback',['../_m_q_t_t_async_8h.html#a44abc360051b918a39b0596a137775ae',1,'MQTTAsync.h']]], - ['mqttasync_5fsettracecallback_121',['MQTTAsync_setTraceCallback',['../_m_q_t_t_async_8h.html#a0b350581324a4ff0eaee71e7a6721388',1,'MQTTAsync.h']]], - ['mqttasync_5fsettracelevel_122',['MQTTAsync_setTraceLevel',['../_m_q_t_t_async_8h.html#ac7fbab13a0b2e5dd4ee11efbbb9f6a3a',1,'MQTTAsync.h']]], - ['mqttasync_5fsetupdateconnectoptions_123',['MQTTAsync_setUpdateConnectOptions',['../_m_q_t_t_async_8h.html#aa078aec3eba83481f63db3c3939a5da9',1,'MQTTAsync.h']]], - ['mqttasync_5fssl_5fnot_5fsupported_124',['MQTTASYNC_SSL_NOT_SUPPORTED',['../_m_q_t_t_async_8h.html#a6992c00553db1608aef9e162c161d73c',1,'MQTTAsync.h']]], - ['mqttasync_5fssloptions_125',['MQTTAsync_SSLOptions',['../struct_m_q_t_t_async___s_s_l_options.html',1,'']]], - ['mqttasync_5fssloptions_5finitializer_126',['MQTTAsync_SSLOptions_initializer',['../_m_q_t_t_async_8h.html#aac935e2e9d770a53ee8189f128530511',1,'MQTTAsync.h']]], - ['mqttasync_5fstrerror_127',['MQTTAsync_strerror',['../_m_q_t_t_async_8h.html#a875cd089a8b23eb3fd50c0406fc75d9f',1,'MQTTAsync.h']]], - ['mqttasync_5fsubscribe_128',['MQTTAsync_subscribe',['../_m_q_t_t_async_8h.html#ae10bd009934b3bb4a9f4abae7424a611',1,'MQTTAsync.h']]], - ['mqttasync_5fsubscribemany_129',['MQTTAsync_subscribeMany',['../_m_q_t_t_async_8h.html#ac78620b33434a187255bd1a3faec1578',1,'MQTTAsync.h']]], - ['mqttasync_5fsuccess_130',['MQTTASYNC_SUCCESS',['../_m_q_t_t_async_8h.html#afe0cffcce8efe25186f79c51ac44e16f',1,'MQTTAsync.h']]], - ['mqttasync_5fsuccessdata_131',['MQTTAsync_successData',['../struct_m_q_t_t_async__success_data.html',1,'']]], - ['mqttasync_5fsuccessdata5_132',['MQTTAsync_successData5',['../struct_m_q_t_t_async__success_data5.html',1,'']]], - ['mqttasync_5fsuccessdata5_5finitializer_133',['MQTTAsync_successData5_initializer',['../_m_q_t_t_async_8h.html#a6182ec90ec4a134465f627b324ac5a41',1,'MQTTAsync.h']]], - ['mqttasync_5ftoken_134',['MQTTAsync_token',['../_m_q_t_t_async_8h.html#a7ca6d2a1813f2bbd0bc3af2771e46ba4',1,'MQTTAsync.h']]], - ['mqttasync_5ftopicname_5ftruncated_135',['MQTTASYNC_TOPICNAME_TRUNCATED',['../_m_q_t_t_async_8h.html#a77a7106d97ff60be3fe70f90b1867800',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5ferror_136',['MQTTASYNC_TRACE_ERROR',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5ac428f74ca453dacb7b8271ca741266e8',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5ffatal_137',['MQTTASYNC_TRACE_FATAL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a0b91d2213ebb6655e41a7f6ce1a42295',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5flevels_138',['MQTTASYNC_TRACE_LEVELS',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fmaximum_139',['MQTTASYNC_TRACE_MAXIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5af684f42971cced68693ce993703548c1',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fmedium_140',['MQTTASYNC_TRACE_MEDIUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a133c380b84d75477ff31a2ad732133ce',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fminimum_141',['MQTTASYNC_TRACE_MINIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a7a45c26816b1cac1fde02d79a9f4337b',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fprotocol_142',['MQTTASYNC_TRACE_PROTOCOL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a6a719b2b7fc4dfc41494370ff96fec3e',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fsevere_143',['MQTTASYNC_TRACE_SEVERE',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a3084770185f384398cefe4aaba533d40',1,'MQTTAsync.h']]], - ['mqttasync_5ftracecallback_144',['MQTTAsync_traceCallback',['../_m_q_t_t_async_8h.html#a65aba1caeae9b5af5d5b6c5598a75b02',1,'MQTTAsync.h']]], - ['mqttasync_5ftrue_145',['MQTTASYNC_TRUE',['../_m_q_t_t_async_8h.html#a61e6ee632e63312d382e2fcbe427f01a',1,'MQTTAsync.h']]], - ['mqttasync_5funsubscribe_146',['MQTTAsync_unsubscribe',['../_m_q_t_t_async_8h.html#a08d18ece91c1b011011354570d8ac1ab',1,'MQTTAsync.h']]], - ['mqttasync_5funsubscribemany_147',['MQTTAsync_unsubscribeMany',['../_m_q_t_t_async_8h.html#a69fd433ce1b9b6a1b3b453c4793a9311',1,'MQTTAsync.h']]], - ['mqttasync_5fupdateconnectoptions_148',['MQTTAsync_updateConnectOptions',['../_m_q_t_t_async_8h.html#a5e44304a2c011a7d61b72c779ad83979',1,'MQTTAsync.h']]], - ['mqttasync_5fwaitforcompletion_149',['MQTTAsync_waitForCompletion',['../_m_q_t_t_async_8h.html#a4fe09cc9c976b1cf424e13765d6cd8c9',1,'MQTTAsync.h']]], - ['mqttasync_5fwilloptions_150',['MQTTAsync_willOptions',['../struct_m_q_t_t_async__will_options.html',1,'']]], - ['mqttasync_5fwilloptions_5finitializer_151',['MQTTAsync_willOptions_initializer',['../_m_q_t_t_async_8h.html#a6c45768e1b28844f2ac0f6ac68709730',1,'MQTTAsync.h']]], - ['mqttasync_5fwrong_5fmqtt_5fversion_152',['MQTTASYNC_WRONG_MQTT_VERSION',['../_m_q_t_t_async_8h.html#af5df806e9767e1e3182fe089a8ee551b',1,'MQTTAsync.h']]], - ['mqttclient_5fpersistence_153',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], - ['mqttclient_5fpersistence_5fdefault_154',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5ferror_155',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fnone_156',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fuser_157',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], - ['mqttclientpersistence_2eh_158',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], - ['mqttlenstring_159',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], - ['mqttpersistence_5fafterread_160',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], - ['mqttpersistence_5fbeforewrite_161',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], - ['mqttproperties_162',['MQTTProperties',['../struct_m_q_t_t_properties.html',1,'MQTTProperties'],['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties(): MQTTProperties.h']]], - ['mqttproperties_2eh_163',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], - ['mqttproperties_5fadd_164',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], - ['mqttproperties_5fcopy_165',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], - ['mqttproperties_5ffree_166',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalue_167',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalueat_168',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetproperty_169',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetpropertyat_170',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], - ['mqttproperties_5fhasproperty_171',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], - ['mqttproperties_5finitializer_172',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], - ['mqttproperties_5flen_173',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], - ['mqttproperties_5fpropertycount_174',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], - ['mqttproperties_5fread_175',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], - ['mqttproperties_5fwrite_176',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], - ['mqttproperty_177',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], - ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_178',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fdata_179',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fmethod_180',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcontent_5ftype_181',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcorrelation_5fdata_182',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_183',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fqos_184',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_185',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_186',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freason_5fstring_187',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freceive_5fmaximum_188',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_189',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_190',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5finformation_191',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5ftopic_192',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fretain_5favailable_193',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5fkeep_5falive_194',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5freference_195',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_196',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_197',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifier_198',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_199',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_200',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_201',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fuser_5fproperty_202',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_203',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_204',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], - ['mqttproperty_5fgettype_205',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbinary_5fdata_206',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbyte_207',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_208',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_209',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_210',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_211',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_212',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], - ['mqttpropertycodes_213',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], - ['mqttpropertyname_214',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], - ['mqttpropertytypes_215',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], - ['mqttreasoncode_5fadministrative_5faction_216',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fauthentication_5fmethod_217',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_218',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbanned_219',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_220',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fconnection_5frate_5fexceeded_221',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fcontinue_5fauthentication_222',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_223',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f0_224',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f1_225',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f2_226',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fimplementation_5fspecific_5ferror_227',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fkeep_5falive_5ftimeout_228',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmalformed_5fpacket_229',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmaximum_5fconnect_5ftime_230',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_231',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fmatching_5fsubscribers_232',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fsubscription_5ffound_233',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnormal_5fdisconnection_234',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnot_5fauthorized_235',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_236',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_237',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5ftoo_5flarge_238',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpayload_5fformat_5finvalid_239',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fprotocol_5ferror_240',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fqos_5fnot_5fsupported_241',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fquota_5fexceeded_242',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fre_5fauthenticate_243',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_244',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fretain_5fnot_5fsupported_245',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fbusy_246',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fmoved_247',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fshutting_5fdown_248',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5funavailable_249',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsession_5ftaken_5fover_250',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_251',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_252',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsuccess_253',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5falias_5finvalid_254',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5ffilter_5finvalid_255',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5fname_5finvalid_256',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftostring_257',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funspecified_5ferror_258',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funsupported_5fprotocol_5fversion_259',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fuse_5fanother_5fserver_260',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_261',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncodes_262',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]], - ['mqttreasoncodes_2eh_263',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], - ['mqttsubscribe_5foptions_264',['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_265',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], - ['mqttsubscribeopts_2eh_266',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]], - ['mqttversion_267',['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_268',['MQTTVERSION_3_1',['../_m_q_t_t_async_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTAsync.h']]], - ['mqttversion_5f3_5f1_5f1_269',['MQTTVERSION_3_1_1',['../_m_q_t_t_async_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTAsync.h']]], - ['mqttversion_5f5_270',['MQTTVERSION_5',['../_m_q_t_t_async_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTAsync.h']]], - ['mqttversion_5fdefault_271',['MQTTVERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTAsync.h']]], - ['msgid_272',['msgid',['../struct_m_q_t_t_async__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTAsync_message']]] + ['mqttasync_5fcommand_5fignored_58',['MQTTASYNC_COMMAND_IGNORED',['../_m_q_t_t_async_8h.html#a8278cf4b50dd818c31fa12e45f074b5c',1,'MQTTAsync.h']]], + ['mqttasync_5fconnect_59',['MQTTAsync_connect',['../_m_q_t_t_async_8h.html#a0388b226a414b09fa733f6d65004ec32',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectdata_60',['MQTTAsync_connectData',['../struct_m_q_t_t_async__connect_data.html',1,'']]], + ['mqttasync_5fconnectdata_5finitializer_61',['MQTTAsync_connectData_initializer',['../_m_q_t_t_async_8h.html#a2e415e68016ae56f6bbbbdc9840a9c6e',1,'MQTTAsync.h']]], + ['mqttasync_5fconnected_62',['MQTTAsync_connected',['../_m_q_t_t_async_8h.html#a34bb8d321e9d368780b5c832c058f223',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectionlost_63',['MQTTAsync_connectionLost',['../_m_q_t_t_async_8h.html#a3900a98d7b1d58ad6e686bfce298bb6c',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_64',['MQTTAsync_connectOptions',['../struct_m_q_t_t_async__connect_options.html',1,'']]], + ['mqttasync_5fconnectoptions_5finitializer_65',['MQTTAsync_connectOptions_initializer',['../_m_q_t_t_async_8h.html#ae18b51f22784a43803eb809d6a0c2492',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer5_66',['MQTTAsync_connectOptions_initializer5',['../_m_q_t_t_async_8h.html#abd403ce21f7aa0348ae1d3eefd031a5d',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer5_5fws_67',['MQTTAsync_connectOptions_initializer5_ws',['../_m_q_t_t_async_8h.html#a513bfbec7b7d39c827240db75aa4044b',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer_5fws_68',['MQTTAsync_connectOptions_initializer_ws',['../_m_q_t_t_async_8h.html#a080951d916d7a58c4ceff8c6bacfe313',1,'MQTTAsync.h']]], + ['mqttasync_5fcreate_69',['MQTTAsync_create',['../_m_q_t_t_async_8h.html#a5462c4618d0a229116db5fbadacf95d2',1,'MQTTAsync.h']]], + ['mqttasync_5fcreateoptions_70',['MQTTAsync_createOptions',['../struct_m_q_t_t_async__create_options.html',1,'']]], + ['mqttasync_5fcreateoptions_5finitializer_71',['MQTTAsync_createOptions_initializer',['../_m_q_t_t_async_8h.html#a5fedeafef4753f09b1bcb92773564786',1,'MQTTAsync.h']]], + ['mqttasync_5fcreateoptions_5finitializer5_72',['MQTTAsync_createOptions_initializer5',['../_m_q_t_t_async_8h.html#a0008776a46e7268ccbef4774ce3d4579',1,'MQTTAsync.h']]], + ['mqttasync_5fcreatewithoptions_73',['MQTTAsync_createWithOptions',['../_m_q_t_t_async_8h.html#a78cbe1b851fea48001112f7ba9e4ea62',1,'MQTTAsync.h']]], + ['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_5fmessages_95',['MQTTASYNC_MAX_BUFFERED_MESSAGES',['../_m_q_t_t_async_8h.html#a4e338072cfd5291b579e4f0c99a6e773',1,'MQTTAsync.h']]], + ['mqttasync_5fmax_5fmessages_5finflight_96',['MQTTASYNC_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_async_8h.html#ad577286d43c72fbc49818aac42f4e24a',1,'MQTTAsync.h']]], + ['mqttasync_5fmessage_97',['MQTTAsync_message',['../struct_m_q_t_t_async__message.html',1,'']]], + ['mqttasync_5fmessage_5finitializer_98',['MQTTAsync_message_initializer',['../_m_q_t_t_async_8h.html#a6a85061dadab532f28e96e5ab3c600e9',1,'MQTTAsync.h']]], + ['mqttasync_5fmessagearrived_99',['MQTTAsync_messageArrived',['../_m_q_t_t_async_8h.html#a3918ead59b56816a8d7544def184e48e',1,'MQTTAsync.h']]], + ['mqttasync_5fnamevalue_100',['MQTTAsync_nameValue',['../struct_m_q_t_t_async__name_value.html',1,'']]], + ['mqttasync_5fno_5fmore_5fmsgids_101',['MQTTASYNC_NO_MORE_MSGIDS',['../_m_q_t_t_async_8h.html#ab0f54d0bae2c74849022a8009e5d6ff7',1,'MQTTAsync.h']]], + ['mqttasync_5fnull_5fparameter_102',['MQTTASYNC_NULL_PARAMETER',['../_m_q_t_t_async_8h.html#ab88e1ebcee991099a72429e52a8253fd',1,'MQTTAsync.h']]], + ['mqttasync_5fonfailure_103',['MQTTAsync_onFailure',['../_m_q_t_t_async_8h.html#a6060c25c2641e878803aef76fefb31ee',1,'MQTTAsync.h']]], + ['mqttasync_5fonfailure5_104',['MQTTAsync_onFailure5',['../_m_q_t_t_async_8h.html#a8c5023e04d5c3e9805d5dae76df21f4c',1,'MQTTAsync.h']]], + ['mqttasync_5fonsuccess_105',['MQTTAsync_onSuccess',['../_m_q_t_t_async_8h.html#a7b0c18a0e29e2ce73f3ea109bc32617b',1,'MQTTAsync.h']]], + ['mqttasync_5fonsuccess5_106',['MQTTAsync_onSuccess5',['../_m_q_t_t_async_8h.html#a892cf122e6e8d8f6cd38c4c8efe8fb67',1,'MQTTAsync.h']]], + ['mqttasync_5foperation_5fincomplete_107',['MQTTASYNC_OPERATION_INCOMPLETE',['../_m_q_t_t_async_8h.html#aee1b79d0632bec0fe49eb7ea1abd3b2e',1,'MQTTAsync.h']]], + ['mqttasync_5fpersistence_5ferror_108',['MQTTASYNC_PERSISTENCE_ERROR',['../_m_q_t_t_async_8h.html#a4edf1249c75abd4975fec8ddeae2cdc9',1,'MQTTAsync.h']]], + ['mqttasync_5freconnect_109',['MQTTAsync_reconnect',['../_m_q_t_t_async_8h.html#abd3ea01869b89ff23f9522640479c395',1,'MQTTAsync.h']]], + ['mqttasync_5fresponseoptions_110',['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_111',['MQTTAsync_responseOptions_initializer',['../_m_q_t_t_async_8h.html#a3f8b408243b5c2369bc9758f2edf0878',1,'MQTTAsync.h']]], + ['mqttasync_5fsend_112',['MQTTAsync_send',['../_m_q_t_t_async_8h.html#a63c66a311ab16239a4175ff671871bf2',1,'MQTTAsync.h']]], + ['mqttasync_5fsendmessage_113',['MQTTAsync_sendMessage',['../_m_q_t_t_async_8h.html#a5687171e67e98f9ea590c9e3b64cde18',1,'MQTTAsync.h']]], + ['mqttasync_5fsetafterpersistenceread_114',['MQTTAsync_setAfterPersistenceRead',['../_m_q_t_t_async_8h.html#ab4d16e3c57502be6a7d1b1d3bcc382f3',1,'MQTTAsync.h']]], + ['mqttasync_5fsetbeforepersistencewrite_115',['MQTTAsync_setBeforePersistenceWrite',['../_m_q_t_t_async_8h.html#a1002b09c62a096578c9b3e0135eb98c1',1,'MQTTAsync.h']]], + ['mqttasync_5fsetcallbacks_116',['MQTTAsync_setCallbacks',['../_m_q_t_t_async_8h.html#ae9ae8d61023e7029ef5a19f5219c3599',1,'MQTTAsync.h']]], + ['mqttasync_5fsetconnected_117',['MQTTAsync_setConnected',['../_m_q_t_t_async_8h.html#a18cc19740d9b00c629dc53a4420ecf1f',1,'MQTTAsync.h']]], + ['mqttasync_5fsetconnectionlostcallback_118',['MQTTAsync_setConnectionLostCallback',['../_m_q_t_t_async_8h.html#aee15bbd9224efd9dcce9b4ae491b2e2e',1,'MQTTAsync.h']]], + ['mqttasync_5fsetdeliverycompletecallback_119',['MQTTAsync_setDeliveryCompleteCallback',['../_m_q_t_t_async_8h.html#a94ec624ee22cc01d2ca58a9e646a2665',1,'MQTTAsync.h']]], + ['mqttasync_5fsetdisconnected_120',['MQTTAsync_setDisconnected',['../_m_q_t_t_async_8h.html#ada4dd26d23c8849c51e4ab8200339040',1,'MQTTAsync.h']]], + ['mqttasync_5fsetmessagearrivedcallback_121',['MQTTAsync_setMessageArrivedCallback',['../_m_q_t_t_async_8h.html#a44abc360051b918a39b0596a137775ae',1,'MQTTAsync.h']]], + ['mqttasync_5fsettracecallback_122',['MQTTAsync_setTraceCallback',['../_m_q_t_t_async_8h.html#a0b350581324a4ff0eaee71e7a6721388',1,'MQTTAsync.h']]], + ['mqttasync_5fsettracelevel_123',['MQTTAsync_setTraceLevel',['../_m_q_t_t_async_8h.html#ac7fbab13a0b2e5dd4ee11efbbb9f6a3a',1,'MQTTAsync.h']]], + ['mqttasync_5fsetupdateconnectoptions_124',['MQTTAsync_setUpdateConnectOptions',['../_m_q_t_t_async_8h.html#aa078aec3eba83481f63db3c3939a5da9',1,'MQTTAsync.h']]], + ['mqttasync_5fssl_5fnot_5fsupported_125',['MQTTASYNC_SSL_NOT_SUPPORTED',['../_m_q_t_t_async_8h.html#a6992c00553db1608aef9e162c161d73c',1,'MQTTAsync.h']]], + ['mqttasync_5fssloptions_126',['MQTTAsync_SSLOptions',['../struct_m_q_t_t_async___s_s_l_options.html',1,'']]], + ['mqttasync_5fssloptions_5finitializer_127',['MQTTAsync_SSLOptions_initializer',['../_m_q_t_t_async_8h.html#aac935e2e9d770a53ee8189f128530511',1,'MQTTAsync.h']]], + ['mqttasync_5fstrerror_128',['MQTTAsync_strerror',['../_m_q_t_t_async_8h.html#a875cd089a8b23eb3fd50c0406fc75d9f',1,'MQTTAsync.h']]], + ['mqttasync_5fsubscribe_129',['MQTTAsync_subscribe',['../_m_q_t_t_async_8h.html#ae10bd009934b3bb4a9f4abae7424a611',1,'MQTTAsync.h']]], + ['mqttasync_5fsubscribemany_130',['MQTTAsync_subscribeMany',['../_m_q_t_t_async_8h.html#ac78620b33434a187255bd1a3faec1578',1,'MQTTAsync.h']]], + ['mqttasync_5fsuccess_131',['MQTTASYNC_SUCCESS',['../_m_q_t_t_async_8h.html#afe0cffcce8efe25186f79c51ac44e16f',1,'MQTTAsync.h']]], + ['mqttasync_5fsuccessdata_132',['MQTTAsync_successData',['../struct_m_q_t_t_async__success_data.html',1,'']]], + ['mqttasync_5fsuccessdata5_133',['MQTTAsync_successData5',['../struct_m_q_t_t_async__success_data5.html',1,'']]], + ['mqttasync_5fsuccessdata5_5finitializer_134',['MQTTAsync_successData5_initializer',['../_m_q_t_t_async_8h.html#a6182ec90ec4a134465f627b324ac5a41',1,'MQTTAsync.h']]], + ['mqttasync_5ftoken_135',['MQTTAsync_token',['../_m_q_t_t_async_8h.html#a7ca6d2a1813f2bbd0bc3af2771e46ba4',1,'MQTTAsync.h']]], + ['mqttasync_5ftopicname_5ftruncated_136',['MQTTASYNC_TOPICNAME_TRUNCATED',['../_m_q_t_t_async_8h.html#a77a7106d97ff60be3fe70f90b1867800',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5ferror_137',['MQTTASYNC_TRACE_ERROR',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5ac428f74ca453dacb7b8271ca741266e8',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5ffatal_138',['MQTTASYNC_TRACE_FATAL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a0b91d2213ebb6655e41a7f6ce1a42295',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5flevels_139',['MQTTASYNC_TRACE_LEVELS',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fmaximum_140',['MQTTASYNC_TRACE_MAXIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5af684f42971cced68693ce993703548c1',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fmedium_141',['MQTTASYNC_TRACE_MEDIUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a133c380b84d75477ff31a2ad732133ce',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fminimum_142',['MQTTASYNC_TRACE_MINIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a7a45c26816b1cac1fde02d79a9f4337b',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fprotocol_143',['MQTTASYNC_TRACE_PROTOCOL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a6a719b2b7fc4dfc41494370ff96fec3e',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fsevere_144',['MQTTASYNC_TRACE_SEVERE',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a3084770185f384398cefe4aaba533d40',1,'MQTTAsync.h']]], + ['mqttasync_5ftracecallback_145',['MQTTAsync_traceCallback',['../_m_q_t_t_async_8h.html#a65aba1caeae9b5af5d5b6c5598a75b02',1,'MQTTAsync.h']]], + ['mqttasync_5ftrue_146',['MQTTASYNC_TRUE',['../_m_q_t_t_async_8h.html#a61e6ee632e63312d382e2fcbe427f01a',1,'MQTTAsync.h']]], + ['mqttasync_5funsubscribe_147',['MQTTAsync_unsubscribe',['../_m_q_t_t_async_8h.html#a08d18ece91c1b011011354570d8ac1ab',1,'MQTTAsync.h']]], + ['mqttasync_5funsubscribemany_148',['MQTTAsync_unsubscribeMany',['../_m_q_t_t_async_8h.html#a69fd433ce1b9b6a1b3b453c4793a9311',1,'MQTTAsync.h']]], + ['mqttasync_5fupdateconnectoptions_149',['MQTTAsync_updateConnectOptions',['../_m_q_t_t_async_8h.html#a5e44304a2c011a7d61b72c779ad83979',1,'MQTTAsync.h']]], + ['mqttasync_5fwaitforcompletion_150',['MQTTAsync_waitForCompletion',['../_m_q_t_t_async_8h.html#a4fe09cc9c976b1cf424e13765d6cd8c9',1,'MQTTAsync.h']]], + ['mqttasync_5fwilloptions_151',['MQTTAsync_willOptions',['../struct_m_q_t_t_async__will_options.html',1,'']]], + ['mqttasync_5fwilloptions_5finitializer_152',['MQTTAsync_willOptions_initializer',['../_m_q_t_t_async_8h.html#a6c45768e1b28844f2ac0f6ac68709730',1,'MQTTAsync.h']]], + ['mqttasync_5fwrong_5fmqtt_5fversion_153',['MQTTASYNC_WRONG_MQTT_VERSION',['../_m_q_t_t_async_8h.html#af5df806e9767e1e3182fe089a8ee551b',1,'MQTTAsync.h']]], + ['mqttclient_5fpersistence_154',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], + ['mqttclient_5fpersistence_5fdefault_155',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5ferror_156',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fnone_157',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fuser_158',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], + ['mqttclientpersistence_2eh_159',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], + ['mqttlenstring_160',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], + ['mqttpersistence_5fafterread_161',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], + ['mqttpersistence_5fbeforewrite_162',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], + ['mqttproperties_163',['MQTTProperties',['../struct_m_q_t_t_properties.html',1,'MQTTProperties'],['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties(): MQTTProperties.h']]], + ['mqttproperties_2eh_164',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], + ['mqttproperties_5fadd_165',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], + ['mqttproperties_5fcopy_166',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], + ['mqttproperties_5ffree_167',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalue_168',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalueat_169',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetproperty_170',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetpropertyat_171',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], + ['mqttproperties_5fhasproperty_172',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], + ['mqttproperties_5finitializer_173',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], + ['mqttproperties_5flen_174',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], + ['mqttproperties_5fpropertycount_175',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], + ['mqttproperties_5fread_176',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], + ['mqttproperties_5fwrite_177',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], + ['mqttproperty_178',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], + ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_179',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fdata_180',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fmethod_181',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcontent_5ftype_182',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcorrelation_5fdata_183',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_184',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fqos_185',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_186',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_187',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freason_5fstring_188',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freceive_5fmaximum_189',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_190',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_191',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5finformation_192',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5ftopic_193',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fretain_5favailable_194',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5fkeep_5falive_195',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5freference_196',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_197',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_198',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifier_199',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_200',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_201',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_202',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fuser_5fproperty_203',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_204',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_205',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], + ['mqttproperty_5fgettype_206',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbinary_5fdata_207',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbyte_208',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_209',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_210',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_211',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_212',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_213',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], + ['mqttpropertycodes_214',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], + ['mqttpropertyname_215',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], + ['mqttpropertytypes_216',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], + ['mqttreasoncode_5fadministrative_5faction_217',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fauthentication_5fmethod_218',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_219',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbanned_220',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_221',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fconnection_5frate_5fexceeded_222',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fcontinue_5fauthentication_223',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_224',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f0_225',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f1_226',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f2_227',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fimplementation_5fspecific_5ferror_228',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fkeep_5falive_5ftimeout_229',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmalformed_5fpacket_230',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmaximum_5fconnect_5ftime_231',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_232',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fmatching_5fsubscribers_233',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fsubscription_5ffound_234',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnormal_5fdisconnection_235',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnot_5fauthorized_236',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_237',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_238',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5ftoo_5flarge_239',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpayload_5fformat_5finvalid_240',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fprotocol_5ferror_241',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fqos_5fnot_5fsupported_242',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fquota_5fexceeded_243',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fre_5fauthenticate_244',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_245',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fretain_5fnot_5fsupported_246',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fbusy_247',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fmoved_248',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fshutting_5fdown_249',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5funavailable_250',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsession_5ftaken_5fover_251',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_252',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_253',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsuccess_254',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5falias_5finvalid_255',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5ffilter_5finvalid_256',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5fname_5finvalid_257',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftostring_258',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funspecified_5ferror_259',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funsupported_5fprotocol_5fversion_260',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fuse_5fanother_5fserver_261',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_262',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncodes_263',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]], + ['mqttreasoncodes_2eh_264',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], + ['mqttsubscribe_5foptions_265',['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_266',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], + ['mqttsubscribeopts_2eh_267',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]], + ['mqttversion_268',['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_269',['MQTTVERSION_3_1',['../_m_q_t_t_async_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTAsync.h']]], + ['mqttversion_5f3_5f1_5f1_270',['MQTTVERSION_3_1_1',['../_m_q_t_t_async_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTAsync.h']]], + ['mqttversion_5f5_271',['MQTTVERSION_5',['../_m_q_t_t_async_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTAsync.h']]], + ['mqttversion_5fdefault_272',['MQTTVERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTAsync.h']]], + ['msgid_273',['msgid',['../struct_m_q_t_t_async__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTAsync_message']]] ]; diff --git a/docs/MQTTAsync/html/search/all_a.js b/docs/MQTTAsync/html/search/all_a.js index 85a56a8c..b58d6049 100644 --- a/docs/MQTTAsync/html/search/all_a.js +++ b/docs/MQTTAsync/html/search/all_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['name_273',['name',['../struct_m_q_t_t_async__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTAsync_nameValue']]], - ['nolocal_274',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] + ['name_274',['name',['../struct_m_q_t_t_async__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTAsync_nameValue']]], + ['nolocal_275',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] ]; diff --git a/docs/MQTTAsync/html/search/all_b.js b/docs/MQTTAsync/html/search/all_b.js index 0c3c4c79..6d35bee2 100644 --- a/docs/MQTTAsync/html/search/all_b.js +++ b/docs/MQTTAsync/html/search/all_b.js @@ -1,7 +1,7 @@ var searchData= [ - ['onfailure_275',['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_276',['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_277',['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_278',['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_276',['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_277',['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_278',['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_279',['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.js b/docs/MQTTAsync/html/search/all_c.js index 82d557fe..bd1af27b 100644 --- a/docs/MQTTAsync/html/search/all_c.js +++ b/docs/MQTTAsync/html/search/all_c.js @@ -1,32 +1,32 @@ var searchData= [ - ['publish_20while_20disconnected_279',['Publish While Disconnected',['../offline_publish.html',1,'']]], - ['packet_5ftype_280',['packet_type',['../struct_m_q_t_t_async__failure_data5.html#a38dfee9f038f473c95af46fcef5dd3e9',1,'MQTTAsync_failureData5']]], - ['password_281',['password',['../struct_m_q_t_t_async__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTAsync_connectOptions']]], - ['payload_282',['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_283',['payloadlen',['../struct_m_q_t_t_async__message.html#aa3cb44feb3ae6d11b3a4cad2d94cb33a',1,'MQTTAsync_message']]], - ['pclear_284',['pclear',['../struct_m_q_t_t_client__persistence.html#abc192dc88113c7d933b29d3561badbf5',1,'MQTTClient_persistence']]], - ['pclose_285',['pclose',['../struct_m_q_t_t_client__persistence.html#a7e50506912d2ec0e014cc25ec28fb402',1,'MQTTClient_persistence']]], - ['pcontainskey_286',['pcontainskey',['../struct_m_q_t_t_client__persistence.html#ac103711576267f791325f2b70b6dc49d',1,'MQTTClient_persistence']]], - ['persistence_5fclear_287',['Persistence_clear',['../_m_q_t_t_client_persistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], - ['persistence_5fclose_288',['Persistence_close',['../_m_q_t_t_client_persistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], - ['persistence_5fcontainskey_289',['Persistence_containskey',['../_m_q_t_t_client_persistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], - ['persistence_5fget_290',['Persistence_get',['../_m_q_t_t_client_persistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], - ['persistence_5fkeys_291',['Persistence_keys',['../_m_q_t_t_client_persistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], - ['persistence_5fopen_292',['Persistence_open',['../_m_q_t_t_client_persistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], - ['persistence_5fput_293',['Persistence_put',['../_m_q_t_t_client_persistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], - ['persistence_5fremove_294',['Persistence_remove',['../_m_q_t_t_client_persistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]], - ['persistqos0_295',['persistQoS0',['../struct_m_q_t_t_async__create_options.html#a0c3ea2641e188542c787e71e2c521a0b',1,'MQTTAsync_createOptions']]], - ['pget_296',['pget',['../struct_m_q_t_t_client__persistence.html#a49155000b82a28ac3b3cb878f3a092d4',1,'MQTTClient_persistence']]], - ['pkeys_297',['pkeys',['../struct_m_q_t_t_client__persistence.html#a407e86a809e4b0b098a8c158f53b9606',1,'MQTTClient_persistence']]], - ['popen_298',['popen',['../struct_m_q_t_t_client__persistence.html#a1bae211b32415e6b349d5ae71599f9f4',1,'MQTTClient_persistence']]], - ['pput_299',['pput',['../struct_m_q_t_t_client__persistence.html#a4114d9b9971cee18d7e4b9dd5736a608',1,'MQTTClient_persistence']]], - ['premove_300',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], - ['privatekey_301',['privateKey',['../struct_m_q_t_t_async___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTAsync_SSLOptions']]], - ['privatekeypassword_302',['privateKeyPassword',['../struct_m_q_t_t_async___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTAsync_SSLOptions']]], - ['properties_303',['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_304',['protos',['../struct_m_q_t_t_async___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTAsync_SSLOptions']]], - ['protos_5flen_305',['protos_len',['../struct_m_q_t_t_async___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTAsync_SSLOptions']]], - ['pub_306',['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_307',['Publication example',['../publish.html',1,'']]] + ['publish_20while_20disconnected_280',['Publish While Disconnected',['../offline_publish.html',1,'']]], + ['packet_5ftype_281',['packet_type',['../struct_m_q_t_t_async__failure_data5.html#a38dfee9f038f473c95af46fcef5dd3e9',1,'MQTTAsync_failureData5']]], + ['password_282',['password',['../struct_m_q_t_t_async__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTAsync_connectOptions']]], + ['payload_283',['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_284',['payloadlen',['../struct_m_q_t_t_async__message.html#aa3cb44feb3ae6d11b3a4cad2d94cb33a',1,'MQTTAsync_message']]], + ['pclear_285',['pclear',['../struct_m_q_t_t_client__persistence.html#abc192dc88113c7d933b29d3561badbf5',1,'MQTTClient_persistence']]], + ['pclose_286',['pclose',['../struct_m_q_t_t_client__persistence.html#a7e50506912d2ec0e014cc25ec28fb402',1,'MQTTClient_persistence']]], + ['pcontainskey_287',['pcontainskey',['../struct_m_q_t_t_client__persistence.html#ac103711576267f791325f2b70b6dc49d',1,'MQTTClient_persistence']]], + ['persistence_5fclear_288',['Persistence_clear',['../_m_q_t_t_client_persistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], + ['persistence_5fclose_289',['Persistence_close',['../_m_q_t_t_client_persistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], + ['persistence_5fcontainskey_290',['Persistence_containskey',['../_m_q_t_t_client_persistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], + ['persistence_5fget_291',['Persistence_get',['../_m_q_t_t_client_persistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], + ['persistence_5fkeys_292',['Persistence_keys',['../_m_q_t_t_client_persistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], + ['persistence_5fopen_293',['Persistence_open',['../_m_q_t_t_client_persistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], + ['persistence_5fput_294',['Persistence_put',['../_m_q_t_t_client_persistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], + ['persistence_5fremove_295',['Persistence_remove',['../_m_q_t_t_client_persistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]], + ['persistqos0_296',['persistQoS0',['../struct_m_q_t_t_async__create_options.html#a0c3ea2641e188542c787e71e2c521a0b',1,'MQTTAsync_createOptions']]], + ['pget_297',['pget',['../struct_m_q_t_t_client__persistence.html#a49155000b82a28ac3b3cb878f3a092d4',1,'MQTTClient_persistence']]], + ['pkeys_298',['pkeys',['../struct_m_q_t_t_client__persistence.html#a407e86a809e4b0b098a8c158f53b9606',1,'MQTTClient_persistence']]], + ['popen_299',['popen',['../struct_m_q_t_t_client__persistence.html#a1bae211b32415e6b349d5ae71599f9f4',1,'MQTTClient_persistence']]], + ['pput_300',['pput',['../struct_m_q_t_t_client__persistence.html#a4114d9b9971cee18d7e4b9dd5736a608',1,'MQTTClient_persistence']]], + ['premove_301',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], + ['privatekey_302',['privateKey',['../struct_m_q_t_t_async___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTAsync_SSLOptions']]], + ['privatekeypassword_303',['privateKeyPassword',['../struct_m_q_t_t_async___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTAsync_SSLOptions']]], + ['properties_304',['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_305',['protos',['../struct_m_q_t_t_async___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTAsync_SSLOptions']]], + ['protos_5flen_306',['protos_len',['../struct_m_q_t_t_async___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTAsync_SSLOptions']]], + ['pub_307',['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_308',['Publication example',['../publish.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/all_d.js b/docs/MQTTAsync/html/search/all_d.js index 411190e3..b1da2e2e 100644 --- a/docs/MQTTAsync/html/search/all_d.js +++ b/docs/MQTTAsync/html/search/all_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['qos_308',['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_309',['qosList',['../struct_m_q_t_t_async__success_data.html#a82786d9ba5cae39873f378a48b36c23b',1,'MQTTAsync_successData']]] + ['qos_309',['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_310',['qosList',['../struct_m_q_t_t_async__success_data.html#a82786d9ba5cae39873f378a48b36c23b',1,'MQTTAsync_successData']]] ]; diff --git a/docs/MQTTAsync/html/search/all_e.js b/docs/MQTTAsync/html/search/all_e.js index 0fe98a25..dd3f88ef 100644 --- a/docs/MQTTAsync/html/search/all_e.js +++ b/docs/MQTTAsync/html/search/all_e.js @@ -1,11 +1,11 @@ var searchData= [ - ['reasoncode_310',['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_311',['reasonCodeCount',['../struct_m_q_t_t_async__success_data5.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTAsync_successData5']]], - ['reasoncodes_312',['reasonCodes',['../struct_m_q_t_t_async__success_data5.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTAsync_successData5']]], - ['restoremessages_313',['restoreMessages',['../struct_m_q_t_t_async__create_options.html#a231b8890c3bc2ea07f7c599896f30691',1,'MQTTAsync_createOptions']]], - ['retainaspublished_314',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], - ['retained_315',['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_316',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], - ['retryinterval_317',['retryInterval',['../struct_m_q_t_t_async__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTAsync_connectOptions']]] + ['reasoncode_311',['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_312',['reasonCodeCount',['../struct_m_q_t_t_async__success_data5.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTAsync_successData5']]], + ['reasoncodes_313',['reasonCodes',['../struct_m_q_t_t_async__success_data5.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTAsync_successData5']]], + ['restoremessages_314',['restoreMessages',['../struct_m_q_t_t_async__create_options.html#a231b8890c3bc2ea07f7c599896f30691',1,'MQTTAsync_createOptions']]], + ['retainaspublished_315',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], + ['retained_316',['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_317',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], + ['retryinterval_318',['retryInterval',['../struct_m_q_t_t_async__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/all_f.js b/docs/MQTTAsync/html/search/all_f.js index d5d689d1..0ce0df74 100644 --- a/docs/MQTTAsync/html/search/all_f.js +++ b/docs/MQTTAsync/html/search/all_f.js @@ -1,22 +1,22 @@ var searchData= [ - ['sendwhiledisconnected_318',['sendWhileDisconnected',['../struct_m_q_t_t_async__create_options.html#a078cd68d8f896ce7eac0cc83d4486a2c',1,'MQTTAsync_createOptions']]], - ['serveruri_319',['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_320',['serverURIcount',['../struct_m_q_t_t_async__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTAsync_connectOptions']]], - ['serveruris_321',['serverURIs',['../struct_m_q_t_t_async__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTAsync_connectOptions']]], - ['sessionpresent_322',['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_323',['ssl',['../struct_m_q_t_t_async__connect_options.html#a86fd59846f3ba2082fd99906c6b496a6',1,'MQTTAsync_connectOptions']]], - ['ssl_5ferror_5fcb_324',['ssl_error_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a76c7b40e2e258d2f898b53165ada2b70',1,'MQTTAsync_SSLOptions']]], - ['ssl_5ferror_5fcontext_325',['ssl_error_context',['../struct_m_q_t_t_async___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTAsync_SSLOptions']]], - ['ssl_5fpsk_5fcb_326',['ssl_psk_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a83c1245259a491ea9daf872ce04b5e46',1,'MQTTAsync_SSLOptions']]], - ['ssl_5fpsk_5fcontext_327',['ssl_psk_context',['../struct_m_q_t_t_async___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTAsync_SSLOptions']]], - ['sslversion_328',['sslVersion',['../struct_m_q_t_t_async___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTAsync_SSLOptions']]], - ['struct_5fid_329',['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_330',['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_331',['sub',['../struct_m_q_t_t_async__success_data5.html#a26c7d90bad0e00a056dff117b9111346',1,'MQTTAsync_successData5']]], - ['subscription_20example_332',['Subscription example',['../subscribe.html',1,'']]], - ['subscribeoptions_333',['subscribeOptions',['../struct_m_q_t_t_async__response_options.html#a16a3cd2a8c69669e9ed6e420ccd9c517',1,'MQTTAsync_responseOptions']]], - ['subscribeoptionscount_334',['subscribeOptionsCount',['../struct_m_q_t_t_async__response_options.html#a1a4b9bb2780472ec7bb65d0df1bf5d26',1,'MQTTAsync_responseOptions']]], - ['subscribeoptionslist_335',['subscribeOptionsList',['../struct_m_q_t_t_async__response_options.html#a98f71c5d03dc5ee86fd9dc0119ccb961',1,'MQTTAsync_responseOptions']]], - ['subscription_20wildcards_336',['Subscription wildcards',['../wildcard.html',1,'']]] + ['sendwhiledisconnected_319',['sendWhileDisconnected',['../struct_m_q_t_t_async__create_options.html#a078cd68d8f896ce7eac0cc83d4486a2c',1,'MQTTAsync_createOptions']]], + ['serveruri_320',['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_321',['serverURIcount',['../struct_m_q_t_t_async__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTAsync_connectOptions']]], + ['serveruris_322',['serverURIs',['../struct_m_q_t_t_async__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTAsync_connectOptions']]], + ['sessionpresent_323',['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_324',['ssl',['../struct_m_q_t_t_async__connect_options.html#a86fd59846f3ba2082fd99906c6b496a6',1,'MQTTAsync_connectOptions']]], + ['ssl_5ferror_5fcb_325',['ssl_error_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a76c7b40e2e258d2f898b53165ada2b70',1,'MQTTAsync_SSLOptions']]], + ['ssl_5ferror_5fcontext_326',['ssl_error_context',['../struct_m_q_t_t_async___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTAsync_SSLOptions']]], + ['ssl_5fpsk_5fcb_327',['ssl_psk_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a83c1245259a491ea9daf872ce04b5e46',1,'MQTTAsync_SSLOptions']]], + ['ssl_5fpsk_5fcontext_328',['ssl_psk_context',['../struct_m_q_t_t_async___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTAsync_SSLOptions']]], + ['sslversion_329',['sslVersion',['../struct_m_q_t_t_async___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTAsync_SSLOptions']]], + ['struct_5fid_330',['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_331',['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_332',['sub',['../struct_m_q_t_t_async__success_data5.html#a26c7d90bad0e00a056dff117b9111346',1,'MQTTAsync_successData5']]], + ['subscription_20example_333',['Subscription example',['../subscribe.html',1,'']]], + ['subscribeoptions_334',['subscribeOptions',['../struct_m_q_t_t_async__response_options.html#a16a3cd2a8c69669e9ed6e420ccd9c517',1,'MQTTAsync_responseOptions']]], + ['subscribeoptionscount_335',['subscribeOptionsCount',['../struct_m_q_t_t_async__response_options.html#a1a4b9bb2780472ec7bb65d0df1bf5d26',1,'MQTTAsync_responseOptions']]], + ['subscribeoptionslist_336',['subscribeOptionsList',['../struct_m_q_t_t_async__response_options.html#a98f71c5d03dc5ee86fd9dc0119ccb961',1,'MQTTAsync_responseOptions']]], + ['subscription_20wildcards_337',['Subscription wildcards',['../wildcard.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/classes_0.js b/docs/MQTTAsync/html/search/classes_0.js index 4a9875a4..a2ed747d 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_349',['MQTTAsync_connectData',['../struct_m_q_t_t_async__connect_data.html',1,'']]], - ['mqttasync_5fconnectoptions_350',['MQTTAsync_connectOptions',['../struct_m_q_t_t_async__connect_options.html',1,'']]], - ['mqttasync_5fcreateoptions_351',['MQTTAsync_createOptions',['../struct_m_q_t_t_async__create_options.html',1,'']]], - ['mqttasync_5fdisconnectoptions_352',['MQTTAsync_disconnectOptions',['../struct_m_q_t_t_async__disconnect_options.html',1,'']]], - ['mqttasync_5ffailuredata_353',['MQTTAsync_failureData',['../struct_m_q_t_t_async__failure_data.html',1,'']]], - ['mqttasync_5ffailuredata5_354',['MQTTAsync_failureData5',['../struct_m_q_t_t_async__failure_data5.html',1,'']]], - ['mqttasync_5finit_5foptions_355',['MQTTAsync_init_options',['../struct_m_q_t_t_async__init__options.html',1,'']]], - ['mqttasync_5fmessage_356',['MQTTAsync_message',['../struct_m_q_t_t_async__message.html',1,'']]], - ['mqttasync_5fnamevalue_357',['MQTTAsync_nameValue',['../struct_m_q_t_t_async__name_value.html',1,'']]], - ['mqttasync_5fresponseoptions_358',['MQTTAsync_responseOptions',['../struct_m_q_t_t_async__response_options.html',1,'']]], - ['mqttasync_5fssloptions_359',['MQTTAsync_SSLOptions',['../struct_m_q_t_t_async___s_s_l_options.html',1,'']]], - ['mqttasync_5fsuccessdata_360',['MQTTAsync_successData',['../struct_m_q_t_t_async__success_data.html',1,'']]], - ['mqttasync_5fsuccessdata5_361',['MQTTAsync_successData5',['../struct_m_q_t_t_async__success_data5.html',1,'']]], - ['mqttasync_5fwilloptions_362',['MQTTAsync_willOptions',['../struct_m_q_t_t_async__will_options.html',1,'']]], - ['mqttclient_5fpersistence_363',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], - ['mqttlenstring_364',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], - ['mqttproperties_365',['MQTTProperties',['../struct_m_q_t_t_properties.html',1,'']]], - ['mqttproperty_366',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], - ['mqttsubscribe_5foptions_367',['MQTTSubscribe_options',['../struct_m_q_t_t_subscribe__options.html',1,'']]] + ['mqttasync_5fconnectdata_350',['MQTTAsync_connectData',['../struct_m_q_t_t_async__connect_data.html',1,'']]], + ['mqttasync_5fconnectoptions_351',['MQTTAsync_connectOptions',['../struct_m_q_t_t_async__connect_options.html',1,'']]], + ['mqttasync_5fcreateoptions_352',['MQTTAsync_createOptions',['../struct_m_q_t_t_async__create_options.html',1,'']]], + ['mqttasync_5fdisconnectoptions_353',['MQTTAsync_disconnectOptions',['../struct_m_q_t_t_async__disconnect_options.html',1,'']]], + ['mqttasync_5ffailuredata_354',['MQTTAsync_failureData',['../struct_m_q_t_t_async__failure_data.html',1,'']]], + ['mqttasync_5ffailuredata5_355',['MQTTAsync_failureData5',['../struct_m_q_t_t_async__failure_data5.html',1,'']]], + ['mqttasync_5finit_5foptions_356',['MQTTAsync_init_options',['../struct_m_q_t_t_async__init__options.html',1,'']]], + ['mqttasync_5fmessage_357',['MQTTAsync_message',['../struct_m_q_t_t_async__message.html',1,'']]], + ['mqttasync_5fnamevalue_358',['MQTTAsync_nameValue',['../struct_m_q_t_t_async__name_value.html',1,'']]], + ['mqttasync_5fresponseoptions_359',['MQTTAsync_responseOptions',['../struct_m_q_t_t_async__response_options.html',1,'']]], + ['mqttasync_5fssloptions_360',['MQTTAsync_SSLOptions',['../struct_m_q_t_t_async___s_s_l_options.html',1,'']]], + ['mqttasync_5fsuccessdata_361',['MQTTAsync_successData',['../struct_m_q_t_t_async__success_data.html',1,'']]], + ['mqttasync_5fsuccessdata5_362',['MQTTAsync_successData5',['../struct_m_q_t_t_async__success_data5.html',1,'']]], + ['mqttasync_5fwilloptions_363',['MQTTAsync_willOptions',['../struct_m_q_t_t_async__will_options.html',1,'']]], + ['mqttclient_5fpersistence_364',['MQTTClient_persistence',['../struct_m_q_t_t_client__persistence.html',1,'']]], + ['mqttlenstring_365',['MQTTLenString',['../struct_m_q_t_t_len_string.html',1,'']]], + ['mqttproperties_366',['MQTTProperties',['../struct_m_q_t_t_properties.html',1,'']]], + ['mqttproperty_367',['MQTTProperty',['../struct_m_q_t_t_property.html',1,'']]], + ['mqttsubscribe_5foptions_368',['MQTTSubscribe_options',['../struct_m_q_t_t_subscribe__options.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/defines_0.js b/docs/MQTTAsync/html/search/defines_0.js index 74cbea51..2091fe88 100644 --- a/docs/MQTTAsync/html/search/defines_0.js +++ b/docs/MQTTAsync/html/search/defines_0.js @@ -1,55 +1,56 @@ var searchData= [ - ['mqtt_5fbad_5fsubscribe_641',['MQTT_BAD_SUBSCRIBE',['../_m_q_t_t_async_8h.html#ade337b363b7f4bc7c1a7b2858e0380bd',1,'MQTTAsync.h']]], - ['mqtt_5finvalid_5fproperty_5fid_642',['MQTT_INVALID_PROPERTY_ID',['../_m_q_t_t_properties_8h.html#afc56d2e8937a0c8f180d68ad93945945',1,'MQTTProperties.h']]], - ['mqtt_5fssl_5fversion_5fdefault_643',['MQTT_SSL_VERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a2549ea897af26c76198284731db9e721',1,'MQTTAsync.h']]], - ['mqtt_5fssl_5fversion_5ftls_5f1_5f0_644',['MQTT_SSL_VERSION_TLS_1_0',['../_m_q_t_t_async_8h.html#a7e5da3d6f0d2b53409bbfcf6e56f3d2d',1,'MQTTAsync.h']]], - ['mqtt_5fssl_5fversion_5ftls_5f1_5f1_645',['MQTT_SSL_VERSION_TLS_1_1',['../_m_q_t_t_async_8h.html#abdff87efa3f2ee473a1591e10638b537',1,'MQTTAsync.h']]], - ['mqtt_5fssl_5fversion_5ftls_5f1_5f2_646',['MQTT_SSL_VERSION_TLS_1_2',['../_m_q_t_t_async_8h.html#a3a94dbdeafbb73c73a068e7c2085fbab',1,'MQTTAsync.h']]], - ['mqttasync_5f0_5flen_5fwill_5ftopic_647',['MQTTASYNC_0_LEN_WILL_TOPIC',['../_m_q_t_t_async_8h.html#a47b3aed75983f48a503e1cad6c862004',1,'MQTTAsync.h']]], - ['mqttasync_5fbad_5fmqtt_5foption_648',['MQTTASYNC_BAD_MQTT_OPTION',['../_m_q_t_t_async_8h.html#af6f97562573876867ba77460a51ca1d1',1,'MQTTAsync.h']]], - ['mqttasync_5fbad_5fprotocol_649',['MQTTASYNC_BAD_PROTOCOL',['../_m_q_t_t_async_8h.html#a785250cd4a1938ffeeff67b3538abfba',1,'MQTTAsync.h']]], - ['mqttasync_5fbad_5fqos_650',['MQTTASYNC_BAD_QOS',['../_m_q_t_t_async_8h.html#a64d111778ce4e0d3a62808f6db11f224',1,'MQTTAsync.h']]], - ['mqttasync_5fbad_5fstructure_651',['MQTTASYNC_BAD_STRUCTURE',['../_m_q_t_t_async_8h.html#a241fc8db46dca132d591bc2be92247ba',1,'MQTTAsync.h']]], - ['mqttasync_5fbad_5futf8_5fstring_652',['MQTTASYNC_BAD_UTF8_STRING',['../_m_q_t_t_async_8h.html#a80cbe091930c11b67ca719b3e385aa26',1,'MQTTAsync.h']]], - ['mqttasync_5fcalloptions_5finitializer_653',['MQTTAsync_callOptions_initializer',['../_m_q_t_t_async_8h.html#a570185766fc8a9da410a6f84915b6df5',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectdata_5finitializer_654',['MQTTAsync_connectData_initializer',['../_m_q_t_t_async_8h.html#a2e415e68016ae56f6bbbbdc9840a9c6e',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer_655',['MQTTAsync_connectOptions_initializer',['../_m_q_t_t_async_8h.html#ae18b51f22784a43803eb809d6a0c2492',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer5_656',['MQTTAsync_connectOptions_initializer5',['../_m_q_t_t_async_8h.html#abd403ce21f7aa0348ae1d3eefd031a5d',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer5_5fws_657',['MQTTAsync_connectOptions_initializer5_ws',['../_m_q_t_t_async_8h.html#a513bfbec7b7d39c827240db75aa4044b',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectoptions_5finitializer_5fws_658',['MQTTAsync_connectOptions_initializer_ws',['../_m_q_t_t_async_8h.html#a080951d916d7a58c4ceff8c6bacfe313',1,'MQTTAsync.h']]], - ['mqttasync_5fcreateoptions_5finitializer_659',['MQTTAsync_createOptions_initializer',['../_m_q_t_t_async_8h.html#a5fedeafef4753f09b1bcb92773564786',1,'MQTTAsync.h']]], - ['mqttasync_5fcreateoptions_5finitializer5_660',['MQTTAsync_createOptions_initializer5',['../_m_q_t_t_async_8h.html#a0008776a46e7268ccbef4774ce3d4579',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnected_661',['MQTTASYNC_DISCONNECTED',['../_m_q_t_t_async_8h.html#a66c0f30b329bc770145c2f04b3929df6',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnectoptions_5finitializer_662',['MQTTAsync_disconnectOptions_initializer',['../_m_q_t_t_async_8h.html#a2fd5d6df31928ae468f3f2e522b9c707',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnectoptions_5finitializer5_663',['MQTTAsync_disconnectOptions_initializer5',['../_m_q_t_t_async_8h.html#aaa278001953dc129003eff83c8e7b3db',1,'MQTTAsync.h']]], - ['mqttasync_5ffailure_664',['MQTTASYNC_FAILURE',['../_m_q_t_t_async_8h.html#a7c8230fef85fc04b8a1035501f3be406',1,'MQTTAsync.h']]], - ['mqttasync_5ffailuredata5_5finitializer_665',['MQTTAsync_failureData5_initializer',['../_m_q_t_t_async_8h.html#a53ce2002ae2c2579575bb41c48c51c29',1,'MQTTAsync.h']]], - ['mqttasync_5finit_5foptions_5finitializer_666',['MQTTAsync_init_options_initializer',['../_m_q_t_t_async_8h.html#a866e023f70141969d48597930c0ee313',1,'MQTTAsync.h']]], - ['mqttasync_5fmax_5fbuffered_5fmessages_667',['MQTTASYNC_MAX_BUFFERED_MESSAGES',['../_m_q_t_t_async_8h.html#a4e338072cfd5291b579e4f0c99a6e773',1,'MQTTAsync.h']]], - ['mqttasync_5fmax_5fmessages_5finflight_668',['MQTTASYNC_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_async_8h.html#ad577286d43c72fbc49818aac42f4e24a',1,'MQTTAsync.h']]], - ['mqttasync_5fmessage_5finitializer_669',['MQTTAsync_message_initializer',['../_m_q_t_t_async_8h.html#a6a85061dadab532f28e96e5ab3c600e9',1,'MQTTAsync.h']]], - ['mqttasync_5fno_5fmore_5fmsgids_670',['MQTTASYNC_NO_MORE_MSGIDS',['../_m_q_t_t_async_8h.html#ab0f54d0bae2c74849022a8009e5d6ff7',1,'MQTTAsync.h']]], - ['mqttasync_5fnull_5fparameter_671',['MQTTASYNC_NULL_PARAMETER',['../_m_q_t_t_async_8h.html#ab88e1ebcee991099a72429e52a8253fd',1,'MQTTAsync.h']]], - ['mqttasync_5foperation_5fincomplete_672',['MQTTASYNC_OPERATION_INCOMPLETE',['../_m_q_t_t_async_8h.html#aee1b79d0632bec0fe49eb7ea1abd3b2e',1,'MQTTAsync.h']]], - ['mqttasync_5fpersistence_5ferror_673',['MQTTASYNC_PERSISTENCE_ERROR',['../_m_q_t_t_async_8h.html#a4edf1249c75abd4975fec8ddeae2cdc9',1,'MQTTAsync.h']]], - ['mqttasync_5fresponseoptions_5finitializer_674',['MQTTAsync_responseOptions_initializer',['../_m_q_t_t_async_8h.html#a3f8b408243b5c2369bc9758f2edf0878',1,'MQTTAsync.h']]], - ['mqttasync_5fssl_5fnot_5fsupported_675',['MQTTASYNC_SSL_NOT_SUPPORTED',['../_m_q_t_t_async_8h.html#a6992c00553db1608aef9e162c161d73c',1,'MQTTAsync.h']]], - ['mqttasync_5fssloptions_5finitializer_676',['MQTTAsync_SSLOptions_initializer',['../_m_q_t_t_async_8h.html#aac935e2e9d770a53ee8189f128530511',1,'MQTTAsync.h']]], - ['mqttasync_5fsuccess_677',['MQTTASYNC_SUCCESS',['../_m_q_t_t_async_8h.html#afe0cffcce8efe25186f79c51ac44e16f',1,'MQTTAsync.h']]], - ['mqttasync_5fsuccessdata5_5finitializer_678',['MQTTAsync_successData5_initializer',['../_m_q_t_t_async_8h.html#a6182ec90ec4a134465f627b324ac5a41',1,'MQTTAsync.h']]], - ['mqttasync_5ftopicname_5ftruncated_679',['MQTTASYNC_TOPICNAME_TRUNCATED',['../_m_q_t_t_async_8h.html#a77a7106d97ff60be3fe70f90b1867800',1,'MQTTAsync.h']]], - ['mqttasync_5ftrue_680',['MQTTASYNC_TRUE',['../_m_q_t_t_async_8h.html#a61e6ee632e63312d382e2fcbe427f01a',1,'MQTTAsync.h']]], - ['mqttasync_5fwilloptions_5finitializer_681',['MQTTAsync_willOptions_initializer',['../_m_q_t_t_async_8h.html#a6c45768e1b28844f2ac0f6ac68709730',1,'MQTTAsync.h']]], - ['mqttasync_5fwrong_5fmqtt_5fversion_682',['MQTTASYNC_WRONG_MQTT_VERSION',['../_m_q_t_t_async_8h.html#af5df806e9767e1e3182fe089a8ee551b',1,'MQTTAsync.h']]], - ['mqttclient_5fpersistence_5fdefault_683',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5ferror_684',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fnone_685',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fuser_686',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], - ['mqttproperties_5finitializer_687',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], - ['mqttsubscribe_5foptions_5finitializer_688',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], - ['mqttversion_5f3_5f1_689',['MQTTVERSION_3_1',['../_m_q_t_t_async_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTAsync.h']]], - ['mqttversion_5f3_5f1_5f1_690',['MQTTVERSION_3_1_1',['../_m_q_t_t_async_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTAsync.h']]], - ['mqttversion_5f5_691',['MQTTVERSION_5',['../_m_q_t_t_async_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTAsync.h']]], - ['mqttversion_5fdefault_692',['MQTTVERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTAsync.h']]] + ['mqtt_5fbad_5fsubscribe_642',['MQTT_BAD_SUBSCRIBE',['../_m_q_t_t_async_8h.html#ade337b363b7f4bc7c1a7b2858e0380bd',1,'MQTTAsync.h']]], + ['mqtt_5finvalid_5fproperty_5fid_643',['MQTT_INVALID_PROPERTY_ID',['../_m_q_t_t_properties_8h.html#afc56d2e8937a0c8f180d68ad93945945',1,'MQTTProperties.h']]], + ['mqtt_5fssl_5fversion_5fdefault_644',['MQTT_SSL_VERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a2549ea897af26c76198284731db9e721',1,'MQTTAsync.h']]], + ['mqtt_5fssl_5fversion_5ftls_5f1_5f0_645',['MQTT_SSL_VERSION_TLS_1_0',['../_m_q_t_t_async_8h.html#a7e5da3d6f0d2b53409bbfcf6e56f3d2d',1,'MQTTAsync.h']]], + ['mqtt_5fssl_5fversion_5ftls_5f1_5f1_646',['MQTT_SSL_VERSION_TLS_1_1',['../_m_q_t_t_async_8h.html#abdff87efa3f2ee473a1591e10638b537',1,'MQTTAsync.h']]], + ['mqtt_5fssl_5fversion_5ftls_5f1_5f2_647',['MQTT_SSL_VERSION_TLS_1_2',['../_m_q_t_t_async_8h.html#a3a94dbdeafbb73c73a068e7c2085fbab',1,'MQTTAsync.h']]], + ['mqttasync_5f0_5flen_5fwill_5ftopic_648',['MQTTASYNC_0_LEN_WILL_TOPIC',['../_m_q_t_t_async_8h.html#a47b3aed75983f48a503e1cad6c862004',1,'MQTTAsync.h']]], + ['mqttasync_5fbad_5fmqtt_5foption_649',['MQTTASYNC_BAD_MQTT_OPTION',['../_m_q_t_t_async_8h.html#af6f97562573876867ba77460a51ca1d1',1,'MQTTAsync.h']]], + ['mqttasync_5fbad_5fprotocol_650',['MQTTASYNC_BAD_PROTOCOL',['../_m_q_t_t_async_8h.html#a785250cd4a1938ffeeff67b3538abfba',1,'MQTTAsync.h']]], + ['mqttasync_5fbad_5fqos_651',['MQTTASYNC_BAD_QOS',['../_m_q_t_t_async_8h.html#a64d111778ce4e0d3a62808f6db11f224',1,'MQTTAsync.h']]], + ['mqttasync_5fbad_5fstructure_652',['MQTTASYNC_BAD_STRUCTURE',['../_m_q_t_t_async_8h.html#a241fc8db46dca132d591bc2be92247ba',1,'MQTTAsync.h']]], + ['mqttasync_5fbad_5futf8_5fstring_653',['MQTTASYNC_BAD_UTF8_STRING',['../_m_q_t_t_async_8h.html#a80cbe091930c11b67ca719b3e385aa26',1,'MQTTAsync.h']]], + ['mqttasync_5fcalloptions_5finitializer_654',['MQTTAsync_callOptions_initializer',['../_m_q_t_t_async_8h.html#a570185766fc8a9da410a6f84915b6df5',1,'MQTTAsync.h']]], + ['mqttasync_5fcommand_5fignored_655',['MQTTASYNC_COMMAND_IGNORED',['../_m_q_t_t_async_8h.html#a8278cf4b50dd818c31fa12e45f074b5c',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectdata_5finitializer_656',['MQTTAsync_connectData_initializer',['../_m_q_t_t_async_8h.html#a2e415e68016ae56f6bbbbdc9840a9c6e',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer_657',['MQTTAsync_connectOptions_initializer',['../_m_q_t_t_async_8h.html#ae18b51f22784a43803eb809d6a0c2492',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer5_658',['MQTTAsync_connectOptions_initializer5',['../_m_q_t_t_async_8h.html#abd403ce21f7aa0348ae1d3eefd031a5d',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer5_5fws_659',['MQTTAsync_connectOptions_initializer5_ws',['../_m_q_t_t_async_8h.html#a513bfbec7b7d39c827240db75aa4044b',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectoptions_5finitializer_5fws_660',['MQTTAsync_connectOptions_initializer_ws',['../_m_q_t_t_async_8h.html#a080951d916d7a58c4ceff8c6bacfe313',1,'MQTTAsync.h']]], + ['mqttasync_5fcreateoptions_5finitializer_661',['MQTTAsync_createOptions_initializer',['../_m_q_t_t_async_8h.html#a5fedeafef4753f09b1bcb92773564786',1,'MQTTAsync.h']]], + ['mqttasync_5fcreateoptions_5finitializer5_662',['MQTTAsync_createOptions_initializer5',['../_m_q_t_t_async_8h.html#a0008776a46e7268ccbef4774ce3d4579',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnected_663',['MQTTASYNC_DISCONNECTED',['../_m_q_t_t_async_8h.html#a66c0f30b329bc770145c2f04b3929df6',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnectoptions_5finitializer_664',['MQTTAsync_disconnectOptions_initializer',['../_m_q_t_t_async_8h.html#a2fd5d6df31928ae468f3f2e522b9c707',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnectoptions_5finitializer5_665',['MQTTAsync_disconnectOptions_initializer5',['../_m_q_t_t_async_8h.html#aaa278001953dc129003eff83c8e7b3db',1,'MQTTAsync.h']]], + ['mqttasync_5ffailure_666',['MQTTASYNC_FAILURE',['../_m_q_t_t_async_8h.html#a7c8230fef85fc04b8a1035501f3be406',1,'MQTTAsync.h']]], + ['mqttasync_5ffailuredata5_5finitializer_667',['MQTTAsync_failureData5_initializer',['../_m_q_t_t_async_8h.html#a53ce2002ae2c2579575bb41c48c51c29',1,'MQTTAsync.h']]], + ['mqttasync_5finit_5foptions_5finitializer_668',['MQTTAsync_init_options_initializer',['../_m_q_t_t_async_8h.html#a866e023f70141969d48597930c0ee313',1,'MQTTAsync.h']]], + ['mqttasync_5fmax_5fbuffered_5fmessages_669',['MQTTASYNC_MAX_BUFFERED_MESSAGES',['../_m_q_t_t_async_8h.html#a4e338072cfd5291b579e4f0c99a6e773',1,'MQTTAsync.h']]], + ['mqttasync_5fmax_5fmessages_5finflight_670',['MQTTASYNC_MAX_MESSAGES_INFLIGHT',['../_m_q_t_t_async_8h.html#ad577286d43c72fbc49818aac42f4e24a',1,'MQTTAsync.h']]], + ['mqttasync_5fmessage_5finitializer_671',['MQTTAsync_message_initializer',['../_m_q_t_t_async_8h.html#a6a85061dadab532f28e96e5ab3c600e9',1,'MQTTAsync.h']]], + ['mqttasync_5fno_5fmore_5fmsgids_672',['MQTTASYNC_NO_MORE_MSGIDS',['../_m_q_t_t_async_8h.html#ab0f54d0bae2c74849022a8009e5d6ff7',1,'MQTTAsync.h']]], + ['mqttasync_5fnull_5fparameter_673',['MQTTASYNC_NULL_PARAMETER',['../_m_q_t_t_async_8h.html#ab88e1ebcee991099a72429e52a8253fd',1,'MQTTAsync.h']]], + ['mqttasync_5foperation_5fincomplete_674',['MQTTASYNC_OPERATION_INCOMPLETE',['../_m_q_t_t_async_8h.html#aee1b79d0632bec0fe49eb7ea1abd3b2e',1,'MQTTAsync.h']]], + ['mqttasync_5fpersistence_5ferror_675',['MQTTASYNC_PERSISTENCE_ERROR',['../_m_q_t_t_async_8h.html#a4edf1249c75abd4975fec8ddeae2cdc9',1,'MQTTAsync.h']]], + ['mqttasync_5fresponseoptions_5finitializer_676',['MQTTAsync_responseOptions_initializer',['../_m_q_t_t_async_8h.html#a3f8b408243b5c2369bc9758f2edf0878',1,'MQTTAsync.h']]], + ['mqttasync_5fssl_5fnot_5fsupported_677',['MQTTASYNC_SSL_NOT_SUPPORTED',['../_m_q_t_t_async_8h.html#a6992c00553db1608aef9e162c161d73c',1,'MQTTAsync.h']]], + ['mqttasync_5fssloptions_5finitializer_678',['MQTTAsync_SSLOptions_initializer',['../_m_q_t_t_async_8h.html#aac935e2e9d770a53ee8189f128530511',1,'MQTTAsync.h']]], + ['mqttasync_5fsuccess_679',['MQTTASYNC_SUCCESS',['../_m_q_t_t_async_8h.html#afe0cffcce8efe25186f79c51ac44e16f',1,'MQTTAsync.h']]], + ['mqttasync_5fsuccessdata5_5finitializer_680',['MQTTAsync_successData5_initializer',['../_m_q_t_t_async_8h.html#a6182ec90ec4a134465f627b324ac5a41',1,'MQTTAsync.h']]], + ['mqttasync_5ftopicname_5ftruncated_681',['MQTTASYNC_TOPICNAME_TRUNCATED',['../_m_q_t_t_async_8h.html#a77a7106d97ff60be3fe70f90b1867800',1,'MQTTAsync.h']]], + ['mqttasync_5ftrue_682',['MQTTASYNC_TRUE',['../_m_q_t_t_async_8h.html#a61e6ee632e63312d382e2fcbe427f01a',1,'MQTTAsync.h']]], + ['mqttasync_5fwilloptions_5finitializer_683',['MQTTAsync_willOptions_initializer',['../_m_q_t_t_async_8h.html#a6c45768e1b28844f2ac0f6ac68709730',1,'MQTTAsync.h']]], + ['mqttasync_5fwrong_5fmqtt_5fversion_684',['MQTTASYNC_WRONG_MQTT_VERSION',['../_m_q_t_t_async_8h.html#af5df806e9767e1e3182fe089a8ee551b',1,'MQTTAsync.h']]], + ['mqttclient_5fpersistence_5fdefault_685',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../_m_q_t_t_client_persistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5ferror_686',['MQTTCLIENT_PERSISTENCE_ERROR',['../_m_q_t_t_client_persistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fnone_687',['MQTTCLIENT_PERSISTENCE_NONE',['../_m_q_t_t_client_persistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fuser_688',['MQTTCLIENT_PERSISTENCE_USER',['../_m_q_t_t_client_persistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]], + ['mqttproperties_5finitializer_689',['MQTTProperties_initializer',['../_m_q_t_t_properties_8h.html#a5a80e158486a414ccdfcdd7f75f23988',1,'MQTTProperties.h']]], + ['mqttsubscribe_5foptions_5finitializer_690',['MQTTSubscribe_options_initializer',['../_m_q_t_t_subscribe_opts_8h.html#aec3b45fd0367106eea344396f87cfda7',1,'MQTTSubscribeOpts.h']]], + ['mqttversion_5f3_5f1_691',['MQTTVERSION_3_1',['../_m_q_t_t_async_8h.html#a4603b988e76872e1f23f135d225ce2fb',1,'MQTTAsync.h']]], + ['mqttversion_5f3_5f1_5f1_692',['MQTTVERSION_3_1_1',['../_m_q_t_t_async_8h.html#ac79cc6fdeaa9e3f4ee12c3418898b1ef',1,'MQTTAsync.h']]], + ['mqttversion_5f5_693',['MQTTVERSION_5',['../_m_q_t_t_async_8h.html#af8b176fa4d5b89789767ce972338e1e3',1,'MQTTAsync.h']]], + ['mqttversion_5fdefault_694',['MQTTVERSION_DEFAULT',['../_m_q_t_t_async_8h.html#a75b80b01f98d5a1ffa2a4d42995a8397',1,'MQTTAsync.h']]] ]; diff --git a/docs/MQTTAsync/html/search/enums_0.js b/docs/MQTTAsync/html/search/enums_0.js index ff81dfdc..5ac66b34 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_551',['MQTTASYNC_TRACE_LEVELS',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5',1,'MQTTAsync.h']]], - ['mqttpropertycodes_552',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], - ['mqttpropertytypes_553',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], - ['mqttreasoncodes_554',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]] + ['mqttasync_5ftrace_5flevels_552',['MQTTASYNC_TRACE_LEVELS',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5',1,'MQTTAsync.h']]], + ['mqttpropertycodes_553',['MQTTPropertyCodes',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4',1,'MQTTProperties.h']]], + ['mqttpropertytypes_554',['MQTTPropertyTypes',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958',1,'MQTTProperties.h']]], + ['mqttreasoncodes_555',['MQTTReasonCodes',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279',1,'MQTTReasonCodes.h']]] ]; diff --git a/docs/MQTTAsync/html/search/enumvalues_0.js b/docs/MQTTAsync/html/search/enumvalues_0.js index a6d2537a..d86db693 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_555',['MQTTASYNC_TRACE_ERROR',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5ac428f74ca453dacb7b8271ca741266e8',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5ffatal_556',['MQTTASYNC_TRACE_FATAL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a0b91d2213ebb6655e41a7f6ce1a42295',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fmaximum_557',['MQTTASYNC_TRACE_MAXIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5af684f42971cced68693ce993703548c1',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fmedium_558',['MQTTASYNC_TRACE_MEDIUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a133c380b84d75477ff31a2ad732133ce',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fminimum_559',['MQTTASYNC_TRACE_MINIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a7a45c26816b1cac1fde02d79a9f4337b',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fprotocol_560',['MQTTASYNC_TRACE_PROTOCOL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a6a719b2b7fc4dfc41494370ff96fec3e',1,'MQTTAsync.h']]], - ['mqttasync_5ftrace_5fsevere_561',['MQTTASYNC_TRACE_SEVERE',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a3084770185f384398cefe4aaba533d40',1,'MQTTAsync.h']]], - ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_562',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fdata_563',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fauthentication_5fmethod_564',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcontent_5ftype_565',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fcorrelation_5fdata_566',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_567',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmaximum_5fqos_568',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_569',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_570',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freason_5fstring_571',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5freceive_5fmaximum_572',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_573',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_574',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5finformation_575',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fresponse_5ftopic_576',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fretain_5favailable_577',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5fkeep_5falive_578',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fserver_5freference_579',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_580',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_581',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifier_582',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_583',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_584',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_585',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fuser_5fproperty_586',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_587',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], - ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_588',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbinary_5fdata_589',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fbyte_590',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_591',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_592',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_593',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_594',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], - ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_595',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], - ['mqttreasoncode_5fadministrative_5faction_596',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fauthentication_5fmethod_597',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_598',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fbanned_599',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_600',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fconnection_5frate_5fexceeded_601',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fcontinue_5fauthentication_602',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_603',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f0_604',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f1_605',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fgranted_5fqos_5f2_606',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fimplementation_5fspecific_5ferror_607',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fkeep_5falive_5ftimeout_608',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmalformed_5fpacket_609',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmaximum_5fconnect_5ftime_610',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_611',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fmatching_5fsubscribers_612',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fno_5fsubscription_5ffound_613',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnormal_5fdisconnection_614',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fnot_5fauthorized_615',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_616',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_617',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpacket_5ftoo_5flarge_618',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fpayload_5fformat_5finvalid_619',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fprotocol_5ferror_620',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fqos_5fnot_5fsupported_621',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fquota_5fexceeded_622',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fre_5fauthenticate_623',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_624',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fretain_5fnot_5fsupported_625',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fbusy_626',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fmoved_627',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5fshutting_5fdown_628',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fserver_5funavailable_629',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsession_5ftaken_5fover_630',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_631',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_632',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fsuccess_633',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5falias_5finvalid_634',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5ffilter_5finvalid_635',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5ftopic_5fname_5finvalid_636',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funspecified_5ferror_637',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5funsupported_5fprotocol_5fversion_638',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fuse_5fanother_5fserver_639',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], - ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_640',['MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a81b5708f676f52594b680f085e444e1f',1,'MQTTReasonCodes.h']]] + ['mqttasync_5ftrace_5ferror_556',['MQTTASYNC_TRACE_ERROR',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5ac428f74ca453dacb7b8271ca741266e8',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5ffatal_557',['MQTTASYNC_TRACE_FATAL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a0b91d2213ebb6655e41a7f6ce1a42295',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fmaximum_558',['MQTTASYNC_TRACE_MAXIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5af684f42971cced68693ce993703548c1',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fmedium_559',['MQTTASYNC_TRACE_MEDIUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a133c380b84d75477ff31a2ad732133ce',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fminimum_560',['MQTTASYNC_TRACE_MINIMUM',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a7a45c26816b1cac1fde02d79a9f4337b',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fprotocol_561',['MQTTASYNC_TRACE_PROTOCOL',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a6a719b2b7fc4dfc41494370ff96fec3e',1,'MQTTAsync.h']]], + ['mqttasync_5ftrace_5fsevere_562',['MQTTASYNC_TRACE_SEVERE',['../_m_q_t_t_async_8h.html#a5de816f986b318947709a34e0787eda5a3084770185f384398cefe4aaba533d40',1,'MQTTAsync.h']]], + ['mqttproperty_5fcode_5fassigned_5fclient_5fidentifer_563',['MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a768d84858fd18d5d5a7dee394929c672',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fdata_564',['MQTTPROPERTY_CODE_AUTHENTICATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4abdf9feec165aceefbe7aa46764f6ab6e',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fauthentication_5fmethod_565',['MQTTPROPERTY_CODE_AUTHENTICATION_METHOD',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7c53f1e414b577d787b5d51af3204100',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcontent_5ftype_566',['MQTTPROPERTY_CODE_CONTENT_TYPE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a4027d9e0fb53a62ae35963e700b56198',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fcorrelation_5fdata_567',['MQTTPROPERTY_CODE_CORRELATION_DATA',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a887d3dd3f0ce31255324f5a1ba8b72c5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fpacket_5fsize_568',['MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a6834ea9878f028d5fbdeccaaeae492e5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmaximum_5fqos_569',['MQTTPROPERTY_CODE_MAXIMUM_QOS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a506faeb89c407cf78853c777d750fa59',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fmessage_5fexpiry_5finterval_570',['MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a284c0e62d47ee8d358b16a8075632b4a',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fpayload_5fformat_5findicator_571',['MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae5d077520427d03b44096f631411575d',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freason_5fstring_572',['MQTTPROPERTY_CODE_REASON_STRING',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3dce8f679474e901ce4aec076e9e59e1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5freceive_5fmaximum_573',['MQTTPROPERTY_CODE_RECEIVE_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab2688fe8d7d263c27c00d41776cb8f9f',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fproblem_5finformation_574',['MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a3954daf1d5772b5d56eefa1ab6a28aa1',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5frequest_5fresponse_5finformation_575',['MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a420b882a337dc1fd5f336ac6cd0529bf',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5finformation_576',['MQTTPROPERTY_CODE_RESPONSE_INFORMATION',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a2584b050f016af496c7f0b46692dbc00',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fresponse_5ftopic_577',['MQTTPROPERTY_CODE_RESPONSE_TOPIC',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a7fa9996eef721d318504fbb0a8d4bac5',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fretain_5favailable_578',['MQTTPROPERTY_CODE_RETAIN_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a448b3a40afaa5f7195701e7dc8bed30c',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5fkeep_5falive_579',['MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ab106f320e7537b79644f25d3efcd68c7',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fserver_5freference_580',['MQTTPROPERTY_CODE_SERVER_REFERENCE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0168e8a59f7994c02b7a7fd2fc3735c4',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsession_5fexpiry_5finterval_581',['MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a22e4caa63f63ca3f9b1c1330711ee766',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fshared_5fsubscription_5favailable_582',['MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ae04a7356f9e11654f15a3b21f2aae636',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifier_583',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a70ead9c93f06396a4d9469b65bff0c96',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fsubscription_5fidentifiers_5favailable_584',['MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a8b366cfd8bd3f388bafb67f3ebf83505',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_585',['MQTTPROPERTY_CODE_TOPIC_ALIAS',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad4dfb37d341ea190afc144668e5e3bee',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5ftopic_5falias_5fmaximum_586',['MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a0a0b0b0715ecc9ccf471c75aa4c21c23',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fuser_5fproperty_587',['MQTTPROPERTY_CODE_USER_PROPERTY',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a596ff540370235d3eca693ce30dd4af8',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwildcard_5fsubscription_5favailable_588',['MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4ad05993f90baaee0ba7094ccef4d378b9',1,'MQTTProperties.h']]], + ['mqttproperty_5fcode_5fwill_5fdelay_5finterval_589',['MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL',['../_m_q_t_t_properties_8h.html#af623c1b670dfe3fda633c068e054d8b4a53fd81bc554f152a2772d282be7ce5ef',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbinary_5fdata_590',['MQTTPROPERTY_TYPE_BINARY_DATA',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a6643aed682b9b07f98159856776fe7b4',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fbyte_591',['MQTTPROPERTY_TYPE_BYTE',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ac36f96ce58c98a8ebbe0783df030726a',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ffour_5fbyte_5finteger_592',['MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958aa49c558733bd735ae872fd87ad0d7e15',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5ftwo_5fbyte_5finteger_593',['MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ae301a9e68326cc2d8bfefeca401e78e6',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fencoded_5fstring_594',['MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958ad45c866a5bef6c5048a7af21405734d1',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5futf_5f8_5fstring_5fpair_595',['MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a28ab5fe5b159f3b3a8884b0f61527214',1,'MQTTProperties.h']]], + ['mqttproperty_5ftype_5fvariable_5fbyte_5finteger_596',['MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER',['../_m_q_t_t_properties_8h.html#a942f52ef7c232829f6df5c86e07cc958a27bbcb5bc4f584f96612c0cec329c6a7',1,'MQTTProperties.h']]], + ['mqttreasoncode_5fadministrative_5faction_597',['MQTTREASONCODE_ADMINISTRATIVE_ACTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae1e3b428072be26d2cbf6f88361f76cc',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fauthentication_5fmethod_598',['MQTTREASONCODE_BAD_AUTHENTICATION_METHOD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af62e569703d7a7f0acffaa59522b9dc3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbad_5fuser_5fname_5for_5fpassword_599',['MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279abfc617112d5856722108912c5c6633ff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fbanned_600',['MQTTREASONCODE_BANNED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab4cf7578f0078293fa66a4cd5e5d4aa4',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fclient_5fidentifier_5fnot_5fvalid_601',['MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ab58bb236e7dbd000a56c590c01bc73fd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fconnection_5frate_5fexceeded_602',['MQTTREASONCODE_CONNECTION_RATE_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a879c56ed34fa2dd6492e7a34a9747bc1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fcontinue_5fauthentication_603',['MQTTREASONCODE_CONTINUE_AUTHENTICATION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0c0726c0e87eaddd636708497c69d055',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fdisconnect_5fwith_5fwill_5fmessage_604',['MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55f533a6cc98417d08dac8cc69da0ed3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f0_605',['MQTTREASONCODE_GRANTED_QOS_0',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3fd0d12c0e44b4df9f716aef89b61aff',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f1_606',['MQTTREASONCODE_GRANTED_QOS_1',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a07578b30b2d72af2eeea6be268475876',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fgranted_5fqos_5f2_607',['MQTTREASONCODE_GRANTED_QOS_2',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a74ac34a39a849c9c369b18545a4b1f93',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fimplementation_5fspecific_5ferror_608',['MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a41629fa453cdf14ef6a5370a16d5a19c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fkeep_5falive_5ftimeout_609',['MQTTREASONCODE_KEEP_ALIVE_TIMEOUT',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af21a6c320e34993d7aa169330ab23409',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmalformed_5fpacket_610',['MQTTREASONCODE_MALFORMED_PACKET',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2cbee3502c00d304bf1091195457fcf5',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmaximum_5fconnect_5ftime_611',['MQTTREASONCODE_MAXIMUM_CONNECT_TIME',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6f07c3b42690afc7b117321dc4e2657f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fmessage_5frate_5ftoo_5fhigh_612',['MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af76d0e32fb44fa94e407b1af5dc7aa4e',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fmatching_5fsubscribers_613',['MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1720d8b04af4c0d92e27b378d735e899',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fno_5fsubscription_5ffound_614',['MQTTREASONCODE_NO_SUBSCRIPTION_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a55208c34a26f67e112d53c54be37acb9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnormal_5fdisconnection_615',['MQTTREASONCODE_NORMAL_DISCONNECTION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a3590f41d984646bc58c82734c1516c92',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fnot_5fauthorized_616',['MQTTREASONCODE_NOT_AUTHORIZED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a91a14fc763349cf4a7047d24f13d0803',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fin_5fuse_617',['MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279adaee01dbc97a0773b5032a29c797613a',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5fidentifier_5fnot_5ffound_618',['MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a4908a8293054f8ff8d6c47fe0cf31932',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpacket_5ftoo_5flarge_619',['MQTTREASONCODE_PACKET_TOO_LARGE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a11a587e15c468bf1c6ba9df7e8fd78aa',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fpayload_5fformat_5finvalid_620',['MQTTREASONCODE_PAYLOAD_FORMAT_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a2d629400116e1723c5e2e597bbfe29ca',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fprotocol_5ferror_621',['MQTTREASONCODE_PROTOCOL_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ae0dad403f352e31449764e2ac94c7756',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fqos_5fnot_5fsupported_622',['MQTTREASONCODE_QOS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a83865a2440b512e5602152521e3810bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fquota_5fexceeded_623',['MQTTREASONCODE_QUOTA_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a954fcabf6e88925b2a57bcd84032d9f9',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fre_5fauthenticate_624',['MQTTREASONCODE_RE_AUTHENTICATE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6cc1b342856c1d96d54c368148b536f7',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5freceive_5fmaximum_5fexceeded_625',['MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a45afaacbefd2d816fddf9fe9804b61d1',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fretain_5fnot_5fsupported_626',['MQTTREASONCODE_RETAIN_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aa4378012148d98599398bc4a3480c38f',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fbusy_627',['MQTTREASONCODE_SERVER_BUSY',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279af507e75147b0b34f36955c9f62389a74',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fmoved_628',['MQTTREASONCODE_SERVER_MOVED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a783254c7acf8de52ee345bc176f9d6c0',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5fshutting_5fdown_629',['MQTTREASONCODE_SERVER_SHUTTING_DOWN',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a085e1572ffce61838807b7429b691113',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fserver_5funavailable_630',['MQTTREASONCODE_SERVER_UNAVAILABLE',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a0cfd4de78870b3fb0499b916d06d40bb',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsession_5ftaken_5fover_631',['MQTTREASONCODE_SESSION_TAKEN_OVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279ad15ffa6884f97976e237afafcbccea21',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fshared_5fsubscriptions_5fnot_5fsupported_632',['MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1c694648e36a40162939a2785450b6bd',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsubscription_5fidentifiers_5fnot_5fsupported_633',['MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a7bcd0f9b21c398a217667aebb4107842',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fsuccess_634',['MQTTREASONCODE_SUCCESS',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a63b379af5fba8c0512b381a4dbe26969',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5falias_5finvalid_635',['MQTTREASONCODE_TOPIC_ALIAS_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a8e0fcdd051e154e319058600b58652ec',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5ffilter_5finvalid_636',['MQTTREASONCODE_TOPIC_FILTER_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a00319b171f469824dd6938cbd0212b5b',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5ftopic_5fname_5finvalid_637',['MQTTREASONCODE_TOPIC_NAME_INVALID',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a6268968177868576f6b9239aa9afd8ac',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funspecified_5ferror_638',['MQTTREASONCODE_UNSPECIFIED_ERROR',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a1881ee597bfef9157f0034a1377328e3',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5funsupported_5fprotocol_5fversion_639',['MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279a021ceca20e6d35279075a2b93ece973d',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fuse_5fanother_5fserver_640',['MQTTREASONCODE_USE_ANOTHER_SERVER',['../_m_q_t_t_reason_codes_8h.html#aba6db0fccfa3f8972ea48117b8b2a279aabaee4062c4e4941b9eed59f09e9440c',1,'MQTTReasonCodes.h']]], + ['mqttreasoncode_5fwildcard_5fsubscriptions_5fnot_5fsupported_641',['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.js b/docs/MQTTAsync/html/search/files_0.js index 74b1d0bf..9775d136 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_368',['MQTTAsync.h',['../_m_q_t_t_async_8h.html',1,'']]], - ['mqttclientpersistence_2eh_369',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], - ['mqttproperties_2eh_370',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], - ['mqttreasoncodes_2eh_371',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], - ['mqttsubscribeopts_2eh_372',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]] + ['mqttasync_2eh_369',['MQTTAsync.h',['../_m_q_t_t_async_8h.html',1,'']]], + ['mqttclientpersistence_2eh_370',['MQTTClientPersistence.h',['../_m_q_t_t_client_persistence_8h.html',1,'']]], + ['mqttproperties_2eh_371',['MQTTProperties.h',['../_m_q_t_t_properties_8h.html',1,'']]], + ['mqttreasoncodes_2eh_372',['MQTTReasonCodes.h',['../_m_q_t_t_reason_codes_8h.html',1,'']]], + ['mqttsubscribeopts_2eh_373',['MQTTSubscribeOpts.h',['../_m_q_t_t_subscribe_opts_8h.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/functions_0.js b/docs/MQTTAsync/html/search/functions_0.js index df093d65..7271a1ed 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_373',['MQTTAsync_connect',['../_m_q_t_t_async_8h.html#a0388b226a414b09fa733f6d65004ec32',1,'MQTTAsync.h']]], - ['mqttasync_5fcreate_374',['MQTTAsync_create',['../_m_q_t_t_async_8h.html#a5462c4618d0a229116db5fbadacf95d2',1,'MQTTAsync.h']]], - ['mqttasync_5fcreatewithoptions_375',['MQTTAsync_createWithOptions',['../_m_q_t_t_async_8h.html#a78cbe1b851fea48001112f7ba9e4ea62',1,'MQTTAsync.h']]], - ['mqttasync_5fdestroy_376',['MQTTAsync_destroy',['../_m_q_t_t_async_8h.html#ad5562f9dc71fbd93d25ad20b328cb887',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnect_377',['MQTTAsync_disconnect',['../_m_q_t_t_async_8h.html#adc69afa4725f8321bdaa5a05aec5cfd5',1,'MQTTAsync.h']]], - ['mqttasync_5ffree_378',['MQTTAsync_free',['../_m_q_t_t_async_8h.html#a2b836f58612a2c4627e40ae848da190d',1,'MQTTAsync.h']]], - ['mqttasync_5ffreemessage_379',['MQTTAsync_freeMessage',['../_m_q_t_t_async_8h.html#a9b45db63052fe29ab1fad22d2a00c91c',1,'MQTTAsync.h']]], - ['mqttasync_5fgetpendingtokens_380',['MQTTAsync_getPendingTokens',['../_m_q_t_t_async_8h.html#abc92f60743fc471643b473abbc987be0',1,'MQTTAsync.h']]], - ['mqttasync_5fgetversioninfo_381',['MQTTAsync_getVersionInfo',['../_m_q_t_t_async_8h.html#a7cf29b785a1d4ff1de2e67e2f916b658',1,'MQTTAsync.h']]], - ['mqttasync_5fglobal_5finit_382',['MQTTAsync_global_init',['../_m_q_t_t_async_8h.html#a1705e75a48999cb45bf85c15608478f5',1,'MQTTAsync.h']]], - ['mqttasync_5fiscomplete_383',['MQTTAsync_isComplete',['../_m_q_t_t_async_8h.html#ab207095cab6f9a48b52cdb593b8456f4',1,'MQTTAsync.h']]], - ['mqttasync_5fisconnected_384',['MQTTAsync_isConnected',['../_m_q_t_t_async_8h.html#a46c332245c379629ae11f457fc179457',1,'MQTTAsync.h']]], - ['mqttasync_5fmalloc_385',['MQTTAsync_malloc',['../_m_q_t_t_async_8h.html#af5500ba58592afafaade2fcabdc61e61',1,'MQTTAsync.h']]], - ['mqttasync_5freconnect_386',['MQTTAsync_reconnect',['../_m_q_t_t_async_8h.html#abd3ea01869b89ff23f9522640479c395',1,'MQTTAsync.h']]], - ['mqttasync_5fsend_387',['MQTTAsync_send',['../_m_q_t_t_async_8h.html#a63c66a311ab16239a4175ff671871bf2',1,'MQTTAsync.h']]], - ['mqttasync_5fsendmessage_388',['MQTTAsync_sendMessage',['../_m_q_t_t_async_8h.html#a5687171e67e98f9ea590c9e3b64cde18',1,'MQTTAsync.h']]], - ['mqttasync_5fsetafterpersistenceread_389',['MQTTAsync_setAfterPersistenceRead',['../_m_q_t_t_async_8h.html#ab4d16e3c57502be6a7d1b1d3bcc382f3',1,'MQTTAsync.h']]], - ['mqttasync_5fsetbeforepersistencewrite_390',['MQTTAsync_setBeforePersistenceWrite',['../_m_q_t_t_async_8h.html#a1002b09c62a096578c9b3e0135eb98c1',1,'MQTTAsync.h']]], - ['mqttasync_5fsetcallbacks_391',['MQTTAsync_setCallbacks',['../_m_q_t_t_async_8h.html#ae9ae8d61023e7029ef5a19f5219c3599',1,'MQTTAsync.h']]], - ['mqttasync_5fsetconnected_392',['MQTTAsync_setConnected',['../_m_q_t_t_async_8h.html#a18cc19740d9b00c629dc53a4420ecf1f',1,'MQTTAsync.h']]], - ['mqttasync_5fsetconnectionlostcallback_393',['MQTTAsync_setConnectionLostCallback',['../_m_q_t_t_async_8h.html#aee15bbd9224efd9dcce9b4ae491b2e2e',1,'MQTTAsync.h']]], - ['mqttasync_5fsetdeliverycompletecallback_394',['MQTTAsync_setDeliveryCompleteCallback',['../_m_q_t_t_async_8h.html#a94ec624ee22cc01d2ca58a9e646a2665',1,'MQTTAsync.h']]], - ['mqttasync_5fsetdisconnected_395',['MQTTAsync_setDisconnected',['../_m_q_t_t_async_8h.html#ada4dd26d23c8849c51e4ab8200339040',1,'MQTTAsync.h']]], - ['mqttasync_5fsetmessagearrivedcallback_396',['MQTTAsync_setMessageArrivedCallback',['../_m_q_t_t_async_8h.html#a44abc360051b918a39b0596a137775ae',1,'MQTTAsync.h']]], - ['mqttasync_5fsettracecallback_397',['MQTTAsync_setTraceCallback',['../_m_q_t_t_async_8h.html#a0b350581324a4ff0eaee71e7a6721388',1,'MQTTAsync.h']]], - ['mqttasync_5fsettracelevel_398',['MQTTAsync_setTraceLevel',['../_m_q_t_t_async_8h.html#ac7fbab13a0b2e5dd4ee11efbbb9f6a3a',1,'MQTTAsync.h']]], - ['mqttasync_5fsetupdateconnectoptions_399',['MQTTAsync_setUpdateConnectOptions',['../_m_q_t_t_async_8h.html#aa078aec3eba83481f63db3c3939a5da9',1,'MQTTAsync.h']]], - ['mqttasync_5fstrerror_400',['MQTTAsync_strerror',['../_m_q_t_t_async_8h.html#a875cd089a8b23eb3fd50c0406fc75d9f',1,'MQTTAsync.h']]], - ['mqttasync_5fsubscribe_401',['MQTTAsync_subscribe',['../_m_q_t_t_async_8h.html#ae10bd009934b3bb4a9f4abae7424a611',1,'MQTTAsync.h']]], - ['mqttasync_5fsubscribemany_402',['MQTTAsync_subscribeMany',['../_m_q_t_t_async_8h.html#ac78620b33434a187255bd1a3faec1578',1,'MQTTAsync.h']]], - ['mqttasync_5funsubscribe_403',['MQTTAsync_unsubscribe',['../_m_q_t_t_async_8h.html#a08d18ece91c1b011011354570d8ac1ab',1,'MQTTAsync.h']]], - ['mqttasync_5funsubscribemany_404',['MQTTAsync_unsubscribeMany',['../_m_q_t_t_async_8h.html#a69fd433ce1b9b6a1b3b453c4793a9311',1,'MQTTAsync.h']]], - ['mqttasync_5fwaitforcompletion_405',['MQTTAsync_waitForCompletion',['../_m_q_t_t_async_8h.html#a4fe09cc9c976b1cf424e13765d6cd8c9',1,'MQTTAsync.h']]], - ['mqttproperties_5fadd_406',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], - ['mqttproperties_5fcopy_407',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], - ['mqttproperties_5ffree_408',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalue_409',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetnumericvalueat_410',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetproperty_411',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], - ['mqttproperties_5fgetpropertyat_412',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], - ['mqttproperties_5fhasproperty_413',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], - ['mqttproperties_5flen_414',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], - ['mqttproperties_5fpropertycount_415',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], - ['mqttproperties_5fread_416',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], - ['mqttproperties_5fwrite_417',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], - ['mqttproperty_5fgettype_418',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], - ['mqttpropertyname_419',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], - ['mqttreasoncode_5ftostring_420',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]] + ['mqttasync_5fconnect_374',['MQTTAsync_connect',['../_m_q_t_t_async_8h.html#a0388b226a414b09fa733f6d65004ec32',1,'MQTTAsync.h']]], + ['mqttasync_5fcreate_375',['MQTTAsync_create',['../_m_q_t_t_async_8h.html#a5462c4618d0a229116db5fbadacf95d2',1,'MQTTAsync.h']]], + ['mqttasync_5fcreatewithoptions_376',['MQTTAsync_createWithOptions',['../_m_q_t_t_async_8h.html#a78cbe1b851fea48001112f7ba9e4ea62',1,'MQTTAsync.h']]], + ['mqttasync_5fdestroy_377',['MQTTAsync_destroy',['../_m_q_t_t_async_8h.html#ad5562f9dc71fbd93d25ad20b328cb887',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnect_378',['MQTTAsync_disconnect',['../_m_q_t_t_async_8h.html#adc69afa4725f8321bdaa5a05aec5cfd5',1,'MQTTAsync.h']]], + ['mqttasync_5ffree_379',['MQTTAsync_free',['../_m_q_t_t_async_8h.html#a2b836f58612a2c4627e40ae848da190d',1,'MQTTAsync.h']]], + ['mqttasync_5ffreemessage_380',['MQTTAsync_freeMessage',['../_m_q_t_t_async_8h.html#a9b45db63052fe29ab1fad22d2a00c91c',1,'MQTTAsync.h']]], + ['mqttasync_5fgetpendingtokens_381',['MQTTAsync_getPendingTokens',['../_m_q_t_t_async_8h.html#abc92f60743fc471643b473abbc987be0',1,'MQTTAsync.h']]], + ['mqttasync_5fgetversioninfo_382',['MQTTAsync_getVersionInfo',['../_m_q_t_t_async_8h.html#a7cf29b785a1d4ff1de2e67e2f916b658',1,'MQTTAsync.h']]], + ['mqttasync_5fglobal_5finit_383',['MQTTAsync_global_init',['../_m_q_t_t_async_8h.html#a1705e75a48999cb45bf85c15608478f5',1,'MQTTAsync.h']]], + ['mqttasync_5fiscomplete_384',['MQTTAsync_isComplete',['../_m_q_t_t_async_8h.html#ab207095cab6f9a48b52cdb593b8456f4',1,'MQTTAsync.h']]], + ['mqttasync_5fisconnected_385',['MQTTAsync_isConnected',['../_m_q_t_t_async_8h.html#a46c332245c379629ae11f457fc179457',1,'MQTTAsync.h']]], + ['mqttasync_5fmalloc_386',['MQTTAsync_malloc',['../_m_q_t_t_async_8h.html#af5500ba58592afafaade2fcabdc61e61',1,'MQTTAsync.h']]], + ['mqttasync_5freconnect_387',['MQTTAsync_reconnect',['../_m_q_t_t_async_8h.html#abd3ea01869b89ff23f9522640479c395',1,'MQTTAsync.h']]], + ['mqttasync_5fsend_388',['MQTTAsync_send',['../_m_q_t_t_async_8h.html#a63c66a311ab16239a4175ff671871bf2',1,'MQTTAsync.h']]], + ['mqttasync_5fsendmessage_389',['MQTTAsync_sendMessage',['../_m_q_t_t_async_8h.html#a5687171e67e98f9ea590c9e3b64cde18',1,'MQTTAsync.h']]], + ['mqttasync_5fsetafterpersistenceread_390',['MQTTAsync_setAfterPersistenceRead',['../_m_q_t_t_async_8h.html#ab4d16e3c57502be6a7d1b1d3bcc382f3',1,'MQTTAsync.h']]], + ['mqttasync_5fsetbeforepersistencewrite_391',['MQTTAsync_setBeforePersistenceWrite',['../_m_q_t_t_async_8h.html#a1002b09c62a096578c9b3e0135eb98c1',1,'MQTTAsync.h']]], + ['mqttasync_5fsetcallbacks_392',['MQTTAsync_setCallbacks',['../_m_q_t_t_async_8h.html#ae9ae8d61023e7029ef5a19f5219c3599',1,'MQTTAsync.h']]], + ['mqttasync_5fsetconnected_393',['MQTTAsync_setConnected',['../_m_q_t_t_async_8h.html#a18cc19740d9b00c629dc53a4420ecf1f',1,'MQTTAsync.h']]], + ['mqttasync_5fsetconnectionlostcallback_394',['MQTTAsync_setConnectionLostCallback',['../_m_q_t_t_async_8h.html#aee15bbd9224efd9dcce9b4ae491b2e2e',1,'MQTTAsync.h']]], + ['mqttasync_5fsetdeliverycompletecallback_395',['MQTTAsync_setDeliveryCompleteCallback',['../_m_q_t_t_async_8h.html#a94ec624ee22cc01d2ca58a9e646a2665',1,'MQTTAsync.h']]], + ['mqttasync_5fsetdisconnected_396',['MQTTAsync_setDisconnected',['../_m_q_t_t_async_8h.html#ada4dd26d23c8849c51e4ab8200339040',1,'MQTTAsync.h']]], + ['mqttasync_5fsetmessagearrivedcallback_397',['MQTTAsync_setMessageArrivedCallback',['../_m_q_t_t_async_8h.html#a44abc360051b918a39b0596a137775ae',1,'MQTTAsync.h']]], + ['mqttasync_5fsettracecallback_398',['MQTTAsync_setTraceCallback',['../_m_q_t_t_async_8h.html#a0b350581324a4ff0eaee71e7a6721388',1,'MQTTAsync.h']]], + ['mqttasync_5fsettracelevel_399',['MQTTAsync_setTraceLevel',['../_m_q_t_t_async_8h.html#ac7fbab13a0b2e5dd4ee11efbbb9f6a3a',1,'MQTTAsync.h']]], + ['mqttasync_5fsetupdateconnectoptions_400',['MQTTAsync_setUpdateConnectOptions',['../_m_q_t_t_async_8h.html#aa078aec3eba83481f63db3c3939a5da9',1,'MQTTAsync.h']]], + ['mqttasync_5fstrerror_401',['MQTTAsync_strerror',['../_m_q_t_t_async_8h.html#a875cd089a8b23eb3fd50c0406fc75d9f',1,'MQTTAsync.h']]], + ['mqttasync_5fsubscribe_402',['MQTTAsync_subscribe',['../_m_q_t_t_async_8h.html#ae10bd009934b3bb4a9f4abae7424a611',1,'MQTTAsync.h']]], + ['mqttasync_5fsubscribemany_403',['MQTTAsync_subscribeMany',['../_m_q_t_t_async_8h.html#ac78620b33434a187255bd1a3faec1578',1,'MQTTAsync.h']]], + ['mqttasync_5funsubscribe_404',['MQTTAsync_unsubscribe',['../_m_q_t_t_async_8h.html#a08d18ece91c1b011011354570d8ac1ab',1,'MQTTAsync.h']]], + ['mqttasync_5funsubscribemany_405',['MQTTAsync_unsubscribeMany',['../_m_q_t_t_async_8h.html#a69fd433ce1b9b6a1b3b453c4793a9311',1,'MQTTAsync.h']]], + ['mqttasync_5fwaitforcompletion_406',['MQTTAsync_waitForCompletion',['../_m_q_t_t_async_8h.html#a4fe09cc9c976b1cf424e13765d6cd8c9',1,'MQTTAsync.h']]], + ['mqttproperties_5fadd_407',['MQTTProperties_add',['../_m_q_t_t_properties_8h.html#a88f1d21556c2d23330d71357cd226a15',1,'MQTTProperties.h']]], + ['mqttproperties_5fcopy_408',['MQTTProperties_copy',['../_m_q_t_t_properties_8h.html#a69b3e474ee2f828e5b827d615fe0fe72',1,'MQTTProperties.h']]], + ['mqttproperties_5ffree_409',['MQTTProperties_free',['../_m_q_t_t_properties_8h.html#ab68247ed365ee51170a9309c828b1823',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalue_410',['MQTTProperties_getNumericValue',['../_m_q_t_t_properties_8h.html#afa777eb796532a3c0c59ddc40aca3792',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetnumericvalueat_411',['MQTTProperties_getNumericValueAt',['../_m_q_t_t_properties_8h.html#abc6bc80d9bb644c9b4a66b6808829a53',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetproperty_412',['MQTTProperties_getProperty',['../_m_q_t_t_properties_8h.html#a788b033cbed8a7906799fccbb1463f20',1,'MQTTProperties.h']]], + ['mqttproperties_5fgetpropertyat_413',['MQTTProperties_getPropertyAt',['../_m_q_t_t_properties_8h.html#ac6942d8fafb5794591fc558b4bb06beb',1,'MQTTProperties.h']]], + ['mqttproperties_5fhasproperty_414',['MQTTProperties_hasProperty',['../_m_q_t_t_properties_8h.html#a4ccdf6a712c3d803a16a4d3f00f9be2f',1,'MQTTProperties.h']]], + ['mqttproperties_5flen_415',['MQTTProperties_len',['../_m_q_t_t_properties_8h.html#ab7ad6f14e2dc7576d35827a28b0dc81d',1,'MQTTProperties.h']]], + ['mqttproperties_5fpropertycount_416',['MQTTProperties_propertyCount',['../_m_q_t_t_properties_8h.html#a6f0d8b230c2e7008c7639cfce1c04429',1,'MQTTProperties.h']]], + ['mqttproperties_5fread_417',['MQTTProperties_read',['../_m_q_t_t_properties_8h.html#afcb874dfcc9f0eaa0b063e2fad740871',1,'MQTTProperties.h']]], + ['mqttproperties_5fwrite_418',['MQTTProperties_write',['../_m_q_t_t_properties_8h.html#ade0027a4e571bd288fe40271ff7aa497',1,'MQTTProperties.h']]], + ['mqttproperty_5fgettype_419',['MQTTProperty_getType',['../_m_q_t_t_properties_8h.html#a7d30ad0520bc9b9366e700d4b493b173',1,'MQTTProperties.h']]], + ['mqttpropertyname_420',['MQTTPropertyName',['../_m_q_t_t_properties_8h.html#afa0a7306d7b6174c5bc417ca49d99851',1,'MQTTProperties.h']]], + ['mqttreasoncode_5ftostring_421',['MQTTReasonCode_toString',['../_m_q_t_t_reason_codes_8h.html#a91922a5e3c1e5ec7670b6e296854f1b7',1,'MQTTReasonCodes.h']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_0.js b/docs/MQTTAsync/html/search/pages_0.js index 64ad6f60..039a623b 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_693',['Automatic Reconnect',['../auto_reconnect.html',1,'']]], - ['asynchronous_20mqtt_20client_20library_20for_20c_694',['Asynchronous MQTT client library for C',['../index.html',1,'']]] + ['automatic_20reconnect_695',['Automatic Reconnect',['../auto_reconnect.html',1,'']]], + ['asynchronous_20mqtt_20client_20library_20for_20c_696',['Asynchronous MQTT client library for C',['../index.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_1.js b/docs/MQTTAsync/html/search/pages_1.js index 627b665e..21c3909a 100644 --- a/docs/MQTTAsync/html/search/pages_1.js +++ b/docs/MQTTAsync/html/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['callbacks_695',['Callbacks',['../callbacks.html',1,'']]] + ['callbacks_697',['Callbacks',['../callbacks.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_2.js b/docs/MQTTAsync/html/search/pages_2.js index 00ecc551..e897c9be 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_696',['Publish While Disconnected',['../offline_publish.html',1,'']]], - ['publication_20example_697',['Publication example',['../publish.html',1,'']]] + ['publish_20while_20disconnected_698',['Publish While Disconnected',['../offline_publish.html',1,'']]], + ['publication_20example_699',['Publication example',['../publish.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_3.js b/docs/MQTTAsync/html/search/pages_3.js index bfd99ab5..444b234d 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_698',['Quality of service',['../qos.html',1,'']]] + ['quality_20of_20service_700',['Quality of service',['../qos.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_4.js b/docs/MQTTAsync/html/search/pages_4.js index 325cc971..f5d40fe9 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_699',['Subscription example',['../subscribe.html',1,'']]], - ['subscription_20wildcards_700',['Subscription wildcards',['../wildcard.html',1,'']]] + ['subscription_20example_701',['Subscription example',['../subscribe.html',1,'']]], + ['subscription_20wildcards_702',['Subscription wildcards',['../wildcard.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/pages_5.js b/docs/MQTTAsync/html/search/pages_5.js index 0b2dd8b2..dda17c23 100644 --- a/docs/MQTTAsync/html/search/pages_5.js +++ b/docs/MQTTAsync/html/search/pages_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['threading_701',['Threading',['../async.html',1,'']]], - ['tracing_702',['Tracing',['../tracing.html',1,'']]] + ['threading_703',['Threading',['../async.html',1,'']]], + ['tracing_704',['Tracing',['../tracing.html',1,'']]] ]; diff --git a/docs/MQTTAsync/html/search/typedefs_0.js b/docs/MQTTAsync/html/search/typedefs_0.js index 2203c555..f0d38023 100644 --- a/docs/MQTTAsync/html/search/typedefs_0.js +++ b/docs/MQTTAsync/html/search/typedefs_0.js @@ -1,22 +1,22 @@ var searchData= [ - ['mqttasync_524',['MQTTAsync',['../_m_q_t_t_async_8h.html#a0db1d736cdc0c864fe41abb3afd605bd',1,'MQTTAsync.h']]], - ['mqttasync_5fcalloptions_525',['MQTTAsync_callOptions',['../_m_q_t_t_async_8h.html#ab6bfa6beae93c259220e1a131ba1cf9c',1,'MQTTAsync.h']]], - ['mqttasync_5fconnected_526',['MQTTAsync_connected',['../_m_q_t_t_async_8h.html#a34bb8d321e9d368780b5c832c058f223',1,'MQTTAsync.h']]], - ['mqttasync_5fconnectionlost_527',['MQTTAsync_connectionLost',['../_m_q_t_t_async_8h.html#a3900a98d7b1d58ad6e686bfce298bb6c',1,'MQTTAsync.h']]], - ['mqttasync_5fdeliverycomplete_528',['MQTTAsync_deliveryComplete',['../_m_q_t_t_async_8h.html#ab10296618e266b3c02fd117d6616b15d',1,'MQTTAsync.h']]], - ['mqttasync_5fdisconnected_529',['MQTTAsync_disconnected',['../_m_q_t_t_async_8h.html#a52a1d9ab6e5d5064a3de42d0eec88f57',1,'MQTTAsync.h']]], - ['mqttasync_5fmessagearrived_530',['MQTTAsync_messageArrived',['../_m_q_t_t_async_8h.html#a3918ead59b56816a8d7544def184e48e',1,'MQTTAsync.h']]], - ['mqttasync_5fonfailure_531',['MQTTAsync_onFailure',['../_m_q_t_t_async_8h.html#a6060c25c2641e878803aef76fefb31ee',1,'MQTTAsync.h']]], - ['mqttasync_5fonfailure5_532',['MQTTAsync_onFailure5',['../_m_q_t_t_async_8h.html#a8c5023e04d5c3e9805d5dae76df21f4c',1,'MQTTAsync.h']]], - ['mqttasync_5fonsuccess_533',['MQTTAsync_onSuccess',['../_m_q_t_t_async_8h.html#a7b0c18a0e29e2ce73f3ea109bc32617b',1,'MQTTAsync.h']]], - ['mqttasync_5fonsuccess5_534',['MQTTAsync_onSuccess5',['../_m_q_t_t_async_8h.html#a892cf122e6e8d8f6cd38c4c8efe8fb67',1,'MQTTAsync.h']]], - ['mqttasync_5fresponseoptions_535',['MQTTAsync_responseOptions',['../_m_q_t_t_async_8h.html#ae1568d96d6418004cc79466c06f3d791',1,'MQTTAsync.h']]], - ['mqttasync_5ftoken_536',['MQTTAsync_token',['../_m_q_t_t_async_8h.html#a7ca6d2a1813f2bbd0bc3af2771e46ba4',1,'MQTTAsync.h']]], - ['mqttasync_5ftracecallback_537',['MQTTAsync_traceCallback',['../_m_q_t_t_async_8h.html#a65aba1caeae9b5af5d5b6c5598a75b02',1,'MQTTAsync.h']]], - ['mqttasync_5fupdateconnectoptions_538',['MQTTAsync_updateConnectOptions',['../_m_q_t_t_async_8h.html#a5e44304a2c011a7d61b72c779ad83979',1,'MQTTAsync.h']]], - ['mqttpersistence_5fafterread_539',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], - ['mqttpersistence_5fbeforewrite_540',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], - ['mqttproperties_541',['MQTTProperties',['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties.h']]], - ['mqttsubscribe_5foptions_542',['MQTTSubscribe_options',['../_m_q_t_t_subscribe_opts_8h.html#aa68db3eaed272ae1aaea294401079d8a',1,'MQTTSubscribeOpts.h']]] + ['mqttasync_525',['MQTTAsync',['../_m_q_t_t_async_8h.html#a0db1d736cdc0c864fe41abb3afd605bd',1,'MQTTAsync.h']]], + ['mqttasync_5fcalloptions_526',['MQTTAsync_callOptions',['../_m_q_t_t_async_8h.html#ab6bfa6beae93c259220e1a131ba1cf9c',1,'MQTTAsync.h']]], + ['mqttasync_5fconnected_527',['MQTTAsync_connected',['../_m_q_t_t_async_8h.html#a34bb8d321e9d368780b5c832c058f223',1,'MQTTAsync.h']]], + ['mqttasync_5fconnectionlost_528',['MQTTAsync_connectionLost',['../_m_q_t_t_async_8h.html#a3900a98d7b1d58ad6e686bfce298bb6c',1,'MQTTAsync.h']]], + ['mqttasync_5fdeliverycomplete_529',['MQTTAsync_deliveryComplete',['../_m_q_t_t_async_8h.html#ab10296618e266b3c02fd117d6616b15d',1,'MQTTAsync.h']]], + ['mqttasync_5fdisconnected_530',['MQTTAsync_disconnected',['../_m_q_t_t_async_8h.html#a52a1d9ab6e5d5064a3de42d0eec88f57',1,'MQTTAsync.h']]], + ['mqttasync_5fmessagearrived_531',['MQTTAsync_messageArrived',['../_m_q_t_t_async_8h.html#a3918ead59b56816a8d7544def184e48e',1,'MQTTAsync.h']]], + ['mqttasync_5fonfailure_532',['MQTTAsync_onFailure',['../_m_q_t_t_async_8h.html#a6060c25c2641e878803aef76fefb31ee',1,'MQTTAsync.h']]], + ['mqttasync_5fonfailure5_533',['MQTTAsync_onFailure5',['../_m_q_t_t_async_8h.html#a8c5023e04d5c3e9805d5dae76df21f4c',1,'MQTTAsync.h']]], + ['mqttasync_5fonsuccess_534',['MQTTAsync_onSuccess',['../_m_q_t_t_async_8h.html#a7b0c18a0e29e2ce73f3ea109bc32617b',1,'MQTTAsync.h']]], + ['mqttasync_5fonsuccess5_535',['MQTTAsync_onSuccess5',['../_m_q_t_t_async_8h.html#a892cf122e6e8d8f6cd38c4c8efe8fb67',1,'MQTTAsync.h']]], + ['mqttasync_5fresponseoptions_536',['MQTTAsync_responseOptions',['../_m_q_t_t_async_8h.html#ae1568d96d6418004cc79466c06f3d791',1,'MQTTAsync.h']]], + ['mqttasync_5ftoken_537',['MQTTAsync_token',['../_m_q_t_t_async_8h.html#a7ca6d2a1813f2bbd0bc3af2771e46ba4',1,'MQTTAsync.h']]], + ['mqttasync_5ftracecallback_538',['MQTTAsync_traceCallback',['../_m_q_t_t_async_8h.html#a65aba1caeae9b5af5d5b6c5598a75b02',1,'MQTTAsync.h']]], + ['mqttasync_5fupdateconnectoptions_539',['MQTTAsync_updateConnectOptions',['../_m_q_t_t_async_8h.html#a5e44304a2c011a7d61b72c779ad83979',1,'MQTTAsync.h']]], + ['mqttpersistence_5fafterread_540',['MQTTPersistence_afterRead',['../_m_q_t_t_client_persistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], + ['mqttpersistence_5fbeforewrite_541',['MQTTPersistence_beforeWrite',['../_m_q_t_t_client_persistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]], + ['mqttproperties_542',['MQTTProperties',['../_m_q_t_t_properties_8h.html#a7758f1a5eceb6f46c8540630e39e2fb4',1,'MQTTProperties.h']]], + ['mqttsubscribe_5foptions_543',['MQTTSubscribe_options',['../_m_q_t_t_subscribe_opts_8h.html#aa68db3eaed272ae1aaea294401079d8a',1,'MQTTSubscribeOpts.h']]] ]; diff --git a/docs/MQTTAsync/html/search/typedefs_1.js b/docs/MQTTAsync/html/search/typedefs_1.js index f42aecdc..57504ece 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_543',['Persistence_clear',['../_m_q_t_t_client_persistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], - ['persistence_5fclose_544',['Persistence_close',['../_m_q_t_t_client_persistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], - ['persistence_5fcontainskey_545',['Persistence_containskey',['../_m_q_t_t_client_persistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], - ['persistence_5fget_546',['Persistence_get',['../_m_q_t_t_client_persistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], - ['persistence_5fkeys_547',['Persistence_keys',['../_m_q_t_t_client_persistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], - ['persistence_5fopen_548',['Persistence_open',['../_m_q_t_t_client_persistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], - ['persistence_5fput_549',['Persistence_put',['../_m_q_t_t_client_persistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], - ['persistence_5fremove_550',['Persistence_remove',['../_m_q_t_t_client_persistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]] + ['persistence_5fclear_544',['Persistence_clear',['../_m_q_t_t_client_persistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], + ['persistence_5fclose_545',['Persistence_close',['../_m_q_t_t_client_persistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], + ['persistence_5fcontainskey_546',['Persistence_containskey',['../_m_q_t_t_client_persistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], + ['persistence_5fget_547',['Persistence_get',['../_m_q_t_t_client_persistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], + ['persistence_5fkeys_548',['Persistence_keys',['../_m_q_t_t_client_persistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], + ['persistence_5fopen_549',['Persistence_open',['../_m_q_t_t_client_persistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], + ['persistence_5fput_550',['Persistence_put',['../_m_q_t_t_client_persistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], + ['persistence_5fremove_551',['Persistence_remove',['../_m_q_t_t_client_persistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_0.js b/docs/MQTTAsync/html/search/variables_0.js index b9bba512..82869f00 100644 --- a/docs/MQTTAsync/html/search/variables_0.js +++ b/docs/MQTTAsync/html/search/variables_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['allowdisconnectedsendatanytime_421',['allowDisconnectedSendAtAnyTime',['../struct_m_q_t_t_async__create_options.html#abe7fdbe18bfd3577a75d3b386d69406c',1,'MQTTAsync_createOptions']]], - ['alt_422',['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_423',['array',['../struct_m_q_t_t_properties.html#a3ac4c38b423393c1553dcf8b71e7dd58',1,'MQTTProperties']]], - ['automaticreconnect_424',['automaticReconnect',['../struct_m_q_t_t_async__connect_options.html#a7902ce4d11b96d8b19582bdd1f82b630',1,'MQTTAsync_connectOptions']]] + ['allowdisconnectedsendatanytime_422',['allowDisconnectedSendAtAnyTime',['../struct_m_q_t_t_async__create_options.html#abe7fdbe18bfd3577a75d3b386d69406c',1,'MQTTAsync_createOptions']]], + ['alt_423',['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_424',['array',['../struct_m_q_t_t_properties.html#a3ac4c38b423393c1553dcf8b71e7dd58',1,'MQTTProperties']]], + ['automaticreconnect_425',['automaticReconnect',['../struct_m_q_t_t_async__connect_options.html#a7902ce4d11b96d8b19582bdd1f82b630',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_1.js b/docs/MQTTAsync/html/search/variables_1.js index b4898a97..23cb502c 100644 --- a/docs/MQTTAsync/html/search/variables_1.js +++ b/docs/MQTTAsync/html/search/variables_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['binarypwd_425',['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_426',['byte',['../struct_m_q_t_t_property.html#a1581cde4f73c9a797ae1e7afcc1bb3de',1,'MQTTProperty']]] + ['binarypwd_426',['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_427',['byte',['../struct_m_q_t_t_property.html#a1581cde4f73c9a797ae1e7afcc1bb3de',1,'MQTTProperty']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_10.js b/docs/MQTTAsync/html/search/variables_10.js index cc964476..ec017758 100644 --- a/docs/MQTTAsync/html/search/variables_10.js +++ b/docs/MQTTAsync/html/search/variables_10.js @@ -1,7 +1,7 @@ var searchData= [ - ['timeout_514',['timeout',['../struct_m_q_t_t_async__disconnect_options.html#a493b57f443cc38b3d3df9c1e584d9d82',1,'MQTTAsync_disconnectOptions']]], - ['token_515',['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_516',['topicName',['../struct_m_q_t_t_async__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTAsync_willOptions']]], - ['truststore_517',['trustStore',['../struct_m_q_t_t_async___s_s_l_options.html#a032835d4c4a1c1e19b53c330a673a6e0',1,'MQTTAsync_SSLOptions']]] + ['timeout_515',['timeout',['../struct_m_q_t_t_async__disconnect_options.html#a493b57f443cc38b3d3df9c1e584d9d82',1,'MQTTAsync_disconnectOptions']]], + ['token_516',['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_517',['topicName',['../struct_m_q_t_t_async__will_options.html#a0e20a7b350881d05108d6342884198a5',1,'MQTTAsync_willOptions']]], + ['truststore_518',['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.js b/docs/MQTTAsync/html/search/variables_11.js index 512b50c7..113ecf94 100644 --- a/docs/MQTTAsync/html/search/variables_11.js +++ b/docs/MQTTAsync/html/search/variables_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['unsub_518',['unsub',['../struct_m_q_t_t_async__success_data5.html#a46b20b320d6951e567ebf678ea4ac1a3',1,'MQTTAsync_successData5']]], - ['username_519',['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_519',['unsub',['../struct_m_q_t_t_async__success_data5.html#a46b20b320d6951e567ebf678ea4ac1a3',1,'MQTTAsync_successData5']]], + ['username_520',['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.js b/docs/MQTTAsync/html/search/variables_12.js index 74840f27..fd036907 100644 --- a/docs/MQTTAsync/html/search/variables_12.js +++ b/docs/MQTTAsync/html/search/variables_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['value_520',['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_521',['verify',['../struct_m_q_t_t_async___s_s_l_options.html#a94900629685d5ed08f66fd2931f573ce',1,'MQTTAsync_SSLOptions']]] + ['value_521',['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_522',['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.js b/docs/MQTTAsync/html/search/variables_13.js index ec58bb45..41a3cb93 100644 --- a/docs/MQTTAsync/html/search/variables_13.js +++ b/docs/MQTTAsync/html/search/variables_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['will_522',['will',['../struct_m_q_t_t_async__connect_options.html#a7a9c5105542460d6fd9323facca66648',1,'MQTTAsync_connectOptions']]], - ['willproperties_523',['willProperties',['../struct_m_q_t_t_async__connect_options.html#ac31f13e964ffb7e3696caef47ecc0641',1,'MQTTAsync_connectOptions']]] + ['will_523',['will',['../struct_m_q_t_t_async__connect_options.html#a7a9c5105542460d6fd9323facca66648',1,'MQTTAsync_connectOptions']]], + ['willproperties_524',['willProperties',['../struct_m_q_t_t_async__connect_options.html#ac31f13e964ffb7e3696caef47ecc0641',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_2.js b/docs/MQTTAsync/html/search/variables_2.js index 23b8f123..14d1d28a 100644 --- a/docs/MQTTAsync/html/search/variables_2.js +++ b/docs/MQTTAsync/html/search/variables_2.js @@ -1,12 +1,12 @@ var searchData= [ - ['capath_427',['CApath',['../struct_m_q_t_t_async___s_s_l_options.html#a3078b3c824cc9753a57898072445c34d',1,'MQTTAsync_SSLOptions']]], - ['cleansession_428',['cleansession',['../struct_m_q_t_t_async__connect_options.html#a036c36a2a4d3a3ffae9ab4dd8b3e7f7b',1,'MQTTAsync_connectOptions']]], - ['cleanstart_429',['cleanstart',['../struct_m_q_t_t_async__connect_options.html#acdcb75a5d5981da027bce83849140f7b',1,'MQTTAsync_connectOptions']]], - ['code_430',['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_431',['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_432',['connectProperties',['../struct_m_q_t_t_async__connect_options.html#a9f8b7ffb4a698eb151a3b090548b82e8',1,'MQTTAsync_connectOptions']]], - ['connecttimeout_433',['connectTimeout',['../struct_m_q_t_t_async__connect_options.html#a38c6aa24b36d981c49405db425c24db0',1,'MQTTAsync_connectOptions']]], - ['context_434',['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_435',['count',['../struct_m_q_t_t_properties.html#ad43c3812e6d13e0518d9f8b8f463ffcf',1,'MQTTProperties']]] + ['capath_428',['CApath',['../struct_m_q_t_t_async___s_s_l_options.html#a3078b3c824cc9753a57898072445c34d',1,'MQTTAsync_SSLOptions']]], + ['cleansession_429',['cleansession',['../struct_m_q_t_t_async__connect_options.html#a036c36a2a4d3a3ffae9ab4dd8b3e7f7b',1,'MQTTAsync_connectOptions']]], + ['cleanstart_430',['cleanstart',['../struct_m_q_t_t_async__connect_options.html#acdcb75a5d5981da027bce83849140f7b',1,'MQTTAsync_connectOptions']]], + ['code_431',['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_432',['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_433',['connectProperties',['../struct_m_q_t_t_async__connect_options.html#a9f8b7ffb4a698eb151a3b090548b82e8',1,'MQTTAsync_connectOptions']]], + ['connecttimeout_434',['connectTimeout',['../struct_m_q_t_t_async__connect_options.html#a38c6aa24b36d981c49405db425c24db0',1,'MQTTAsync_connectOptions']]], + ['context_435',['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_436',['count',['../struct_m_q_t_t_properties.html#ad43c3812e6d13e0518d9f8b8f463ffcf',1,'MQTTProperties']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_3.js b/docs/MQTTAsync/html/search/variables_3.js index c5085a77..14d1fd77 100644 --- a/docs/MQTTAsync/html/search/variables_3.js +++ b/docs/MQTTAsync/html/search/variables_3.js @@ -1,9 +1,9 @@ var searchData= [ - ['data_436',['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_437',['deleteOldestMessages',['../struct_m_q_t_t_async__create_options.html#a76de37b3cff885e83db204a347fe0a2d',1,'MQTTAsync_createOptions']]], - ['destinationname_438',['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_439',['disableDefaultTrustStore',['../struct_m_q_t_t_async___s_s_l_options.html#a0826fcae7c2816e04772c61542c6846b',1,'MQTTAsync_SSLOptions']]], - ['do_5fopenssl_5finit_440',['do_openssl_init',['../struct_m_q_t_t_async__init__options.html#a5929146596391e2838ef95feb89776da',1,'MQTTAsync_init_options']]], - ['dup_441',['dup',['../struct_m_q_t_t_async__message.html#adc4cf3f551bb367858644559d69cfdf5',1,'MQTTAsync_message']]] + ['data_437',['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_438',['deleteOldestMessages',['../struct_m_q_t_t_async__create_options.html#a76de37b3cff885e83db204a347fe0a2d',1,'MQTTAsync_createOptions']]], + ['destinationname_439',['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_440',['disableDefaultTrustStore',['../struct_m_q_t_t_async___s_s_l_options.html#a0826fcae7c2816e04772c61542c6846b',1,'MQTTAsync_SSLOptions']]], + ['do_5fopenssl_5finit_441',['do_openssl_init',['../struct_m_q_t_t_async__init__options.html#a5929146596391e2838ef95feb89776da',1,'MQTTAsync_init_options']]], + ['dup_442',['dup',['../struct_m_q_t_t_async__message.html#adc4cf3f551bb367858644559d69cfdf5',1,'MQTTAsync_message']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_4.js b/docs/MQTTAsync/html/search/variables_4.js index 47ea789b..c28895b2 100644 --- a/docs/MQTTAsync/html/search/variables_4.js +++ b/docs/MQTTAsync/html/search/variables_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['enabledciphersuites_442',['enabledCipherSuites',['../struct_m_q_t_t_async___s_s_l_options.html#aa683926d52134077f27d6dc67bda13ab',1,'MQTTAsync_SSLOptions']]], - ['enableservercertauth_443',['enableServerCertAuth',['../struct_m_q_t_t_async___s_s_l_options.html#a75f6c13b7634e15f96dd9f17db6cf0be',1,'MQTTAsync_SSLOptions']]] + ['enabledciphersuites_443',['enabledCipherSuites',['../struct_m_q_t_t_async___s_s_l_options.html#aa683926d52134077f27d6dc67bda13ab',1,'MQTTAsync_SSLOptions']]], + ['enableservercertauth_444',['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.js b/docs/MQTTAsync/html/search/variables_5.js index 97399202..4ece7f7c 100644 --- a/docs/MQTTAsync/html/search/variables_5.js +++ b/docs/MQTTAsync/html/search/variables_5.js @@ -1,6 +1,6 @@ var searchData= [ - ['httpheaders_444',['httpHeaders',['../struct_m_q_t_t_async__connect_options.html#ac4098248961a1ee89f40353eeebab58b',1,'MQTTAsync_connectOptions']]], - ['httpproxy_445',['httpProxy',['../struct_m_q_t_t_async__connect_options.html#add124780ab2de397a96780576c2f112c',1,'MQTTAsync_connectOptions']]], - ['httpsproxy_446',['httpsProxy',['../struct_m_q_t_t_async__connect_options.html#a388b78d8a75658928238f700f207ad92',1,'MQTTAsync_connectOptions']]] + ['httpheaders_445',['httpHeaders',['../struct_m_q_t_t_async__connect_options.html#ac4098248961a1ee89f40353eeebab58b',1,'MQTTAsync_connectOptions']]], + ['httpproxy_446',['httpProxy',['../struct_m_q_t_t_async__connect_options.html#add124780ab2de397a96780576c2f112c',1,'MQTTAsync_connectOptions']]], + ['httpsproxy_447',['httpsProxy',['../struct_m_q_t_t_async__connect_options.html#a388b78d8a75658928238f700f207ad92',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_6.js b/docs/MQTTAsync/html/search/variables_6.js index 8fd8b991..2ce81465 100644 --- a/docs/MQTTAsync/html/search/variables_6.js +++ b/docs/MQTTAsync/html/search/variables_6.js @@ -1,6 +1,6 @@ var searchData= [ - ['identifier_447',['identifier',['../struct_m_q_t_t_property.html#a2ff04e8cc70fbaa9bcb9a4fb3d510882',1,'MQTTProperty']]], - ['integer2_448',['integer2',['../struct_m_q_t_t_property.html#a0289ec2e0df8789139386b0ddf5c71c3',1,'MQTTProperty']]], - ['integer4_449',['integer4',['../struct_m_q_t_t_property.html#a813425ef31abb5ef0091e3043e8a366b',1,'MQTTProperty']]] + ['identifier_448',['identifier',['../struct_m_q_t_t_property.html#a2ff04e8cc70fbaa9bcb9a4fb3d510882',1,'MQTTProperty']]], + ['integer2_449',['integer2',['../struct_m_q_t_t_property.html#a0289ec2e0df8789139386b0ddf5c71c3',1,'MQTTProperty']]], + ['integer4_450',['integer4',['../struct_m_q_t_t_property.html#a813425ef31abb5ef0091e3043e8a366b',1,'MQTTProperty']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_7.js b/docs/MQTTAsync/html/search/variables_7.js index bca05710..d7d1b8ff 100644 --- a/docs/MQTTAsync/html/search/variables_7.js +++ b/docs/MQTTAsync/html/search/variables_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['keepaliveinterval_450',['keepAliveInterval',['../struct_m_q_t_t_async__connect_options.html#ac8dd0930672a9c7d71fc645aa1f0521d',1,'MQTTAsync_connectOptions']]], - ['keystore_451',['keyStore',['../struct_m_q_t_t_async___s_s_l_options.html#a32b476382955289ce427112b59f21c3e',1,'MQTTAsync_SSLOptions']]] + ['keepaliveinterval_451',['keepAliveInterval',['../struct_m_q_t_t_async__connect_options.html#ac8dd0930672a9c7d71fc645aa1f0521d',1,'MQTTAsync_connectOptions']]], + ['keystore_452',['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.js b/docs/MQTTAsync/html/search/variables_8.js index e09aec48..e6a3e482 100644 --- a/docs/MQTTAsync/html/search/variables_8.js +++ b/docs/MQTTAsync/html/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['len_452',['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_453',['length',['../struct_m_q_t_t_properties.html#a9f59b34b1f25fe00023291b678246bcc',1,'MQTTProperties']]] + ['len_453',['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_454',['length',['../struct_m_q_t_t_properties.html#a9f59b34b1f25fe00023291b678246bcc',1,'MQTTProperties']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_9.js b/docs/MQTTAsync/html/search/variables_9.js index 75f01aa6..f94913bf 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_454',['max_count',['../struct_m_q_t_t_properties.html#a8de324382d8fd2f5939bf3372e059383',1,'MQTTProperties']]], - ['maxbufferedmessages_455',['maxBufferedMessages',['../struct_m_q_t_t_async__create_options.html#a3b74acf6f315bb5fe36266bc9647ee97',1,'MQTTAsync_createOptions']]], - ['maxinflight_456',['maxInflight',['../struct_m_q_t_t_async__connect_options.html#a5c9d6c557453232a1b25cbbec5a31e8c',1,'MQTTAsync_connectOptions']]], - ['maxretryinterval_457',['maxRetryInterval',['../struct_m_q_t_t_async__connect_options.html#a035ba380dd97a284db04f4eaae5e113b',1,'MQTTAsync_connectOptions']]], - ['message_458',['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_459',['minRetryInterval',['../struct_m_q_t_t_async__connect_options.html#a166ac1b967f09326b0187f66be3e69af',1,'MQTTAsync_connectOptions']]], - ['mqttversion_460',['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_461',['msgid',['../struct_m_q_t_t_async__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTAsync_message']]] + ['max_5fcount_455',['max_count',['../struct_m_q_t_t_properties.html#a8de324382d8fd2f5939bf3372e059383',1,'MQTTProperties']]], + ['maxbufferedmessages_456',['maxBufferedMessages',['../struct_m_q_t_t_async__create_options.html#a3b74acf6f315bb5fe36266bc9647ee97',1,'MQTTAsync_createOptions']]], + ['maxinflight_457',['maxInflight',['../struct_m_q_t_t_async__connect_options.html#a5c9d6c557453232a1b25cbbec5a31e8c',1,'MQTTAsync_connectOptions']]], + ['maxretryinterval_458',['maxRetryInterval',['../struct_m_q_t_t_async__connect_options.html#a035ba380dd97a284db04f4eaae5e113b',1,'MQTTAsync_connectOptions']]], + ['message_459',['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_460',['minRetryInterval',['../struct_m_q_t_t_async__connect_options.html#a166ac1b967f09326b0187f66be3e69af',1,'MQTTAsync_connectOptions']]], + ['mqttversion_461',['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_462',['msgid',['../struct_m_q_t_t_async__message.html#a6174c42da8c55c86e7255be2848dc4ac',1,'MQTTAsync_message']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_a.js b/docs/MQTTAsync/html/search/variables_a.js index 74fd5952..0ed96d15 100644 --- a/docs/MQTTAsync/html/search/variables_a.js +++ b/docs/MQTTAsync/html/search/variables_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['name_462',['name',['../struct_m_q_t_t_async__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTAsync_nameValue']]], - ['nolocal_463',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] + ['name_463',['name',['../struct_m_q_t_t_async__name_value.html#a8f8f80d37794cde9472343e4487ba3eb',1,'MQTTAsync_nameValue']]], + ['nolocal_464',['noLocal',['../struct_m_q_t_t_subscribe__options.html#abbb6a188886c12f305cbe69358515d8b',1,'MQTTSubscribe_options']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_b.js b/docs/MQTTAsync/html/search/variables_b.js index 26eefa74..3448f9a1 100644 --- a/docs/MQTTAsync/html/search/variables_b.js +++ b/docs/MQTTAsync/html/search/variables_b.js @@ -1,7 +1,7 @@ var searchData= [ - ['onfailure_464',['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_465',['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_466',['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_467',['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_465',['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_466',['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_467',['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_468',['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.js b/docs/MQTTAsync/html/search/variables_c.js index b335e53f..c16b7bb8 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_468',['packet_type',['../struct_m_q_t_t_async__failure_data5.html#a38dfee9f038f473c95af46fcef5dd3e9',1,'MQTTAsync_failureData5']]], - ['password_469',['password',['../struct_m_q_t_t_async__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTAsync_connectOptions']]], - ['payload_470',['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_471',['payloadlen',['../struct_m_q_t_t_async__message.html#aa3cb44feb3ae6d11b3a4cad2d94cb33a',1,'MQTTAsync_message']]], - ['pclear_472',['pclear',['../struct_m_q_t_t_client__persistence.html#abc192dc88113c7d933b29d3561badbf5',1,'MQTTClient_persistence']]], - ['pclose_473',['pclose',['../struct_m_q_t_t_client__persistence.html#a7e50506912d2ec0e014cc25ec28fb402',1,'MQTTClient_persistence']]], - ['pcontainskey_474',['pcontainskey',['../struct_m_q_t_t_client__persistence.html#ac103711576267f791325f2b70b6dc49d',1,'MQTTClient_persistence']]], - ['persistqos0_475',['persistQoS0',['../struct_m_q_t_t_async__create_options.html#a0c3ea2641e188542c787e71e2c521a0b',1,'MQTTAsync_createOptions']]], - ['pget_476',['pget',['../struct_m_q_t_t_client__persistence.html#a49155000b82a28ac3b3cb878f3a092d4',1,'MQTTClient_persistence']]], - ['pkeys_477',['pkeys',['../struct_m_q_t_t_client__persistence.html#a407e86a809e4b0b098a8c158f53b9606',1,'MQTTClient_persistence']]], - ['popen_478',['popen',['../struct_m_q_t_t_client__persistence.html#a1bae211b32415e6b349d5ae71599f9f4',1,'MQTTClient_persistence']]], - ['pput_479',['pput',['../struct_m_q_t_t_client__persistence.html#a4114d9b9971cee18d7e4b9dd5736a608',1,'MQTTClient_persistence']]], - ['premove_480',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], - ['privatekey_481',['privateKey',['../struct_m_q_t_t_async___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTAsync_SSLOptions']]], - ['privatekeypassword_482',['privateKeyPassword',['../struct_m_q_t_t_async___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTAsync_SSLOptions']]], - ['properties_483',['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_484',['protos',['../struct_m_q_t_t_async___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTAsync_SSLOptions']]], - ['protos_5flen_485',['protos_len',['../struct_m_q_t_t_async___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTAsync_SSLOptions']]], - ['pub_486',['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_469',['packet_type',['../struct_m_q_t_t_async__failure_data5.html#a38dfee9f038f473c95af46fcef5dd3e9',1,'MQTTAsync_failureData5']]], + ['password_470',['password',['../struct_m_q_t_t_async__connect_options.html#aa4a2ebcb494493f648ae1e6975672575',1,'MQTTAsync_connectOptions']]], + ['payload_471',['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_472',['payloadlen',['../struct_m_q_t_t_async__message.html#aa3cb44feb3ae6d11b3a4cad2d94cb33a',1,'MQTTAsync_message']]], + ['pclear_473',['pclear',['../struct_m_q_t_t_client__persistence.html#abc192dc88113c7d933b29d3561badbf5',1,'MQTTClient_persistence']]], + ['pclose_474',['pclose',['../struct_m_q_t_t_client__persistence.html#a7e50506912d2ec0e014cc25ec28fb402',1,'MQTTClient_persistence']]], + ['pcontainskey_475',['pcontainskey',['../struct_m_q_t_t_client__persistence.html#ac103711576267f791325f2b70b6dc49d',1,'MQTTClient_persistence']]], + ['persistqos0_476',['persistQoS0',['../struct_m_q_t_t_async__create_options.html#a0c3ea2641e188542c787e71e2c521a0b',1,'MQTTAsync_createOptions']]], + ['pget_477',['pget',['../struct_m_q_t_t_client__persistence.html#a49155000b82a28ac3b3cb878f3a092d4',1,'MQTTClient_persistence']]], + ['pkeys_478',['pkeys',['../struct_m_q_t_t_client__persistence.html#a407e86a809e4b0b098a8c158f53b9606',1,'MQTTClient_persistence']]], + ['popen_479',['popen',['../struct_m_q_t_t_client__persistence.html#a1bae211b32415e6b349d5ae71599f9f4',1,'MQTTClient_persistence']]], + ['pput_480',['pput',['../struct_m_q_t_t_client__persistence.html#a4114d9b9971cee18d7e4b9dd5736a608',1,'MQTTClient_persistence']]], + ['premove_481',['premove',['../struct_m_q_t_t_client__persistence.html#a53150e443ca721b8623689371c2fbdb9',1,'MQTTClient_persistence']]], + ['privatekey_482',['privateKey',['../struct_m_q_t_t_async___s_s_l_options.html#a7dd436cbb916fba200595c3519f09ec4',1,'MQTTAsync_SSLOptions']]], + ['privatekeypassword_483',['privateKeyPassword',['../struct_m_q_t_t_async___s_s_l_options.html#abb427571ba37b51f6985f1a6906ca031',1,'MQTTAsync_SSLOptions']]], + ['properties_484',['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_485',['protos',['../struct_m_q_t_t_async___s_s_l_options.html#a4f8661600fb8bacf031150f8dcd293a5',1,'MQTTAsync_SSLOptions']]], + ['protos_5flen_486',['protos_len',['../struct_m_q_t_t_async___s_s_l_options.html#a26f5d839c92f9772c2a5d05486277a42',1,'MQTTAsync_SSLOptions']]], + ['pub_487',['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.js b/docs/MQTTAsync/html/search/variables_d.js index 7c38afe4..b2d79dfe 100644 --- a/docs/MQTTAsync/html/search/variables_d.js +++ b/docs/MQTTAsync/html/search/variables_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['qos_487',['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_488',['qosList',['../struct_m_q_t_t_async__success_data.html#a82786d9ba5cae39873f378a48b36c23b',1,'MQTTAsync_successData']]] + ['qos_488',['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_489',['qosList',['../struct_m_q_t_t_async__success_data.html#a82786d9ba5cae39873f378a48b36c23b',1,'MQTTAsync_successData']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_e.js b/docs/MQTTAsync/html/search/variables_e.js index f83dd36a..7bfe9373 100644 --- a/docs/MQTTAsync/html/search/variables_e.js +++ b/docs/MQTTAsync/html/search/variables_e.js @@ -1,11 +1,11 @@ var searchData= [ - ['reasoncode_489',['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_490',['reasonCodeCount',['../struct_m_q_t_t_async__success_data5.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTAsync_successData5']]], - ['reasoncodes_491',['reasonCodes',['../struct_m_q_t_t_async__success_data5.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTAsync_successData5']]], - ['restoremessages_492',['restoreMessages',['../struct_m_q_t_t_async__create_options.html#a231b8890c3bc2ea07f7c599896f30691',1,'MQTTAsync_createOptions']]], - ['retainaspublished_493',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], - ['retained_494',['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_495',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], - ['retryinterval_496',['retryInterval',['../struct_m_q_t_t_async__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTAsync_connectOptions']]] + ['reasoncode_490',['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_491',['reasonCodeCount',['../struct_m_q_t_t_async__success_data5.html#ac97316626bd4faa6b71277c221275f4b',1,'MQTTAsync_successData5']]], + ['reasoncodes_492',['reasonCodes',['../struct_m_q_t_t_async__success_data5.html#a2199c9d905dbfa279895cf8123c10f4f',1,'MQTTAsync_successData5']]], + ['restoremessages_493',['restoreMessages',['../struct_m_q_t_t_async__create_options.html#a231b8890c3bc2ea07f7c599896f30691',1,'MQTTAsync_createOptions']]], + ['retainaspublished_494',['retainAsPublished',['../struct_m_q_t_t_subscribe__options.html#a8ba074ad218224ee4a8ca802c5e36944',1,'MQTTSubscribe_options']]], + ['retained_495',['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_496',['retainHandling',['../struct_m_q_t_t_subscribe__options.html#a11f17b62e40ecdfe107101ae164367a3',1,'MQTTSubscribe_options']]], + ['retryinterval_497',['retryInterval',['../struct_m_q_t_t_async__connect_options.html#ac73f57846c42bcaa9a47e6721a957748',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTAsync/html/search/variables_f.js b/docs/MQTTAsync/html/search/variables_f.js index 0ea9b1b5..f5fb3680 100644 --- a/docs/MQTTAsync/html/search/variables_f.js +++ b/docs/MQTTAsync/html/search/variables_f.js @@ -1,20 +1,20 @@ var searchData= [ - ['sendwhiledisconnected_497',['sendWhileDisconnected',['../struct_m_q_t_t_async__create_options.html#a078cd68d8f896ce7eac0cc83d4486a2c',1,'MQTTAsync_createOptions']]], - ['serveruri_498',['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_499',['serverURIcount',['../struct_m_q_t_t_async__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTAsync_connectOptions']]], - ['serveruris_500',['serverURIs',['../struct_m_q_t_t_async__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTAsync_connectOptions']]], - ['sessionpresent_501',['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_502',['ssl',['../struct_m_q_t_t_async__connect_options.html#a86fd59846f3ba2082fd99906c6b496a6',1,'MQTTAsync_connectOptions']]], - ['ssl_5ferror_5fcb_503',['ssl_error_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a76c7b40e2e258d2f898b53165ada2b70',1,'MQTTAsync_SSLOptions']]], - ['ssl_5ferror_5fcontext_504',['ssl_error_context',['../struct_m_q_t_t_async___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTAsync_SSLOptions']]], - ['ssl_5fpsk_5fcb_505',['ssl_psk_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a83c1245259a491ea9daf872ce04b5e46',1,'MQTTAsync_SSLOptions']]], - ['ssl_5fpsk_5fcontext_506',['ssl_psk_context',['../struct_m_q_t_t_async___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTAsync_SSLOptions']]], - ['sslversion_507',['sslVersion',['../struct_m_q_t_t_async___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTAsync_SSLOptions']]], - ['struct_5fid_508',['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_509',['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_510',['sub',['../struct_m_q_t_t_async__success_data5.html#a26c7d90bad0e00a056dff117b9111346',1,'MQTTAsync_successData5']]], - ['subscribeoptions_511',['subscribeOptions',['../struct_m_q_t_t_async__response_options.html#a16a3cd2a8c69669e9ed6e420ccd9c517',1,'MQTTAsync_responseOptions']]], - ['subscribeoptionscount_512',['subscribeOptionsCount',['../struct_m_q_t_t_async__response_options.html#a1a4b9bb2780472ec7bb65d0df1bf5d26',1,'MQTTAsync_responseOptions']]], - ['subscribeoptionslist_513',['subscribeOptionsList',['../struct_m_q_t_t_async__response_options.html#a98f71c5d03dc5ee86fd9dc0119ccb961',1,'MQTTAsync_responseOptions']]] + ['sendwhiledisconnected_498',['sendWhileDisconnected',['../struct_m_q_t_t_async__create_options.html#a078cd68d8f896ce7eac0cc83d4486a2c',1,'MQTTAsync_createOptions']]], + ['serveruri_499',['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_500',['serverURIcount',['../struct_m_q_t_t_async__connect_options.html#aa82629005937abd92e97084a428cd61f',1,'MQTTAsync_connectOptions']]], + ['serveruris_501',['serverURIs',['../struct_m_q_t_t_async__connect_options.html#aba22d81c407fb2ba590dba476240d3e9',1,'MQTTAsync_connectOptions']]], + ['sessionpresent_502',['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_503',['ssl',['../struct_m_q_t_t_async__connect_options.html#a86fd59846f3ba2082fd99906c6b496a6',1,'MQTTAsync_connectOptions']]], + ['ssl_5ferror_5fcb_504',['ssl_error_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a76c7b40e2e258d2f898b53165ada2b70',1,'MQTTAsync_SSLOptions']]], + ['ssl_5ferror_5fcontext_505',['ssl_error_context',['../struct_m_q_t_t_async___s_s_l_options.html#a189f11195f4d5a70024adffdb050885f',1,'MQTTAsync_SSLOptions']]], + ['ssl_5fpsk_5fcb_506',['ssl_psk_cb',['../struct_m_q_t_t_async___s_s_l_options.html#a83c1245259a491ea9daf872ce04b5e46',1,'MQTTAsync_SSLOptions']]], + ['ssl_5fpsk_5fcontext_507',['ssl_psk_context',['../struct_m_q_t_t_async___s_s_l_options.html#ab7f597518dd5b9db5a515081f8e0bd1f',1,'MQTTAsync_SSLOptions']]], + ['sslversion_508',['sslVersion',['../struct_m_q_t_t_async___s_s_l_options.html#a3543ea1481b68d73cdde833280bb9c45',1,'MQTTAsync_SSLOptions']]], + ['struct_5fid_509',['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_510',['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_511',['sub',['../struct_m_q_t_t_async__success_data5.html#a26c7d90bad0e00a056dff117b9111346',1,'MQTTAsync_successData5']]], + ['subscribeoptions_512',['subscribeOptions',['../struct_m_q_t_t_async__response_options.html#a16a3cd2a8c69669e9ed6e420ccd9c517',1,'MQTTAsync_responseOptions']]], + ['subscribeoptionscount_513',['subscribeOptionsCount',['../struct_m_q_t_t_async__response_options.html#a1a4b9bb2780472ec7bb65d0df1bf5d26',1,'MQTTAsync_responseOptions']]], + ['subscribeoptionslist_514',['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 4ec57b0f..9eb37649 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 @@ -393,7 +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 3698d143..367fa97e 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 @@ -186,7 +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 08542dd0..4644a2df 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 @@ -613,7 +613,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 a9b90d30..ac5e7f5e 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 @@ -234,7 +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 54da87c2..e0b0d130 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 @@ -254,7 +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 cd6de7a8..f72000b6 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 @@ -134,7 +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 cf0de52d..e71fb684 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 @@ -219,7 +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 0d65f933..940cec15 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 @@ -134,7 +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 7f44c111..b04fe573 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 @@ -247,7 +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 9017e6e7..9da585e0 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 @@ -117,7 +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 97392dba..ac601831 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 @@ -284,7 +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 8c55055f..3580903a 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 @@ -272,7 +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 86088d5d..88d55464 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 @@ -380,7 +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 67a5fecf..a8be5a0d 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 @@ -237,7 +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 d89673f1..83686d4a 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 @@ -239,7 +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 d1be887a..0e5f4529 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 @@ -117,7 +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 7d4fb160..c65f8f34 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_properties.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_properties.html @@ -151,7 +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 538dd282..772897fa 100644 --- a/docs/MQTTAsync/html/struct_m_q_t_t_property.html +++ b/docs/MQTTAsync/html/struct_m_q_t_t_property.html @@ -206,7 +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 1ce4122c..80afd2e7 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 @@ -168,7 +168,7 @@ Data Fields diff --git a/docs/MQTTAsync/html/subscribe.html b/docs/MQTTAsync/html/subscribe.html index e9251c8b..efa85613 100644 --- a/docs/MQTTAsync/html/subscribe.html +++ b/docs/MQTTAsync/html/subscribe.html @@ -250,43 +250,43 @@ $(function() {
    }
    -
    MQTTAsync_responseOptions::context
    void * context
    Definition: MQTTAsync.h:718
    +
    MQTTAsync_responseOptions::context
    void * context
    Definition: MQTTAsync.h:722
    MQTTAsync_subscribe
    int MQTTAsync_subscribe(MQTTAsync handle, const char *topic, int qos, MQTTAsync_responseOptions *response)
    -
    MQTTAsync_responseOptions_initializer
    #define MQTTAsync_responseOptions_initializer
    Definition: MQTTAsync.h:756
    -
    MQTTAsync
    void * MQTTAsync
    Definition: MQTTAsync.h:239
    +
    MQTTAsync_responseOptions_initializer
    #define MQTTAsync_responseOptions_initializer
    Definition: MQTTAsync.h:760
    +
    MQTTAsync
    void * MQTTAsync
    Definition: MQTTAsync.h:243
    MQTTAsync_setCallbacks
    int MQTTAsync_setCallbacks(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl, MQTTAsync_messageArrived *ma, MQTTAsync_deliveryComplete *dc)
    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:265
    +
    MQTTAsync_message::payloadlen
    int payloadlen
    Definition: MQTTAsync.h:269
    MQTTAsync_destroy
    void MQTTAsync_destroy(MQTTAsync *handle)
    -
    MQTTAsync_successData
    Definition: MQTTAsync.h:556
    -
    MQTTAsync_disconnectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1406
    +
    MQTTAsync_successData
    Definition: MQTTAsync.h:560
    +
    MQTTAsync_disconnectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1410
    MQTTASYNC_SUCCESS
    #define MQTTASYNC_SUCCESS
    Definition: MQTTAsync.h:113
    -
    MQTTAsync_responseOptions
    Definition: MQTTAsync.h:694
    +
    MQTTAsync_responseOptions
    Definition: MQTTAsync.h:698
    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:1441
    -
    MQTTAsync_connectOptions::keepAliveInterval
    int keepAliveInterval
    Definition: MQTTAsync.h:1193
    -
    MQTTAsync_message::payload
    void * payload
    Definition: MQTTAsync.h:267
    +
    MQTTAsync_disconnectOptions_initializer
    #define MQTTAsync_disconnectOptions_initializer
    Definition: MQTTAsync.h:1445
    +
    MQTTAsync_connectOptions::keepAliveInterval
    int keepAliveInterval
    Definition: MQTTAsync.h:1197
    +
    MQTTAsync_message::payload
    void * payload
    Definition: MQTTAsync.h:271
    MQTTAsync_connect
    int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
    -
    MQTTAsync_message
    Definition: MQTTAsync.h:257
    -
    MQTTAsync_responseOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:712
    +
    MQTTAsync_message
    Definition: MQTTAsync.h:261
    +
    MQTTAsync_responseOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:716
    MQTTAsync_free
    void MQTTAsync_free(void *ptr)
    -
    MQTTAsync_connectOptions
    Definition: MQTTAsync.h:1168
    -
    MQTTAsync_failureData
    Definition: MQTTAsync.h:521
    -
    MQTTAsync_responseOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:706
    -
    MQTTAsync_failureData::code
    int code
    Definition: MQTTAsync.h:526
    -
    MQTTAsync_disconnectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1412
    -
    MQTTAsync_disconnectOptions
    Definition: MQTTAsync.h:1390
    -
    MQTTAsync_connectOptions_initializer
    #define MQTTAsync_connectOptions_initializer
    Definition: MQTTAsync.h:1354
    +
    MQTTAsync_connectOptions
    Definition: MQTTAsync.h:1172
    +
    MQTTAsync_failureData
    Definition: MQTTAsync.h:525
    +
    MQTTAsync_responseOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:710
    +
    MQTTAsync_failureData::code
    int code
    Definition: MQTTAsync.h:530
    +
    MQTTAsync_disconnectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1416
    +
    MQTTAsync_disconnectOptions
    Definition: MQTTAsync.h:1394
    +
    MQTTAsync_connectOptions_initializer
    #define MQTTAsync_connectOptions_initializer
    Definition: MQTTAsync.h:1358
    MQTTAsync.h
    -
    MQTTAsync_connectOptions::cleansession
    int cleansession
    Definition: MQTTAsync.h:1215
    +
    MQTTAsync_connectOptions::cleansession
    int cleansession
    Definition: MQTTAsync.h:1219
    MQTTAsync_freeMessage
    void MQTTAsync_freeMessage(MQTTAsync_message **msg)
    -
    MQTTAsync_connectOptions::context
    void * context
    Definition: MQTTAsync.h:1272
    -
    MQTTAsync_connectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1266
    -
    MQTTAsync_connectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1260
    +
    MQTTAsync_connectOptions::context
    void * context
    Definition: MQTTAsync.h:1276
    +
    MQTTAsync_connectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    Definition: MQTTAsync.h:1270
    +
    MQTTAsync_connectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    Definition: MQTTAsync.h:1264
    diff --git a/docs/MQTTAsync/html/tabs.css b/docs/MQTTAsync/html/tabs.css index 85a0cd5b..7d45d36c 100644 --- a/docs/MQTTAsync/html/tabs.css +++ b/docs/MQTTAsync/html/tabs.css @@ -1 +1 @@ -.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0px/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0px 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0px 1px 1px rgba(255,255,255,0.9);color:#283A5D;outline:none}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a.current{color:#D23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media (min-width: 768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283A5D transparent transparent transparent;background:transparent;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0px 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;border-radius:0 !important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a:hover span.sub-arrow{border-color:#fff transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;border-radius:5px !important;box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0 !important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent #fff}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #D23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#D23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} diff --git a/docs/MQTTAsync/html/tracing.html b/docs/MQTTAsync/html/tracing.html index d0034efc..c9c8560e 100644 --- a/docs/MQTTAsync/html/tracing.html +++ b/docs/MQTTAsync/html/tracing.html @@ -139,7 +139,7 @@ $(function() { diff --git a/docs/MQTTAsync/html/wildcard.html b/docs/MQTTAsync/html/wildcard.html index 7f82295f..3b87fb4a 100644 --- a/docs/MQTTAsync/html/wildcard.html +++ b/docs/MQTTAsync/html/wildcard.html @@ -81,7 +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 2d6b6825..578b6e3b 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync.h" 3 "Mon May 24 2021" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME @@ -121,6 +121,9 @@ MQTTAsync.h .RI "#define \fBMQTTASYNC_0_LEN_WILL_TOPIC\fP \-17" .br .ti -1c +.RI "#define \fBMQTTASYNC_COMMAND_IGNORED\fP \-18" +.br +.ti -1c .RI "#define \fBMQTTVERSION_DEFAULT\fP 0" .br .ti -1c @@ -145,10 +148,10 @@ MQTTAsync.h .RI "#define \fBMQTTAsync_connectData_initializer\fP {{'M', 'Q', 'C', 'D'}, 0, NULL, {0, NULL}}" .br .ti -1c -.RI "#define \fBMQTTAsync_failureData5_initializer\fP {{'M', 'Q', 'F', 'D'}, 0, 0, \fBMQTTREASONCODE_SUCCESS\fP, \fBMQTTProperties_initializer\fP, 0, NULL}" +.RI "#define \fBMQTTAsync_failureData5_initializer\fP {{'M', 'Q', 'F', 'D'}, 0, 0, \fBMQTTREASONCODE_SUCCESS\fP, \fBMQTTProperties_initializer\fP, 0, NULL, 0}" .br .ti -1c -.RI "#define \fBMQTTAsync_successData5_initializer\fP {{'M', 'Q', 'S', 'D'}, 0, 0, \fBMQTTREASONCODE_SUCCESS\fP, \fBMQTTProperties_initializer\fP}" +.RI "#define \fBMQTTAsync_successData5_initializer\fP {{'M', 'Q', 'S', 'D'}, 0, 0, \fBMQTTREASONCODE_SUCCESS\fP, \fBMQTTProperties_initializer\fP, {\&.sub={0,0}}}" .br .ti -1c .RI "#define \fBMQTTAsync_responseOptions_initializer\fP { {'M', 'Q', 'T', 'R'}, 1, NULL, NULL, 0, 0, NULL, NULL, \fBMQTTProperties_initializer\fP, \fBMQTTSubscribe_options_initializer\fP, 0, NULL}" @@ -399,6 +402,8 @@ Return code: don't use options for another version of MQTT Return code: call not applicable to the client's version of MQTT .SS "#define MQTTASYNC_0_LEN_WILL_TOPIC \-17" Return code: 0 length will topic +.SS "#define MQTTASYNC_COMMAND_IGNORED \-18" + .SS "#define MQTTVERSION_DEFAULT 0" Default MQTT version to connect with\&. Use 3\&.1\&.1 then fall back to 3\&.1 .SS "#define MQTTVERSION_3_1 3" @@ -415,9 +420,9 @@ Bad return code from subscribe, as defined in the 3\&.1\&.1 specification .SS "#define MQTTAsync_connectData_initializer {{'M', 'Q', 'C', 'D'}, 0, NULL, {0, NULL}}" -.SS "#define MQTTAsync_failureData5_initializer {{'M', 'Q', 'F', 'D'}, 0, 0, \fBMQTTREASONCODE_SUCCESS\fP, \fBMQTTProperties_initializer\fP, 0, NULL}" +.SS "#define MQTTAsync_failureData5_initializer {{'M', 'Q', 'F', 'D'}, 0, 0, \fBMQTTREASONCODE_SUCCESS\fP, \fBMQTTProperties_initializer\fP, 0, NULL, 0}" -.SS "#define MQTTAsync_successData5_initializer {{'M', 'Q', 'S', 'D'}, 0, 0, \fBMQTTREASONCODE_SUCCESS\fP, \fBMQTTProperties_initializer\fP}" +.SS "#define MQTTAsync_successData5_initializer {{'M', 'Q', 'S', 'D'}, 0, 0, \fBMQTTREASONCODE_SUCCESS\fP, \fBMQTTProperties_initializer\fP, {\&.sub={0,0}}}" .SS "#define MQTTAsync_responseOptions_initializer { {'M', 'Q', 'T', 'R'}, 1, NULL, NULL, 0, 0, NULL, NULL, \fBMQTTProperties_initializer\fP, \fBMQTTSubscribe_options_initializer\fP, 0, NULL}" diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_SSLOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_SSLOptions.3 index 69c4d892..30765900 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_SSLOptions" 3 "Mon May 24 2021" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_connectData.3 b/docs/MQTTAsync/man/man3/MQTTAsync_connectData.3 index d2a3b4ed..67dc2ff2 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_connectData" 3 "Mon May 24 2021" "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 6abbdeb3..d7a5c989 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_connectOptions" 3 "Mon May 24 2021" "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 7e0c2cbb..635ee9a8 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_createOptions" 3 "Mon May 24 2021" "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 ff8a6488..661dc81c 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_disconnectOptions" 3 "Mon May 24 2021" "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 a58c564c..2fbdbdd9 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_failureData" 3 "Mon May 24 2021" "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 58998043..f0940bf9 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_failureData5" 3 "Mon May 24 2021" "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 e22b1a15..392ae7e9 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_init_options" 3 "Mon May 24 2021" "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 4cb29370..4ab5abe0 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_message" 3 "Mon May 24 2021" "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 7b07099d..98e0d879 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_nameValue" 3 "Mon May 24 2021" "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 a6ff083e..6f6507f1 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_responseOptions" 3 "Mon May 24 2021" "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 cf3bd627..a62c0f8d 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_successData" 3 "Mon May 24 2021" "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 b7daabb1..7f976da3 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_successData5" 3 "Mon May 24 2021" "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 029e2916..e9a047d6 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTAsync_willOptions" 3 "Mon May 24 2021" "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 451a1a61..18dd01ac 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClientPersistence.h" 3 "Mon May 24 2021" "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 d48d25f7..d9c9dc4d 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_persistence" 3 "Mon May 24 2021" "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 c300ebc4..25dd9dbe 100644 --- a/docs/MQTTAsync/man/man3/MQTTLenString.3 +++ b/docs/MQTTAsync/man/man3/MQTTLenString.3 @@ -1,4 +1,4 @@ -.TH "MQTTLenString" 3 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTLenString" 3 "Mon May 24 2021" "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 e8ba42ed..d042d8e2 100644 --- a/docs/MQTTAsync/man/man3/MQTTProperties.3 +++ b/docs/MQTTAsync/man/man3/MQTTProperties.3 @@ -1,4 +1,4 @@ -.TH "MQTTProperties" 3 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperties" 3 "Mon May 24 2021" "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 6b1764d8..9263dec9 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperties.h" 3 "Mon May 24 2021" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTAsync/man/man3/MQTTProperty.3 b/docs/MQTTAsync/man/man3/MQTTProperty.3 index a9ea8611..2073cf6e 100644 --- a/docs/MQTTAsync/man/man3/MQTTProperty.3 +++ b/docs/MQTTAsync/man/man3/MQTTProperty.3 @@ -1,4 +1,4 @@ -.TH "MQTTProperty" 3 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperty" 3 "Mon May 24 2021" "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 f3c5410e..e37c3db0 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTReasonCodes.h" 3 "Mon May 24 2021" "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 290e3dd3..b7575cce 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTSubscribeOpts.h" 3 "Mon May 24 2021" "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 cfaff59a..7a2dff62 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTSubscribe_options" 3 "Mon May 24 2021" "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 3ab17647..4343b0d9 100644 --- a/docs/MQTTAsync/man/man3/async.3 +++ b/docs/MQTTAsync/man/man3/async.3 @@ -1,4 +1,4 @@ -.TH "async" 3 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "async" 3 "Mon May 24 2021" "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 721114ee..24cd249b 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "auto_reconnect" 3 "Mon May 24 2021" "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 26c6c766..cb40725c 100644 --- a/docs/MQTTAsync/man/man3/callbacks.3 +++ b/docs/MQTTAsync/man/man3/callbacks.3 @@ -1,4 +1,4 @@ -.TH "callbacks" 3 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "callbacks" 3 "Mon May 24 2021" "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 e2f8d21f..9b51a380 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 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "offline_publish" 3 "Mon May 24 2021" "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 9ff600b6..0ef795d9 100644 --- a/docs/MQTTAsync/man/man3/publish.3 +++ b/docs/MQTTAsync/man/man3/publish.3 @@ -1,4 +1,4 @@ -.TH "publish" 3 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "publish" 3 "Mon May 24 2021" "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 6dcd6ec5..6d2f6fa8 100644 --- a/docs/MQTTAsync/man/man3/qos.3 +++ b/docs/MQTTAsync/man/man3/qos.3 @@ -1,4 +1,4 @@ -.TH "qos" 3 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "qos" 3 "Mon May 24 2021" "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 786e754f..c0d9c8f5 100644 --- a/docs/MQTTAsync/man/man3/subscribe.3 +++ b/docs/MQTTAsync/man/man3/subscribe.3 @@ -1,4 +1,4 @@ -.TH "subscribe" 3 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "subscribe" 3 "Mon May 24 2021" "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 17f49cb3..42bb2822 100644 --- a/docs/MQTTAsync/man/man3/tracing.3 +++ b/docs/MQTTAsync/man/man3/tracing.3 @@ -1,4 +1,4 @@ -.TH "tracing" 3 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "tracing" 3 "Mon May 24 2021" "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 843b5362..4efa31d8 100644 --- a/docs/MQTTAsync/man/man3/wildcard.3 +++ b/docs/MQTTAsync/man/man3/wildcard.3 @@ -1,4 +1,4 @@ -.TH "wildcard" 3 "Sat Dec 26 2020" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*- +.TH "wildcard" 3 "Mon May 24 2021" "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 d17ad527..3d017a6c 100644 --- a/docs/MQTTClient/html/_m_q_t_t_client_8h.html +++ b/docs/MQTTClient/html/_m_q_t_t_client_8h.html @@ -722,7 +722,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}
    +
    0, NULL, MQTTVERSION_DEFAULT, {NULL, 0, 0}, {0, NULL}, -1, 0, NULL, NULL, NULL}
    @@ -2500,7 +2500,7 @@ Functions
    MQTTVERSION_5
    #define MQTTVERSION_5
    Definition: MQTTClient.h:216
    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 86b19ac2..c0684769 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 @@ -67,7 +67,7 @@ $(function() {
    Go to the documentation of this file.
    1 /*******************************************************************************
    -
    2  * Copyright (c) 2009, 2020 IBM Corp. and others
    +
    2  * Copyright (c) 2009, 2021 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
    @@ -325,7 +325,7 @@ $(function() {
    962 
    963 #define MQTTClient_connectOptions_initializer { {'M', 'Q', 'T', 'C'}, 8, 60, 1, 1, NULL, NULL, NULL, 30, 0, NULL,\
    -
    964 0, NULL, MQTTVERSION_DEFAULT, {NULL, 0, 0}, {0, NULL}, -1, 0, NULL, NULL}
    +
    964 0, NULL, MQTTVERSION_DEFAULT, {NULL, 0, 0}, {0, NULL}, -1, 0, NULL, NULL, NULL}
    965 
    966 #define MQTTClient_connectOptions_initializer5 { {'M', 'Q', 'T', 'C'}, 8, 60, 0, 1, NULL, NULL, NULL, 30, 0, NULL,\
    967 0, NULL, MQTTVERSION_5, {NULL, 0, 0}, {0, NULL}, -1, 1, NULL, NULL, NULL}
    @@ -574,7 +574,7 @@ $(function() {
    int MQTTClient_create(MQTTClient *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
    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 0af13fa6..cd031396 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 @@ -443,7 +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 c4b7221b..8d313446 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 @@ -155,7 +155,7 @@ $(function() {
    int(* Persistence_close)(void *handle)
    Close the persistent store referred to by the handle.
    Definition: MQTTClientPersistence.h:123
    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 a873c490..1f3021d5 100644 --- a/docs/MQTTClient/html/_m_q_t_t_properties_8h.html +++ b/docs/MQTTClient/html/_m_q_t_t_properties_8h.html @@ -794,7 +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 82172b2e..ee158f28 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 @@ -257,7 +257,7 @@ $(function() {
    MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE
    @ MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE
    Definition: MQTTProperties.h:49
    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 0061ebd6..f77d9e33 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 @@ -233,7 +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 9f3992ed..93dd2fdd 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 @@ -188,7 +188,7 @@ $(function() {
    MQTTREASONCODE_QOS_NOT_SUPPORTED
    @ MQTTREASONCODE_QOS_NOT_SUPPORTED
    Definition: MQTTReasonCodes.h:75
    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 8d6073a9..da1171c6 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 @@ -122,7 +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 5a12a71d..43f8e899 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 @@ -107,7 +107,7 @@ $(function() {
    MQTTSubscribe_options::struct_id
    char struct_id[4]
    Definition: MQTTSubscribeOpts.h:38
    diff --git a/docs/MQTTClient/html/annotated.html b/docs/MQTTClient/html/annotated.html index 93a9cf39..d673e7c8 100644 --- a/docs/MQTTClient/html/annotated.html +++ b/docs/MQTTClient/html/annotated.html @@ -86,7 +86,7 @@ $(function() { diff --git a/docs/MQTTClient/html/async.html b/docs/MQTTClient/html/async.html index db8d6941..acc31264 100644 --- a/docs/MQTTClient/html/async.html +++ b/docs/MQTTClient/html/async.html @@ -73,7 +73,7 @@ $(function() { diff --git a/docs/MQTTClient/html/callbacks.html b/docs/MQTTClient/html/callbacks.html index 0b70e1ea..0f2ef9f4 100644 --- a/docs/MQTTClient/html/callbacks.html +++ b/docs/MQTTClient/html/callbacks.html @@ -74,7 +74,7 @@ $(function() { diff --git a/docs/MQTTClient/html/classes.html b/docs/MQTTClient/html/classes.html index 706599d6..ef4af001 100644 --- a/docs/MQTTClient/html/classes.html +++ b/docs/MQTTClient/html/classes.html @@ -92,7 +92,7 @@ $(function() { diff --git a/docs/MQTTClient/html/files.html b/docs/MQTTClient/html/files.html index e94887f5..e43346df 100644 --- a/docs/MQTTClient/html/files.html +++ b/docs/MQTTClient/html/files.html @@ -78,7 +78,7 @@ $(function() { diff --git a/docs/MQTTClient/html/functions.html b/docs/MQTTClient/html/functions.html index 455d623d..82a8bfb7 100644 --- a/docs/MQTTClient/html/functions.html +++ b/docs/MQTTClient/html/functions.html @@ -395,7 +395,7 @@ $(function() { diff --git a/docs/MQTTClient/html/functions_vars.html b/docs/MQTTClient/html/functions_vars.html index e621dbab..e13c880e 100644 --- a/docs/MQTTClient/html/functions_vars.html +++ b/docs/MQTTClient/html/functions_vars.html @@ -395,7 +395,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals.html b/docs/MQTTClient/html/globals.html index f56c6817..926e7b4f 100644 --- a/docs/MQTTClient/html/globals.html +++ b/docs/MQTTClient/html/globals.html @@ -657,7 +657,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_defs.html b/docs/MQTTClient/html/globals_defs.html index 922d3cb8..4bf12f2b 100644 --- a/docs/MQTTClient/html/globals_defs.html +++ b/docs/MQTTClient/html/globals_defs.html @@ -192,7 +192,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_enum.html b/docs/MQTTClient/html/globals_enum.html index 3c28d71d..6427beba 100644 --- a/docs/MQTTClient/html/globals_enum.html +++ b/docs/MQTTClient/html/globals_enum.html @@ -79,7 +79,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_eval.html b/docs/MQTTClient/html/globals_eval.html index 05a121b1..a2268fbd 100644 --- a/docs/MQTTClient/html/globals_eval.html +++ b/docs/MQTTClient/html/globals_eval.html @@ -327,7 +327,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_func.html b/docs/MQTTClient/html/globals_func.html index b22a439b..82e22807 100644 --- a/docs/MQTTClient/html/globals_func.html +++ b/docs/MQTTClient/html/globals_func.html @@ -222,7 +222,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_p.html b/docs/MQTTClient/html/globals_p.html index b90f4e3a..7def6813 100644 --- a/docs/MQTTClient/html/globals_p.html +++ b/docs/MQTTClient/html/globals_p.html @@ -93,7 +93,7 @@ $(function() { diff --git a/docs/MQTTClient/html/globals_type.html b/docs/MQTTClient/html/globals_type.html index a3ba63bb..64121a6d 100644 --- a/docs/MQTTClient/html/globals_type.html +++ b/docs/MQTTClient/html/globals_type.html @@ -133,7 +133,7 @@ $(function() { diff --git a/docs/MQTTClient/html/index.html b/docs/MQTTClient/html/index.html index fe8b68fd..8074231f 100644 --- a/docs/MQTTClient/html/index.html +++ b/docs/MQTTClient/html/index.html @@ -66,7 +66,7 @@ $(function() {
    MQTT Client library for C
    -

    An MQTT client library in C.© Copyright IBM Corp. 2009, 2020 and others

    +

    An MQTT client library in C.© Copyright 2009, 2021 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,7 +118,7 @@ Free any memory being used by the client
    diff --git a/docs/MQTTClient/html/pages.html b/docs/MQTTClient/html/pages.html index 1219a450..5141e7fe 100644 --- a/docs/MQTTClient/html/pages.html +++ b/docs/MQTTClient/html/pages.html @@ -81,7 +81,7 @@ $(function() {
    diff --git a/docs/MQTTClient/html/pubasync.html b/docs/MQTTClient/html/pubasync.html index 1b60bcd1..682c8eb8 100644 --- a/docs/MQTTClient/html/pubasync.html +++ b/docs/MQTTClient/html/pubasync.html @@ -204,7 +204,7 @@ $(function() {
    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 acbcdf57..345dc318 100644 --- a/docs/MQTTClient/html/pubsync.html +++ b/docs/MQTTClient/html/pubsync.html @@ -147,7 +147,7 @@ $(function() {
    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 15bdabfa..e93a0ccd 100644 --- a/docs/MQTTClient/html/qos.html +++ b/docs/MQTTClient/html/qos.html @@ -78,7 +78,7 @@ $(function() {
    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 2c82ea60..83b42e6d 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 @@ -393,7 +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 f4edf288..c62fabda 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 @@ -514,7 +514,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 7ac4de58..40cbdcd3 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 @@ -135,7 +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 886b8a7f..f60312db 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 @@ -134,7 +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 db2e17cc..abaa07fd 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 @@ -247,7 +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 e75596b4..842f98aa 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 @@ -115,7 +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 ef61927c..00fd6f02 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 @@ -239,7 +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 f973a486..7930b614 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 @@ -237,7 +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 ba43d381..d14ca325 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 @@ -117,7 +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 0fb2e760..2f1b888d 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_properties.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_properties.html @@ -151,7 +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 e5a0d697..3cd8298a 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_property.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_property.html @@ -206,7 +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 12948792..c92d46ae 100644 --- a/docs/MQTTClient/html/struct_m_q_t_t_response.html +++ b/docs/MQTTClient/html/struct_m_q_t_t_response.html @@ -163,7 +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 e370bcd7..dd91c8b9 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 @@ -168,7 +168,7 @@ Data Fields diff --git a/docs/MQTTClient/html/subasync.html b/docs/MQTTClient/html/subasync.html index 20ff1e9b..078f44a1 100644 --- a/docs/MQTTClient/html/subasync.html +++ b/docs/MQTTClient/html/subasync.html @@ -189,7 +189,7 @@ $(function() {
    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/tabs.css b/docs/MQTTClient/html/tabs.css index 85a0cd5b..7d45d36c 100644 --- a/docs/MQTTClient/html/tabs.css +++ b/docs/MQTTClient/html/tabs.css @@ -1 +1 @@ -.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0px/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0px 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0px 1px 1px rgba(255,255,255,0.9);color:#283A5D;outline:none}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a.current{color:#D23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media (min-width: 768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283A5D transparent transparent transparent;background:transparent;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0px 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;border-radius:0 !important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a:hover span.sub-arrow{border-color:#fff transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;border-radius:5px !important;box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0 !important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent #fff}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #D23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#D23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} diff --git a/docs/MQTTClient/html/tracing.html b/docs/MQTTClient/html/tracing.html index eeb2a9ce..848da5bc 100644 --- a/docs/MQTTClient/html/tracing.html +++ b/docs/MQTTClient/html/tracing.html @@ -127,7 +127,7 @@ $(function() {
    MQTTClient_connect
    int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
    diff --git a/docs/MQTTClient/html/wildcard.html b/docs/MQTTClient/html/wildcard.html index 3d117401..888a1187 100644 --- a/docs/MQTTClient/html/wildcard.html +++ b/docs/MQTTClient/html/wildcard.html @@ -81,7 +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 ff187157..5ae12b6c 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient.h" 3 "Mon May 24 2021" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME @@ -369,7 +369,7 @@ Bad return code from subscribe, as defined in the 3\&.1\&.1 specification .PP .nf { {'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} +0, NULL, MQTTVERSION_DEFAULT, {NULL, 0, 0}, {0, NULL}, -1, 0, NULL, NULL, NULL} .fi .SS "#define MQTTClient_connectOptions_initializer5" \fBValue:\fP diff --git a/docs/MQTTClient/man/man3/MQTTClientPersistence.h.3 b/docs/MQTTClient/man/man3/MQTTClientPersistence.h.3 index 1183d66d..fc4638a3 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClientPersistence.h" 3 "Mon May 24 2021" "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 f3b9e3d9..4ee10174 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_SSLOptions" 3 "Mon May 24 2021" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTClient_connectOptions.3 b/docs/MQTTClient/man/man3/MQTTClient_connectOptions.3 index 673c3816..35699337 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_connectOptions" 3 "Mon May 24 2021" "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 8ef6a0bb..2fd497a8 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_createOptions" 3 "Mon May 24 2021" "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 499f1c3a..35d92837 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_init_options" 3 "Mon May 24 2021" "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 761c84a0..650c679c 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_message" 3 "Mon May 24 2021" "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 6ab49df6..1e2c2d02 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_nameValue" 3 "Mon May 24 2021" "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 138661ba..c30cfe88 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_persistence" 3 "Mon May 24 2021" "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 82172569..46103ea5 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTClient_willOptions" 3 "Mon May 24 2021" "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 f8bdb983..f16adda7 100644 --- a/docs/MQTTClient/man/man3/MQTTLenString.3 +++ b/docs/MQTTClient/man/man3/MQTTLenString.3 @@ -1,4 +1,4 @@ -.TH "MQTTLenString" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTLenString" 3 "Mon May 24 2021" "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 3959b33b..11e72aaa 100644 --- a/docs/MQTTClient/man/man3/MQTTProperties.3 +++ b/docs/MQTTClient/man/man3/MQTTProperties.3 @@ -1,4 +1,4 @@ -.TH "MQTTProperties" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperties" 3 "Mon May 24 2021" "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 eceea3f2..93392207 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperties.h" 3 "Mon May 24 2021" "Paho MQTT C Client Library" \" -*- nroff -*- .ad l .nh .SH NAME diff --git a/docs/MQTTClient/man/man3/MQTTProperty.3 b/docs/MQTTClient/man/man3/MQTTProperty.3 index 18db2091..8237444f 100644 --- a/docs/MQTTClient/man/man3/MQTTProperty.3 +++ b/docs/MQTTClient/man/man3/MQTTProperty.3 @@ -1,4 +1,4 @@ -.TH "MQTTProperty" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTProperty" 3 "Mon May 24 2021" "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 a358cc06..2f1f8517 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTReasonCodes.h" 3 "Mon May 24 2021" "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 85adf7e7..65f50d95 100644 --- a/docs/MQTTClient/man/man3/MQTTResponse.3 +++ b/docs/MQTTClient/man/man3/MQTTResponse.3 @@ -1,4 +1,4 @@ -.TH "MQTTResponse" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTResponse" 3 "Mon May 24 2021" "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 77fbea89..c0f9362f 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTSubscribeOpts.h" 3 "Mon May 24 2021" "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 b33ab6fe..8dc1b1ef 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 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "MQTTSubscribe_options" 3 "Mon May 24 2021" "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 8369c681..67240fcd 100644 --- a/docs/MQTTClient/man/man3/async.3 +++ b/docs/MQTTClient/man/man3/async.3 @@ -1,4 +1,4 @@ -.TH "async" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "async" 3 "Mon May 24 2021" "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 bdeafad2..ec28c0b3 100644 --- a/docs/MQTTClient/man/man3/callbacks.3 +++ b/docs/MQTTClient/man/man3/callbacks.3 @@ -1,4 +1,4 @@ -.TH "callbacks" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "callbacks" 3 "Mon May 24 2021" "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 3e55baf7..ec1dedc8 100644 --- a/docs/MQTTClient/man/man3/pubasync.3 +++ b/docs/MQTTClient/man/man3/pubasync.3 @@ -1,4 +1,4 @@ -.TH "pubasync" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "pubasync" 3 "Mon May 24 2021" "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 92f0dac7..44c64865 100644 --- a/docs/MQTTClient/man/man3/pubsync.3 +++ b/docs/MQTTClient/man/man3/pubsync.3 @@ -1,4 +1,4 @@ -.TH "pubsync" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "pubsync" 3 "Mon May 24 2021" "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 8e2ca08f..8166dcfa 100644 --- a/docs/MQTTClient/man/man3/qos.3 +++ b/docs/MQTTClient/man/man3/qos.3 @@ -1,4 +1,4 @@ -.TH "qos" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "qos" 3 "Mon May 24 2021" "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 88755062..b8778816 100644 --- a/docs/MQTTClient/man/man3/subasync.3 +++ b/docs/MQTTClient/man/man3/subasync.3 @@ -1,4 +1,4 @@ -.TH "subasync" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "subasync" 3 "Mon May 24 2021" "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 5fd83d79..fe2874e6 100644 --- a/docs/MQTTClient/man/man3/tracing.3 +++ b/docs/MQTTClient/man/man3/tracing.3 @@ -1,4 +1,4 @@ -.TH "tracing" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "tracing" 3 "Mon May 24 2021" "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 29c18d2e..90bb81f7 100644 --- a/docs/MQTTClient/man/man3/wildcard.3 +++ b/docs/MQTTClient/man/man3/wildcard.3 @@ -1,4 +1,4 @@ -.TH "wildcard" 3 "Sat Dec 26 2020" "Paho MQTT C Client Library" \" -*- nroff -*- +.TH "wildcard" 3 "Mon May 24 2021" "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 30255c25..538d2a31 100644 --- a/docs/MQTTClient_internal/html/Clients_8c.html +++ b/docs/MQTTClient_internal/html/Clients_8c.html @@ -79,9 +79,9 @@ Include dependency graph for Clients.c:
    - - - + + +
    @@ -183,45 +183,45 @@ Functions
    MQTTClient_disconnect_internal
    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:1905
    socket_queue::datalen
    size_t datalen
    current length of data in buf
    Definition: SocketBuffer.h:44
    Connect::all
    unsigned char all
    all connect flags
    Definition: MQTTPacket.h:94
    -
    MQTTProtocol_freeClient
    void MQTTProtocol_freeClient(Clients *client)
    Free a client structure.
    Definition: MQTTProtocolClient.c:815
    +
    MQTTProtocol_freeClient
    void MQTTProtocol_freeClient(Clients *client)
    Free a client structure.
    Definition: MQTTProtocolClient.c:831
    MQTTClient_connectOptions::sessionPresent
    int sessionPresent
    if the MQTT version is 3.1.1, the value of sessionPresent returned in the connack
    Definition: MQTTClient.h:931
    -
    MQTTAsync_nameValue
    Utility structure where name/value pairs are needed.
    Definition: MQTTAsync.h:1157
    +
    MQTTAsync_nameValue
    Utility structure where name/value pairs are needed.
    Definition: MQTTAsync.h:1161
    MQTTLenString::data
    char * data
    pointer to the string data
    Definition: MQTTProperties.h:87
    MQTTProperties::length
    int length
    mbi: byte length of all properties
    Definition: MQTTProperties.h:116
    NodeStruct
    Structure to hold all data for one list element.
    Definition: Tree.h:63
    ListDetachHead
    void * ListDetachHead(List *aList)
    Removes and frees an the first item in a list.
    Definition: LinkedList.c:268
    Persistence_clear
    int(* Persistence_clear)(void *handle)
    Clears the persistence store, so that it no longer contains any persisted data.
    Definition: MQTTClientPersistence.h:197
    MQTTProtocol_subscribe
    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:374
    -
    MQTTAsync_willOptions
    MQTTAsync_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client.
    Definition: MQTTAsync.h:995
    -
    trace_destination_backup_name
    static char * trace_destination_backup_name
    the name of the backup trace file
    Definition: Log.c:101
    +
    MQTTAsync_willOptions
    MQTTAsync_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client.
    Definition: MQTTAsync.h:999
    +
    trace_destination_backup_name
    static char * trace_destination_backup_name
    the name of the backup trace file
    Definition: Log.c:105
    Socket_setnonblocking
    int Socket_setnonblocking(int sock)
    Set a socket non-blocking, OS independently.
    Definition: Socket.c:75
    ListElementStruct::prev
    struct ListElementStruct * prev
    pointer to previous list element
    Definition: LinkedList.h:74
    MQTTClient_global_init
    void MQTTClient_global_init(MQTTClient_init_options *inits)
    Global init of mqtt library.
    Definition: MQTTClient.c:89
    MQTTClient_SSLOptions
    MQTTClient_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL li...
    Definition: MQTTClient.h:659
    List::size
    size_t size
    heap storage used
    Definition: LinkedList.h:73
    -
    Clients::httpProxy
    char * httpProxy
    HTTP proxy for websockets.
    Definition: Clients.h:148
    -
    MQTTAsync_SSLOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:1046
    -
    MQTTAsync_connectOptions::username
    const char * username
    MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
    Definition: MQTTAsync.h:1231
    -
    Thread_wait_sem
    int Thread_wait_sem(sem_type sem, int timeout)
    Wait for a semaphore to be posted, or timeout.
    Definition: Thread.c:230
    +
    Clients::httpProxy
    char * httpProxy
    HTTP proxy for websockets.
    Definition: Clients.h:150
    +
    MQTTAsync_SSLOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:1050
    +
    MQTTAsync_connectOptions::username
    const char * username
    MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
    Definition: MQTTAsync.h:1235
    +
    Thread_wait_sem
    int Thread_wait_sem(sem_type sem, int timeout)
    Wait for a semaphore to be posted, or timeout.
    Definition: Thread.c:223
    Connack::all
    unsigned char all
    all connack flags
    Definition: MQTTPacket.h:138
    ListAppendNoMalloc
    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
    Ack::header
    Header header
    MQTT header byte.
    Definition: MQTTPacket.h:216
    pstput
    int pstput(void *handle, char *key, int bufcount, char *buffers[], int buflens[])
    Write wire message to the client persistence directory.
    Definition: MQTTPersistenceDefault.c:195
    MQTTPacket_send_connect
    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
    -
    Clients::inboundMsgs
    List * inboundMsgs
    inbound in flight messages
    Definition: Clients.h:135
    -
    Clients::maxInflightMessages
    int maxInflightMessages
    the max number of inflight outbound messages we allow
    Definition: Clients.h:133
    +
    Clients::inboundMsgs
    List * inboundMsgs
    inbound in flight messages
    Definition: Clients.h:137
    +
    Clients::maxInflightMessages
    int maxInflightMessages
    the max number of inflight outbound messages we allow
    Definition: Clients.h:135
    Unsuback::header
    Header header
    MQTT header byte.
    Definition: MQTTPacket.h:186
    -
    MQTTAsync_disconnectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    A pointer to a callback function to be called if the disconnect successfully completes.
    Definition: MQTTAsync.h:1406
    +
    MQTTAsync_disconnectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    A pointer to a callback function to be called if the disconnect successfully completes.
    Definition: MQTTAsync.h:1410
    MQTTPersistence_afterRead
    int MQTTPersistence_afterRead(void *context, char **buffer, int *buflen)
    A callback which is invoked just after a read from persistence.
    Definition: MQTTClientPersistence.h:275
    -
    MQTTAsync_SSLOptions::verify
    int verify
    Whether to carry out post-connect checks, including that a certificate matches the given host name.
    Definition: MQTTAsync.h:1097
    +
    MQTTAsync_SSLOptions::verify
    int verify
    Whether to carry out post-connect checks, including that a certificate matches the given host name.
    Definition: MQTTAsync.h:1101
    ListRemove
    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
    -
    MQTTAsync_willOptions::message
    const char * message
    The LWT payload.
    Definition: MQTTAsync.h:1006
    +
    MQTTAsync_willOptions::message
    const char * message
    The LWT payload.
    Definition: MQTTAsync.h:1010
    MQTTClient_connectOptions::serverURIcount
    int serverURIcount
    The number of entries in the optional serverURIs array.
    Definition: MQTTClient.h:901
    Connect::will
    bool will
    will flag
    Definition: MQTTPacket.h:111
    MQTTProtocol_handleSubacks
    int MQTTProtocol_handleSubacks(void *pack, int sock)
    Process an incoming suback packet for a socket.
    Definition: MQTTProtocolOut.c:392
    Socket_abortWrite
    int Socket_abortWrite(int socket)
    Continue an outstanding write for a particular socket.
    Definition: Socket.c:956
    Suback
    Data for a suback packet.
    Definition: MQTTPacket.h:171
    -
    MQTTAsync_connectOptions::onSuccess5
    MQTTAsync_onSuccess5 * onSuccess5
    A pointer to a callback function to be called if the connect successfully completes.
    Definition: MQTTAsync.h:1332
    +
    MQTTAsync_connectOptions::onSuccess5
    MQTTAsync_onSuccess5 * onSuccess5
    A pointer to a callback function to be called if the connect successfully completes.
    Definition: MQTTAsync.h:1336
    heap_info::max_size
    size_t max_size
    max size the heap has reached in bytes
    Definition: Heap.h:65
    Sockets::cur_clientsds
    ListElement * cur_clientsds
    current client socket descriptor (iterator)
    Definition: Socket.h:115
    TreeRemoveNodeIndex
    void * TreeRemoveNodeIndex(Tree *aTree, Node *curnode, int index)
    Remove an item from a tree.
    Definition: Tree.c:420
    @@ -234,17 +234,18 @@ Functions
    MQTTClient_message::qos
    int qos
    The quality of service (QoS) assigned to the message.
    Definition: MQTTClient.h:291
    Sockets::rset
    fd_set rset
    socket read set (see select doc)
    Definition: Socket.h:111
    MQTTClient_receive
    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:2688
    -
    MQTTAsync_failureData5::packet_type
    int packet_type
    Packet type on which the failure occurred - used for publish QoS 1/2 exchanges.
    Definition: MQTTAsync.h:550
    +
    Clients::ping_due
    unsigned int ping_due
    we couldn't send a ping so we should send one when we can
    Definition: Clients.h:128
    +
    MQTTAsync_failureData5::packet_type
    int packet_type
    Packet type on which the failure occurred - used for publish QoS 1/2 exchanges.
    Definition: MQTTAsync.h:554
    SocketBuffer_freeDefQ
    void SocketBuffer_freeDefQ(void)
    Free the default queue memory.
    Definition: SocketBuffer.c:122
    MQTTAsync_command
    Definition: MQTTAsyncUtils.h:40
    -
    frameData
    builds a websocket frame for data transmission
    Definition: WebSocket.c:231
    +
    frameData
    builds a websocket frame for data transmission
    Definition: WebSocket.c:233
    SocketBuffer_terminate
    void SocketBuffer_terminate(void)
    Terminate the socketBuffer module.
    Definition: SocketBuffer.c:133
    ListFindItem
    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
    NodeStruct::size
    size_t size
    size of content
    Definition: Tree.h:82
    -
    MQTTAsync_disconnectOptions::context
    void * context
    Definition: MQTTAsync.h:1418
    -
    MQTTAsync_message::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:260
    +
    MQTTAsync_disconnectOptions::context
    void * context
    Definition: MQTTAsync.h:1422
    +
    MQTTAsync_message::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:264
    socketcompare
    int socketcompare(void *a, void *b)
    List callback function for comparing socket_queues by socket.
    Definition: SocketBuffer.c:70
    -
    MQTTPacket_suback
    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:292
    +
    MQTTPacket_suback
    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
    props_rc_parms
    Definition: MQTTClient.c:333
    Publish::topic
    char * topic
    topic string
    Definition: MQTTPacket.h:200
    MQTTCLIENT_PERSISTENCE_ERROR
    #define MQTTCLIENT_PERSISTENCE_ERROR
    Application-specific persistence functions must return this error code if there is a problem executin...
    Definition: MQTTClientPersistence.h:85
    @@ -254,7 +255,7 @@ Functions
    ListRemoveHead
    int ListRemoveHead(List *aList)
    Removes and frees an the first item in a list.
    Definition: LinkedList.c:294
    MQTTClient_message::payload
    void * payload
    A pointer to the payload of the MQTT message.
    Definition: MQTTClient.h:277
    qEntry
    Definition: MQTTAsyncUtils.h:32
    -
    readInt4
    int readInt4(char **pptr)
    Calculates an integer from two bytes read from the input buffer.
    Definition: MQTTPacket.c:945
    +
    readInt4
    int readInt4(char **pptr)
    Calculates an integer from two bytes read from the input buffer.
    Definition: MQTTPacket.c:961
    MQTTProperties
    MQTT version 5 property list.
    Definition: MQTTProperties.h:112
    MQTTPacket_sends
    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:250
    pstkeys
    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
    @@ -266,143 +267,143 @@ Functions
    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
    Messages::len
    int len
    PUBREC, PUBREL, PUBCOMP
    Definition: Clients.h:63
    MQTTProtocol_startPublishCommon
    static int MQTTProtocol_startPublishCommon(Clients *pubclient, Publish *publish, int qos, int retained)
    Utility function to start a new publish exchange.
    Definition: MQTTProtocolClient.c:141
    -
    Clients::phandle
    void * phandle
    the persistence handle
    Definition: Clients.h:139
    -
    Clients::persistence
    MQTTClient_persistence * persistence
    a persistence implementation
    Definition: Clients.h:140
    +
    Clients::phandle
    void * phandle
    the persistence handle
    Definition: Clients.h:141
    +
    Clients::persistence
    MQTTClient_persistence * persistence
    a persistence implementation
    Definition: Clients.h:142
    MQTTClient_connectOptions::serverURIs
    char *const * serverURIs
    An optional array of null-terminated strings specifying the servers to which the client will connect.
    Definition: MQTTClient.h:915
    MQTTProtocol_checkPendingWrites
    static void MQTTProtocol_checkPendingWrites(void)
    See if any pending writes have been completed, and cleanup if so.
    Definition: MQTTClient.c:2985
    -
    MQTTAsync_createOptions::MQTTVersion
    int MQTTVersion
    Whether the MQTT version is 3.1, 3.1.1, or 5.
    Definition: MQTTAsync.h:956
    -
    Clients::httpsProxy
    char * httpsProxy
    HTTPS proxy for websockets.
    Definition: Clients.h:149
    -
    MQTTAsync_successData::serverURI
    char * serverURI
    the connection string of the server
    Definition: MQTTAsync.h:578
    +
    MQTTAsync_createOptions::MQTTVersion
    int MQTTVersion
    Whether the MQTT version is 3.1, 3.1.1, or 5.
    Definition: MQTTAsync.h:960
    +
    Clients::httpsProxy
    char * httpsProxy
    HTTPS proxy for websockets.
    Definition: Clients.h:151
    +
    MQTTAsync_successData::serverURI
    char * serverURI
    the connection string of the server
    Definition: MQTTAsync.h:582
    MQTTClient_willOptions::qos
    int qos
    The quality of service setting for the LWT message (see MQTTClient_message.qos and qos).
    Definition: MQTTClient.h:631
    -
    Clients::net
    networkHandles net
    network info for this client
    Definition: Clients.h:129
    +
    Clients::net
    networkHandles net
    network info for this client
    Definition: Clients.h:131
    Connack::reserved
    unsigned int reserved
    message type nibble
    Definition: MQTTPacket.h:149
    Persistence_close
    int(* Persistence_close)(void *handle)
    Close the persistent store referred to by the handle.
    Definition: MQTTClientPersistence.h:123
    MQTTPacket
    Data for a packet with header only.
    Definition: MQTTPacket.h:162
    -
    MQTTAsync_failureData5::code
    int code
    A numeric code identifying the MQTT client library error.
    Definition: MQTTAsync.h:546
    -
    MQTTProtocol_freeMessageList
    void MQTTProtocol_freeMessageList(List *msgList)
    Empty and free up all storage used by a message list.
    Definition: MQTTProtocolClient.c:895
    -
    MQTTPacket_send_publish
    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:835
    +
    MQTTAsync_failureData5::code
    int code
    A numeric code identifying the MQTT client library error.
    Definition: MQTTAsync.h:550
    +
    MQTTProtocol_freeMessageList
    void MQTTProtocol_freeMessageList(List *msgList)
    Empty and free up all storage used by a message list.
    Definition: MQTTProtocolClient.c:911
    +
    MQTTPacket_send_publish
    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:851
    Sockets::rset_saved
    fd_set rset_saved
    saved socket read set
    Definition: Socket.h:112
    SocketBuffer_getWrite
    pending_writes * SocketBuffer_getWrite(int socket)
    Get any queued write data for a specific socket.
    Definition: SocketBuffer.c:399
    -
    MQTTAsync_connectOptions::MQTTVersion
    int MQTTVersion
    Sets the version of MQTT to be used on the connect.
    Definition: MQTTAsync.h:1295
    +
    MQTTAsync_connectOptions::MQTTVersion
    int MQTTVersion
    Sets the version of MQTT to be used on the connect.
    Definition: MQTTAsync.h:1299
    Unsuback
    Data for an MQTT V5 unsuback packet.
    Definition: MQTTPacket.h:184
    Socket_continueWrite
    int Socket_continueWrite(int socket)
    Continue an outstanding write for a particular socket.
    Definition: Socket.c:871
    -
    MQTTAsync_disconnectOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:1393
    -
    MQTTAsync_SSLOptions::privateKey
    const char * privateKey
    If not included in the sslKeyStore, this setting points to the file in PEM format containing the clie...
    Definition: MQTTAsync.h:1068
    -
    MQTTPacket_ack
    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:783
    +
    MQTTAsync_disconnectOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:1397
    +
    MQTTAsync_SSLOptions::privateKey
    const char * privateKey
    If not included in the sslKeyStore, this setting points to the file in PEM format containing the clie...
    Definition: MQTTAsync.h:1072
    +
    MQTTPacket_ack
    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:791
    MQTTClient_subscribeMany5
    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:1957
    SocketBuffer_getQueuedChar
    int SocketBuffer_getQueuedChar(int socket, char *c)
    Get any queued character for a specific socket.
    Definition: SocketBuffer.c:219
    MQTTClient_message
    A structure representing the payload and attributes of an MQTT message.
    Definition: MQTTClient.h:267
    -
    MQTTAsync_successData5::destinationName
    char * destinationName
    the topic destination for the message
    Definition: MQTTAsync.h:608
    +
    MQTTAsync_successData5::destinationName
    char * destinationName
    the topic destination for the message
    Definition: MQTTAsync.h:612
    MQTTPersistence_initialize
    int MQTTPersistence_initialize(Clients *c, const char *serverURI)
    Open persistent store and restore any persisted messages.
    Definition: MQTTPersistence.c:115
    -
    Clients::afterRead
    MQTTPersistence_afterRead * afterRead
    persistence read callback
    Definition: Clients.h:142
    +
    Clients::afterRead
    MQTTPersistence_afterRead * afterRead
    persistence read callback
    Definition: Clients.h:144
    ListDetach
    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
    -
    Log
    void Log(enum LOG_LEVELS log_level, int msgno, const char *format,...)
    Log a message.
    Definition: Log.c:421
    +
    Log
    void Log(enum LOG_LEVELS log_level, int msgno, const char *format,...)
    Log a message.
    Definition: Log.c:425
    MQTTProtocol_connect
    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:208
    MQTTClient_createWithOptions
    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:369
    ListFreeNoContent
    void ListFreeNoContent(List *aList)
    Removes and but does not free all items in a list, and frees the list itself.
    Definition: LinkedList.c:392
    NodeStruct::content
    void * content
    pointer to element content
    Definition: Tree.h:81
    MQTTClient_SSLOptions::CApath
    const char * CApath
    From the OpenSSL documentation: If CApath is not NULL, it points to a directory containing CA certifi...
    Definition: MQTTClient.h:720
    -
    MQTTAsync_createOptions::allowDisconnectedSendAtAnyTime
    int allowDisconnectedSendAtAnyTime
    Allow sending of messages while disconnected before a first successful connect.
    Definition: MQTTAsync.h:960
    +
    MQTTAsync_createOptions::allowDisconnectedSendAtAnyTime
    int allowDisconnectedSendAtAnyTime
    Allow sending of messages while disconnected before a first successful connect.
    Definition: MQTTAsync.h:964
    +
    Clients::ping_due_time
    START_TIME_TYPE ping_due_time
    the time at which the ping should have been sent (ping_due)
    Definition: Clients.h:130
    MQTTClient_publish
    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:2399
    MQTTClient_nameValue
    MQTTClient_libraryInfo is used to store details relating to the currently used library such as the ve...
    Definition: MQTTClient.h:779
    MQTTProperty::identifier
    enum MQTTPropertyCodes identifier
    The MQTT V5 property id.
    Definition: MQTTProperties.h:96
    Connect::header
    Header header
    MQTT header byte.
    Definition: MQTTPacket.h:91
    -
    MQTTPacket_freeUnsuback
    void MQTTPacket_freeUnsuback(Unsuback *pack)
    Free allocated storage for a suback packet.
    Definition: MQTTPacket.c:700
    +
    MQTTPacket_freeUnsuback
    void MQTTPacket_freeUnsuback(Unsuback *pack)
    Free allocated storage for a suback packet.
    Definition: MQTTPacket.c:708
    MQTTCLIENT_PERSISTENCE_NONE
    #define MQTTCLIENT_PERSISTENCE_NONE
    This persistence_type value specifies a memory-based persistence mechanism (see MQTTClient_create()).
    Definition: MQTTClientPersistence.h:74
    MQTTClient_connectOptions::binarypwd
    struct MQTTClient_connectOptions::@19 binarypwd
    Optional binary password.
    -
    MQTTAsync_responseOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:697
    +
    MQTTAsync_responseOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:701
    Connack::rc
    unsigned char rc
    connack reason code
    Definition: MQTTPacket.h:153
    -
    MQTTAsync_SSLOptions::trustStore
    const char * trustStore
    The file in PEM format containing the public digital certificates trusted by the client.
    Definition: MQTTAsync.h:1058
    +
    MQTTAsync_SSLOptions::trustStore
    const char * trustStore
    The file in PEM format containing the public digital certificates trusted by the client.
    Definition: MQTTAsync.h:1062
    storageElement::line
    int line
    the line no in the source file where it was allocated
    Definition: Heap.c:71
    ListNextElement
    ListElement * ListNextElement(List *aList, ListElement **pos)
    Forward iteration through a list.
    Definition: LinkedList.c:411
    Suback::MQTTVersion
    int MQTTVersion
    the version of MQTT
    Definition: MQTTPacket.h:175
    Connect::version
    unsigned char version
    MQTT version number.
    Definition: MQTTPacket.h:126
    MQTTPersistence_qEntry
    Definition: MQTTPersistence.h:84
    -
    MQTTAsync_createOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:940
    +
    MQTTAsync_createOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:944
    stackEntry
    Definition: StackTrace.c:46
    Socket_writev
    int Socket_writev(int 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:440
    MQTTPersistence_create
    int MQTTPersistence_create(MQTTClient_persistence **persistence, int type, void *pcontext)
    Creates a MQTTClient_persistence structure representing a persistence implementation.
    Definition: MQTTPersistence.c:51
    MQTTProperty::value
    MQTTLenString value
    The value of a user property.
    Definition: MQTTProperties.h:104
    -
    Thread_destroy_mutex
    int Thread_destroy_mutex(mutex_type mutex)
    Destroy a mutex which has already been created.
    Definition: Thread.c:156
    -
    MQTTStrncpy
    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:912
    +
    Thread_destroy_mutex
    int Thread_destroy_mutex(mutex_type mutex)
    Destroy a mutex which has already been created.
    Definition: Thread.c:155
    +
    MQTTStrncpy
    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:928
    SocketBuffer_complete
    char * SocketBuffer_complete(int socket)
    A socket read has now completed so we can get rid of the queue.
    Definition: SocketBuffer.c:281
    Ack::properties
    MQTTProperties properties
    MQTT 5.0 properties.
    Definition: MQTTPacket.h:220
    writeData
    void writeData(char **pptr, const void *data, int datalen)
    Writes length delimited data to an output buffer.
    Definition: MQTTPacket.c:479
    valid_ranges
    struct @33 valid_ranges[]
    Structure to hold the valid ranges of UTF-8 characters, for each byte up to 4.
    -
    MQTTAsync_SSLOptions
    MQTTAsync_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL lib...
    Definition: MQTTAsync.h:1043
    -
    MQTTAsync_failureData5::message
    const char * message
    Optional further text explaining the error.
    Definition: MQTTAsync.h:548
    -
    MQTTAsync_willOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:998
    +
    MQTTAsync_SSLOptions
    MQTTAsync_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL lib...
    Definition: MQTTAsync.h:1047
    +
    MQTTAsync_failureData5::message
    const char * message
    Optional further text explaining the error.
    Definition: MQTTAsync.h:552
    +
    MQTTAsync_willOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:1002
    Log_nameValue
    Definition: Log.h:69
    MQTTClient_publishMessage
    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:2444
    Connack::sessionPresent
    bool sessionPresent
    was a session found on the server?
    Definition: MQTTPacket.h:148
    Connect::willMsg
    char * willMsg
    will payload
    Definition: MQTTPacket.h:123
    MQTTProtocol_handleUnsubacks
    int MQTTProtocol_handleUnsubacks(void *pack, int sock)
    Process an incoming unsuback packet for a socket.
    Definition: MQTTProtocolOut.c:430
    -
    Thread_create_cond
    cond_type Thread_create_cond(int *rc)
    Create a new condition variable.
    Definition: Thread.c:365
    +
    Thread_create_cond
    cond_type Thread_create_cond(int *rc)
    Create a new condition variable.
    Definition: Thread.c:358
    Heap_terminate
    void Heap_terminate(void)
    Heap termination.
    Definition: Heap.c:417
    SocketBuffer_writeComplete
    int SocketBuffer_writeComplete(int socket)
    A socket write has now completed so we can get rid of the queue.
    Definition: SocketBuffer.c:411
    call_disconnected
    static thread_return_type WINAPI call_disconnected(void *context)
    Wrapper function to call disconnected on a separate thread.
    Definition: MQTTClient.c:717
    -
    MQTTAsync_successData5::properties
    MQTTProperties properties
    MQTT V5 properties returned, if any.
    Definition: MQTTAsync.h:594
    +
    MQTTAsync_successData5::properties
    MQTTProperties properties
    MQTT V5 properties returned, if any.
    Definition: MQTTAsync.h:598
    Tree::indexes
    int indexes
    no of indexes into tree
    Definition: Tree.h:83
    -
    MQTTAsync_successData5::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:590
    +
    MQTTAsync_successData5::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:594
    MQTTClient_disconnect1
    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:1858
    PacketBuffers::mask
    uint8_t mask[4]
    array of flags indicating whether each buffer needs to be freed
    Definition: Socket.h:102
    UTF8_validate
    int UTF8_validate(int len, const char *data)
    Validate a length-delimited string has only UTF-8 characters.
    Definition: utf-8.c:129
    PacketBuffers
    Definition: Socket.h:96
    -
    MQTTAsync_connectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    A pointer to a callback function to be called if the connect successfully completes.
    Definition: MQTTAsync.h:1260
    +
    MQTTAsync_connectOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    A pointer to a callback function to be called if the connect successfully completes.
    Definition: MQTTAsync.h:1264
    Ack::msgId
    int msgId
    MQTT message id.
    Definition: MQTTPacket.h:217
    MQTTClient_yield
    void MQTTClient_yield(void)
    When implementing a single-threaded client, call this function periodically to allow processing of me...
    Definition: MQTTClient.c:2744
    -
    MQTTAsync_connectData
    The connect options that can be updated before an automatic reconnect.
    Definition: MQTTAsync.h:451
    -
    MQTTAsync_connectOptions::serverURIcount
    int serverURIcount
    The number of entries in the serverURIs array.
    Definition: MQTTAsync.h:1276
    +
    MQTTAsync_connectData
    The connect options that can be updated before an automatic reconnect.
    Definition: MQTTAsync.h:455
    +
    MQTTAsync_connectOptions::serverURIcount
    int serverURIcount
    The number of entries in the serverURIs array.
    Definition: MQTTAsync.h:1280
    MQTTClient_willOptions::retained
    int retained
    The retained flag for the LWT message (see MQTTClient_message.retained).
    Definition: MQTTClient.h:626
    -
    MQTTAsync_createOptions
    Options for the ::MQTTAsync_createWithOptions call.
    Definition: MQTTAsync.h:937
    +
    MQTTAsync_createOptions
    Options for the ::MQTTAsync_createWithOptions call.
    Definition: MQTTAsync.h:941
    Socket_outInitialize
    void Socket_outInitialize(void)
    Initialize the socket module.
    Definition: Socket.c:123
    MQTTProperty::integer4
    unsigned int integer4
    holds the value of a 4 byte integer property type
    Definition: MQTTProperties.h:101
    -
    Thread_start
    thread_type Thread_start(thread_fn fn, void *parameter)
    Start a new thread.
    Definition: Thread.c:60
    Connect::keepAliveTimer
    int keepAliveTimer
    keepalive timeout value in seconds
    Definition: MQTTPacket.h:125
    -
    MQTTAsync_willOptions::topicName
    const char * topicName
    The LWT topic to which the LWT message will be published.
    Definition: MQTTAsync.h:1004
    -
    MQTTPacket_freeSuback
    void MQTTPacket_freeSuback(Suback *pack)
    Free allocated storage for a suback packet.
    Definition: MQTTPacket.c:684
    -
    Thread_getid
    thread_id_type Thread_getid(void)
    Get the thread id of the thread from which this function is called.
    Definition: Thread.c:176
    +
    MQTTAsync_willOptions::topicName
    const char * topicName
    The LWT topic to which the LWT message will be published.
    Definition: MQTTAsync.h:1008
    +
    MQTTPacket_freeSuback
    void MQTTPacket_freeSuback(Suback *pack)
    Free allocated storage for a suback packet.
    Definition: MQTTPacket.c:692
    +
    Thread_getid
    thread_id_type Thread_getid(void)
    Get the thread id of the thread from which this function is called.
    Definition: Thread.c:175
    Publications
    Stored publication data to minimize copying.
    Definition: Clients.h:40
    pstget
    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
    MQTTClient_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client.
    Definition: MQTTClient.h:611
    -
    MQTTAsync_SSLOptions::keyStore
    const char * keyStore
    The file in PEM format containing the public certificate chain of the client.
    Definition: MQTTAsync.h:1063
    +
    MQTTAsync_SSLOptions::keyStore
    const char * keyStore
    The file in PEM format containing the public certificate chain of the client.
    Definition: MQTTAsync.h:1067
    MQTTClient_SSLOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTClient.h:662
    -
    MQTTAsync_successData5::reasonCodes
    enum MQTTReasonCodes * reasonCodes
    an array of reasonCodes
    Definition: MQTTAsync.h:602
    +
    MQTTAsync_successData5::reasonCodes
    enum MQTTReasonCodes * reasonCodes
    an array of reasonCodes
    Definition: MQTTAsync.h:606
    MQTTClient_unsubscribeMany5
    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:2130
    -
    Thread_check_sem
    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:292
    -
    MQTTAsync_connectOptions::context
    void * context
    Definition: MQTTAsync.h:1272
    +
    Thread_check_sem
    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:285
    +
    MQTTAsync_connectOptions::context
    void * context
    Definition: MQTTAsync.h:1276
    Publish
    Data for a publish packet.
    Definition: MQTTPacket.h:197
    MQTTClient_publishMessage5
    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:2413
    Tree::size
    size_t size
    heap storage used
    Definition: Tree.h:85
    -
    MQTTAsync_responseOptions
    Structure to define call options.
    Definition: MQTTAsync.h:694
    +
    MQTTAsync_responseOptions
    Structure to define call options.
    Definition: MQTTAsync.h:698
    clientSocketCompare
    int clientSocketCompare(void *a, void *b)
    List callback function for comparing clients by socket.
    Definition: Clients.c:50
    MQTTClient_connectOptions
    MQTTClient_connectOptions defines several settings that control the way the client connects to an MQT...
    Definition: MQTTClient.h:806
    MQTTClient_subscribe
    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:2116
    MQTTProtocol_createMessage
    Messages * MQTTProtocol_createMessage(Publish *publish, Messages **mm, int qos, int retained, int allocatePayload)
    Copy and store message data for retries.
    Definition: MQTTProtocolClient.c:198
    Sockets::maxfdp1
    int maxfdp1
    max descriptor used +1 (again see select doc)
    Definition: Socket.h:113
    MQTTClient_isConnected
    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:1942
    -
    MQTTAsync_connectOptions::ssl
    MQTTAsync_SSLOptions * ssl
    This is a pointer to an MQTTAsync_SSLOptions structure.
    Definition: MQTTAsync.h:1254
    -
    MQTTAsync_failureData::message
    const char * message
    Optional text explaining the error.
    Definition: MQTTAsync.h:528
    +
    MQTTAsync_connectOptions::ssl
    MQTTAsync_SSLOptions * ssl
    This is a pointer to an MQTTAsync_SSLOptions structure.
    Definition: MQTTAsync.h:1258
    +
    MQTTAsync_failureData::message
    const char * message
    Optional text explaining the error.
    Definition: MQTTAsync.h:532
    queues
    static List * queues
    List of queued input buffers.
    Definition: SocketBuffer.c:50
    pending_writes
    Definition: SocketBuffer.h:48
    MQTTProtocol_closeSession
    void MQTTProtocol_closeSession(Clients *c, int sendwill)
    mqttclient_mutex must be locked when you call this function, if multi threaded
    Definition: MQTTClient.c:1914
    -
    Clients::sessionExpiry
    int sessionExpiry
    MQTT 5 session expiry.
    Definition: Clients.h:147
    -
    MQTTAsync_createOptions::sendWhileDisconnected
    int sendWhileDisconnected
    Whether to allow messages to be sent when the client library is not connected.
    Definition: MQTTAsync.h:948
    -
    MQTTAsync_successData::MQTTVersion
    int MQTTVersion
    the version of MQTT being used
    Definition: MQTTAsync.h:579
    +
    Clients::sessionExpiry
    int sessionExpiry
    MQTT 5 session expiry.
    Definition: Clients.h:149
    +
    MQTTAsync_createOptions::sendWhileDisconnected
    int sendWhileDisconnected
    Whether to allow messages to be sent when the client library is not connected.
    Definition: MQTTAsync.h:952
    +
    MQTTAsync_successData::MQTTVersion
    int MQTTVersion
    the version of MQTT being used
    Definition: MQTTAsync.h:583
    writes
    static List writes
    List of queued write buffers.
    Definition: SocketBuffer.c:55
    MQTTClient_free
    void MQTTClient_free(void *memory)
    This function frees memory allocated by the MQTT C client library, especially the topic name.
    Definition: MQTTClient.c:618
    MQTTPersistence_message
    Definition: MQTTPersistence.h:71
    -
    MQTTPacket_freeConnack
    void MQTTPacket_freeConnack(Connack *pack)
    Free allocated storage for a connack packet.
    Definition: MQTTPacketOut.c:187
    +
    MQTTPacket_freeConnack
    void MQTTPacket_freeConnack(Connack *pack)
    Free allocated storage for a connack packet.
    Definition: MQTTPacketOut.c:185
    HeapScan
    static void HeapScan(enum LOG_LEVELS log_level)
    Scans the heap and reports any items currently allocated.
    Definition: Heap.c:383
    Socket_close
    void Socket_close(int socket)
    Close a socket and remove it from the select list.
    Definition: Socket.c:634
    TreeInitialize
    Tree * TreeInitialize(int(*compare)(void *, void *, int))
    Allocates and initializes a new tree structure.
    Definition: Tree.c:65
    -
    MQTTAsync_connectOptions::connectProperties
    MQTTProperties * connectProperties
    MQTT V5 properties for connect.
    Definition: MQTTAsync.h:1322
    +
    MQTTAsync_connectOptions::connectProperties
    MQTTProperties * connectProperties
    MQTT V5 properties for connect.
    Definition: MQTTAsync.h:1326
    MQTTClient_SSLOptions::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)
    Callback function for setting TLS-PSK options.
    Definition: MQTTClient.h:739
    MQTTClient_setTraceLevel
    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:2869
    Tree::allow_duplicates
    unsigned int allow_duplicates
    switch to allow duplicate entries
    Definition: Tree.h:87
    -
    MQTTAsync_connectOptions::cleansession
    int cleansession
    This is a boolean value.
    Definition: MQTTAsync.h:1215
    +
    MQTTAsync_connectOptions::cleansession
    int cleansession
    This is a boolean value.
    Definition: MQTTAsync.h:1219
    MQTTClient_persistence::pput
    Persistence_put pput
    A function pointer to an implementation of Persistence_put().
    Definition: MQTTClientPersistence.h:231
    -
    MQTTAsync_failureData5::reasonCode
    enum MQTTReasonCodes reasonCode
    The MQTT reason code returned.
    Definition: MQTTAsync.h:542
    +
    MQTTAsync_failureData5::reasonCode
    enum MQTTReasonCodes reasonCode
    The MQTT reason code returned.
    Definition: MQTTAsync.h:546
    TreeRemoveIndex
    void * TreeRemoveIndex(Tree *aTree, void *content, int index)
    Remove an item from a tree.
    Definition: Tree.c:487
    MQTTClient_SSLOptions::verify
    int verify
    Whether to carry out post-connect checks, including that a certificate matches the given host name.
    Definition: MQTTClient.h:713
    MQTTClient_connectOptions::ssl
    MQTTClient_SSLOptions * ssl
    This is a pointer to an MQTTClient_SSLOptions structure.
    Definition: MQTTClient.h:897
    @@ -412,30 +413,30 @@ Functions
    MQTTClient_willOptions::len
    int len
    binary payload length
    Definition: MQTTClient.h:635
    lower
    char lower
    lower limit of valid range
    Definition: utf-8.c:49
    List::count
    int count
    no of items
    Definition: LinkedList.h:72
    -
    MQTTAsync_message
    A structure representing the payload and attributes of an MQTT message.
    Definition: MQTTAsync.h:257
    +
    MQTTAsync_message
    A structure representing the payload and attributes of an MQTT message.
    Definition: MQTTAsync.h:261
    socket_queue
    Definition: SocketBuffer.h:37
    MQTTClient_message::dup
    int dup
    The dup flag indicates whether or not this message is a duplicate.
    Definition: MQTTClient.h:317
    -
    MQTTAsync_disconnectOptions::onFailure5
    MQTTAsync_onFailure5 * onFailure5
    A pointer to a callback function to be called if the disconnect fails.
    Definition: MQTTAsync.h:1438
    -
    MQTTAsync_SSLOptions::ssl_error_cb
    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:1110
    -
    MQTTAsync_successData::token
    MQTTAsync_token token
    A token identifying the successful request.
    Definition: MQTTAsync.h:559
    -
    MQTTAsync_SSLOptions::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)
    Callback function for setting TLS-PSK options.
    Definition: MQTTAsync.h:1123
    -
    Thread_signal_cond
    int Thread_signal_cond(cond_type condvar)
    Signal a condition variable.
    Definition: Thread.c:399
    +
    MQTTAsync_disconnectOptions::onFailure5
    MQTTAsync_onFailure5 * onFailure5
    A pointer to a callback function to be called if the disconnect fails.
    Definition: MQTTAsync.h:1442
    +
    MQTTAsync_SSLOptions::ssl_error_cb
    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:1114
    +
    MQTTAsync_successData::token
    MQTTAsync_token token
    A token identifying the successful request.
    Definition: MQTTAsync.h:563
    +
    MQTTAsync_SSLOptions::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)
    Callback function for setting TLS-PSK options.
    Definition: MQTTAsync.h:1127
    +
    Thread_signal_cond
    int Thread_signal_cond(cond_type condvar)
    Signal a condition variable.
    Definition: Thread.c:392
    MQTTClient_init_options
    Initialization options.
    Definition: MQTTClient.h:225
    Socket_getpeer
    char * Socket_getpeer(int sock)
    Get information about the other end connected to a socket.
    Definition: Socket.c:1074
    Connack::header
    Header header
    MQTT header byte.
    Definition: MQTTPacket.h:135
    stringcompare
    int stringcompare(void *a, void *b)
    List callback function for comparing C strings.
    Definition: LinkedList.c:448
    -
    MQTTAsync_connectOptions::password
    const char * password
    MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
    Definition: MQTTAsync.h:1237
    -
    MQTTAsync_connectData::len
    int len
    binary password length
    Definition: MQTTAsync.h:470
    +
    MQTTAsync_connectOptions::password
    const char * password
    MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
    Definition: MQTTAsync.h:1241
    +
    MQTTAsync_connectData::len
    int len
    binary password length
    Definition: MQTTAsync.h:474
    ptrCompare
    static int ptrCompare(void *a, void *b, int value)
    List callback function for comparing storage elements.
    Definition: Heap.c:114
    Unsuback::reasonCodes
    List * reasonCodes
    list of reason codes
    Definition: MQTTPacket.h:190
    Connect::flags
    union Connect::@21 flags
    connect flags byte
    MQTTClient_connectOptions::returned
    struct MQTTClient_connectOptions::@18 returned
    Returned from the connect when the MQTT version used to connect is 3.1.1.
    -
    MQTTAsync_failureData::code
    int code
    A numeric code identifying the error.
    Definition: MQTTAsync.h:526
    -
    MQTTAsync_responseOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    A pointer to a callback function to be called if the API call successfully completes.
    Definition: MQTTAsync.h:706
    +
    MQTTAsync_failureData::code
    int code
    A numeric code identifying the error.
    Definition: MQTTAsync.h:530
    +
    MQTTAsync_responseOptions::onSuccess
    MQTTAsync_onSuccess * onSuccess
    A pointer to a callback function to be called if the API call successfully completes.
    Definition: MQTTAsync.h:710
    MQTTClient_willOptions::topicName
    const char * topicName
    The LWT topic to which the LWT message will be published.
    Definition: MQTTClient.h:620
    -
    MQTTAsync_successData::qos
    int qos
    For subscribe, the granted QoS of the subscription returned by the server.
    Definition: MQTTAsync.h:565
    +
    MQTTAsync_successData::qos
    int qos
    For subscribe, the granted QoS of the subscription returned by the server.
    Definition: MQTTAsync.h:569
    Heap_get_info
    heap_info * Heap_get_info(void)
    Access to heap state.
    Definition: Heap.c:432
    -
    MQTTAsync_willOptions::qos
    int qos
    The quality of service setting for the LWT message (see MQTTAsync_message.qos and qos).
    Definition: MQTTAsync.h:1015
    +
    MQTTAsync_willOptions::qos
    int qos
    The quality of service setting for the LWT message (see MQTTAsync_message.qos and qos).
    Definition: MQTTAsync.h:1019
    MQTTClient_SSLOptions::trustStore
    const char * trustStore
    The file in PEM format containing the public digital certificates trusted by the client.
    Definition: MQTTClient.h:674
    Connect::willRetain
    bool willRetain
    will retain setting
    Definition: MQTTPacket.h:113
    MQTTClient_subscribe5
    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:2102
    @@ -444,105 +445,105 @@ Functions
    MQTTClient_connectOptions::reliable
    int reliable
    This is a boolean value that controls how many messages can be in-flight simultaneously.
    Definition: MQTTClient.h:862
    MQTTCLIENT_PERSISTENCE_DEFAULT
    #define MQTTCLIENT_PERSISTENCE_DEFAULT
    This persistence_type value specifies the default file system-based persistence mechanism (see MQTTCl...
    Definition: MQTTClientPersistence.h:69
    MQTTClient_connectOptions::cleansession
    int cleansession
    This is a boolean value.
    Definition: MQTTClient.h:852
    -
    MQTTAsync_connectData::data
    const void * data
    binary password data
    Definition: MQTTAsync.h:471
    +
    MQTTAsync_connectData::data
    const void * data
    binary password data
    Definition: MQTTAsync.h:475
    trace_settings_type::trace_level
    enum LOG_LEVELS trace_level
    trace level
    Definition: Log.h:57
    Sockets::connect_pending
    List * connect_pending
    list of sockets for which a connect is pending
    Definition: Socket.h:116
    -
    MQTTAsync_SSLOptions::ssl_error_context
    void * ssl_error_context
    Application-specific contex for OpenSSL error handler ERR_print_errors_cb Exists only if struct_versi...
    Definition: MQTTAsync.h:1116
    +
    MQTTAsync_SSLOptions::ssl_error_context
    void * ssl_error_context
    Application-specific contex for OpenSSL error handler ERR_print_errors_cb Exists only if struct_versi...
    Definition: MQTTAsync.h:1120
    Header::qos
    unsigned int qos
    QoS value, 0, 1 or 2.
    Definition: MQTTPacket.h:78
    Header::type
    unsigned int type
    message type nibble
    Definition: MQTTPacket.h:80
    MQTTPersistence_insertInOrder
    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
    Persistence_keys
    int(* Persistence_keys)(void *handle, char ***keys, int *nkeys)
    Returns the keys in this persistent data store.
    Definition: MQTTClientPersistence.h:186
    -
    MQTTAsync_message::dup
    int dup
    The dup flag indicates whether or not this message is a duplicate.
    Definition: MQTTAsync.h:307
    -
    MQTTAsync_disconnectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    A pointer to a callback function to be called if the disconnect fails.
    Definition: MQTTAsync.h:1412
    -
    MQTTAsync_connectOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:1171
    +
    MQTTAsync_message::dup
    int dup
    The dup flag indicates whether or not this message is a duplicate.
    Definition: MQTTAsync.h:311
    +
    MQTTAsync_disconnectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    A pointer to a callback function to be called if the disconnect fails.
    Definition: MQTTAsync.h:1416
    +
    MQTTAsync_connectOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTAsync.h:1175
    ListElementStruct
    Structure to hold all data for one list element.
    Definition: LinkedList.h:56
    Socket_getReadySocket
    int Socket_getReadySocket(int more_work, struct timeval *tp, mutex_type mutex, int *rc)
    Returns the next socket ready for communications as indicated by select.
    Definition: Socket.c:244
    MQTTPacket::header
    Header header
    MQTT header byte.
    Definition: MQTTPacket.h:164
    ListRemoveItem
    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
    NodeStruct::child
    struct NodeStruct * child[2]
    pointers to child tree nodes 0 = left, 1 = right
    Definition: Tree.h:80
    Connect::cleanstart
    bool cleanstart
    cleansession flag
    Definition: MQTTPacket.h:110
    -
    ClientStates
    Configuration data related to all clients.
    Definition: Clients.h:162
    -
    MQTTAsync_SSLOptions::enableServerCertAuth
    int enableServerCertAuth
    True/False option to enable verification of the server certificate.
    Definition: MQTTAsync.h:1084
    +
    ClientStates
    Configuration data related to all clients.
    Definition: Clients.h:164
    +
    MQTTAsync_SSLOptions::enableServerCertAuth
    int enableServerCertAuth
    True/False option to enable verification of the server certificate.
    Definition: MQTTAsync.h:1088
    storageElement::size
    size_t size
    size of the allocated storage
    Definition: Heap.c:73
    readUTF
    char * readUTF(char **pptr, char *enddata)
    Reads a "UTF" string from the input buffer.
    Definition: MQTTPacket.c:413
    MQTTPersistence_putPacket
    int MQTTPersistence_putPacket(int 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
    MQTTClient_destroy
    void MQTTClient_destroy(MQTTClient *handle)
    This function frees the memory allocated to an MQTT client (see MQTTClient_create()).
    Definition: MQTTClient.c:562
    -
    MQTTAsync_message::payload
    void * payload
    A pointer to the payload of the MQTT message.
    Definition: MQTTAsync.h:267
    +
    MQTTAsync_message::payload
    void * payload
    A pointer to the payload of the MQTT message.
    Definition: MQTTAsync.h:271
    MQTTClient_SSLOptions::enableServerCertAuth
    int enableServerCertAuth
    True/False option to enable verification of the server certificate.
    Definition: MQTTClient.h:700
    Clients::good
    unsigned int good
    if we have an error on the socket we turn this off
    Definition: Clients.h:126
    MQTTPacket_connack
    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
    -
    MQTTAsync_willOptions::retained
    int retained
    The retained flag for the LWT message (see MQTTAsync_message.retained).
    Definition: MQTTAsync.h:1010
    +
    MQTTAsync_willOptions::retained
    int retained
    The retained flag for the LWT message (see MQTTAsync_message.retained).
    Definition: MQTTAsync.h:1014
    MQTTLenString
    The data for a length delimited string.
    Definition: MQTTProperties.h:84
    MQTTClient_persistence::pclose
    Persistence_close pclose
    A function pointer to an implementation of Persistence_close().
    Definition: MQTTClientPersistence.h:227
    Socket_putdatas
    int Socket_putdatas(int 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:512
    -
    MQTTAsync_connectOptions::connectTimeout
    int connectTimeout
    The time interval in seconds to allow a connect to complete.
    Definition: MQTTAsync.h:1241
    +
    MQTTAsync_connectOptions::connectTimeout
    int connectTimeout
    The time interval in seconds to allow a connect to complete.
    Definition: MQTTAsync.h:1245
    Messages::nextMessageType
    char nextMessageType
    used for retry and expiry
    Definition: Clients.h:62
    -
    MQTTPacket_unsuback
    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:408
    +
    MQTTPacket_unsuback
    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
    MQTTClient_subscribeMany
    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:2087
    MQTTClient_connectOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTClient.h:820
    -
    MQTTAsync_connectOptions::httpHeaders
    const MQTTAsync_nameValue * httpHeaders
    HTTP headers for websockets.
    Definition: MQTTAsync.h:1342
    +
    MQTTAsync_connectOptions::httpHeaders
    const MQTTAsync_nameValue * httpHeaders
    HTTP headers for websockets.
    Definition: MQTTAsync.h:1346
    ListZero
    void ListZero(List *newl)
    Sets a list structure to empty - all null values.
    Definition: LinkedList.c:42
    -
    MQTTPacket_freeAck
    void MQTTPacket_freeAck(Ack *pack)
    Free allocated storage for an ack packet.
    Definition: MQTTPacket.c:617
    +
    MQTTPacket_freeAck
    void MQTTPacket_freeAck(Ack *pack)
    Free allocated storage for an ack packet.
    Definition: MQTTPacket.c:625
    socket_queue::fixed_header
    char fixed_header[5]
    header plus up to 4 length bytes
    Definition: SocketBuffer.h:42
    SocketBuffer_cleanup
    void SocketBuffer_cleanup(int socket)
    Cleanup any buffers for a specific socket.
    Definition: SocketBuffer.c:151
    -
    MQTTAsync_failureData5
    The data returned on completion of an unsuccessful API call in the response callback onFailure.
    Definition: MQTTAsync.h:533
    +
    MQTTAsync_failureData5
    The data returned on completion of an unsuccessful API call in the response callback onFailure.
    Definition: MQTTAsync.h:537
    MQTTClient_connectOptions::httpsProxy
    const char * httpsProxy
    HTTPS proxy for websockets.
    Definition: MQTTClient.h:960
    MQTTClient_connectOptions::data
    const void * data
    binary password data
    Definition: MQTTClient.h:939
    -
    MQTTAsync_responseOptions::onFailure
    MQTTAsync_onFailure * onFailure
    A pointer to a callback function to be called if the API call fails.
    Definition: MQTTAsync.h:712
    -
    MQTTAsync_createOptions::maxBufferedMessages
    int maxBufferedMessages
    The maximum number of messages allowed to be buffered while not connected.
    Definition: MQTTAsync.h:950
    +
    MQTTAsync_responseOptions::onFailure
    MQTTAsync_onFailure * onFailure
    A pointer to a callback function to be called if the API call fails.
    Definition: MQTTAsync.h:716
    +
    MQTTAsync_createOptions::maxBufferedMessages
    int maxBufferedMessages
    The maximum number of messages allowed to be buffered while not connected.
    Definition: MQTTAsync.h:954
    MQTTClient_connectOptions::serverURI
    const char * serverURI
    the serverURI connected to
    Definition: MQTTClient.h:929
    -
    lines_written
    static int lines_written
    number of lines written to the current output file
    Definition: Log.c:102
    -
    MQTTAsync_connectOptions::will
    MQTTAsync_willOptions * will
    This is a pointer to an MQTTAsync_willOptions structure.
    Definition: MQTTAsync.h:1225
    +
    lines_written
    static int lines_written
    number of lines written to the current output file
    Definition: Log.c:106
    +
    MQTTAsync_connectOptions::will
    MQTTAsync_willOptions * will
    This is a pointer to an MQTTAsync_willOptions structure.
    Definition: MQTTAsync.h:1229
    MQTTProtocol_keepalive
    void MQTTProtocol_keepalive(START_TIME_TYPE now)
    MQTT protocol keepAlive processing.
    Definition: MQTTProtocolClient.c:660
    Tree::count
    int count
    no of items
    Definition: Tree.h:84
    Heap_roundup
    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
    MQTTClient_message::msgid
    int msgid
    The message identifier is normally reserved for internal use by the MQTT client and server.
    Definition: MQTTClient.h:321
    MQTTClient_connectOptions::MQTTVersion
    int MQTTVersion
    Sets the version of MQTT to be used on the connect.
    Definition: MQTTClient.h:923
    MQTTClient_SSLOptions::disableDefaultTrustStore
    int disableDefaultTrustStore
    Don't load default SSL CA.
    Definition: MQTTClient.h:752
    -
    MQTTAsync_successData::message
    MQTTAsync_message message
    the message being sent to the server
    Definition: MQTTAsync.h:572
    -
    MQTTAsync_message::retained
    int retained
    The retained flag serves two purposes depending on whether the message it is associated with is being...
    Definition: MQTTAsync.h:300
    +
    MQTTAsync_successData::message
    MQTTAsync_message message
    the message being sent to the server
    Definition: MQTTAsync.h:576
    +
    MQTTAsync_message::retained
    int retained
    The retained flag serves two purposes depending on whether the message it is associated with is being...
    Definition: MQTTAsync.h:304
    MQTTClient_setDisconnected
    int MQTTClient_setDisconnected(MQTTClient handle, void *context, MQTTClient_disconnected *disconnected)
    Sets the MQTTClient_disconnected() callback function for a client.
    Definition: MQTTClient.c:688
    MQTTAsync_successData5::alt
    union MQTTAsync_successData5::@4 alt
    A union of the different values that can be returned for subscribe, unsubscribe and publish.
    MQTTSubscribe_options::retainAsPublished
    unsigned char retainAsPublished
    To keep the retain flag as on the original publish message, set to 1.
    Definition: MQTTSubscribeOpts.h:50
    -
    ws_frame::len
    size_t len
    length of frame
    Definition: WebSocket.c:150
    +
    ws_frame::len
    size_t len
    length of frame
    Definition: WebSocket.c:152
    bytes
    struct @33::@34 bytes[4]
    up to 4 bytes can be used per character
    Ack::rc
    unsigned char rc
    MQTT 5 reason code.
    Definition: MQTTPacket.h:218
    -
    MQTTAsync_responseOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:700
    +
    MQTTAsync_responseOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:704
    Connack
    Data for a connack packet.
    Definition: MQTTPacket.h:133
    -
    Thread_destroy_sem
    int Thread_destroy_sem(sem_type sem)
    Destroy a semaphore which has already been created.
    Definition: Thread.c:341
    -
    MQTTProtocol_retry
    void MQTTProtocol_retry(START_TIME_TYPE now, int doRetry, int regardless)
    MQTT retry protocol and socket pending writes processing.
    Definition: MQTTProtocolClient.c:784
    +
    Thread_destroy_sem
    int Thread_destroy_sem(sem_type sem)
    Destroy a semaphore which has already been created.
    Definition: Thread.c:334
    +
    MQTTProtocol_retry
    void MQTTProtocol_retry(START_TIME_TYPE now, int doRetry, int regardless)
    MQTT retry protocol and socket pending writes processing.
    Definition: MQTTProtocolClient.c:800
    MQTTClient_createOptions::MQTTVersion
    int MQTTVersion
    Whether the MQTT version is 3.1, 3.1.1, or 5.
    Definition: MQTTClient.h:547
    -
    Clients::context
    void * context
    calling context - used when calling disconnect_internal
    Definition: Clients.h:145
    +
    Clients::context
    void * context
    calling context - used when calling disconnect_internal
    Definition: Clients.h:147
    MQTTClient_disconnect
    int MQTTClient_disconnect(MQTTClient handle, int timeout)
    This function attempts to disconnect the client from the MQTT server.
    Definition: MQTTClient.c:1920
    SocketBuffer_getQueuedData
    char * SocketBuffer_getQueuedData(int socket, size_t bytes, size_t *actual_len)
    Get any queued data for a specific socket.
    Definition: SocketBuffer.c:176
    -
    Clients::MQTTVersion
    int MQTTVersion
    the version of MQTT being used, 3, 4 or 5
    Definition: Clients.h:146
    +
    Clients::MQTTVersion
    int MQTTVersion
    the version of MQTT being used, 3, 4 or 5
    Definition: Clients.h:148
    Sockets
    Structure to hold all socket data for the module.
    Definition: Socket.h:109
    Tree::heap_tracking
    unsigned int heap_tracking
    switch on heap tracking for this tree?
    Definition: Tree.h:86
    -
    MQTTAsync_connectOptions::len
    int len
    binary password length
    Definition: MQTTAsync.h:1312
    +
    MQTTAsync_connectOptions::len
    int len
    binary password length
    Definition: MQTTAsync.h:1316
    MQTTClient_SSLOptions::privateKey
    const char * privateKey
    If not included in the sslKeyStore, this setting points to the file in PEM format containing the clie...
    Definition: MQTTClient.h:684
    MQTTClient_SSLOptions::enabledCipherSuites
    const char * enabledCipherSuites
    The list of cipher suites that the client will present to the server during the SSL handshake.
    Definition: MQTTClient.h:697
    writeChar
    void writeChar(char **pptr, char c)
    Writes one character to an output buffer.
    Definition: MQTTPacket.c:438
    MQTTLenString::len
    int len
    the length of the string
    Definition: MQTTProperties.h:86
    -
    MQTTAsync_SSLOptions::privateKeyPassword
    const char * privateKeyPassword
    The password to load the client's privateKey if encrypted.
    Definition: MQTTAsync.h:1071
    -
    MQTTProtocol_retries
    static void MQTTProtocol_retries(START_TIME_TYPE now, Clients *client, int regardless)
    MQTT retry processing per client.
    Definition: MQTTProtocolClient.c:710
    -
    MQTTAsync_disconnectOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:1395
    -
    MQTTPacket_send_subscribe
    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:228
    -
    Thread_wait_cond
    int Thread_wait_cond(cond_type condvar, int timeout)
    Wait with a timeout (seconds) for condition variable.
    Definition: Thread.c:416
    -
    MQTTAsync_disconnectOptions::timeout
    int timeout
    The client delays disconnection for up to this time (in milliseconds) in order to allow in-flight mes...
    Definition: MQTTAsync.h:1400
    +
    MQTTAsync_SSLOptions::privateKeyPassword
    const char * privateKeyPassword
    The password to load the client's privateKey if encrypted.
    Definition: MQTTAsync.h:1075
    +
    MQTTProtocol_retries
    static void MQTTProtocol_retries(START_TIME_TYPE now, Clients *client, int regardless)
    MQTT retry processing per client.
    Definition: MQTTProtocolClient.c:726
    +
    MQTTAsync_disconnectOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:1399
    +
    MQTTPacket_send_subscribe
    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
    +
    Thread_wait_cond
    int Thread_wait_cond(cond_type condvar, int timeout)
    Wait with a timeout (seconds) for condition variable.
    Definition: Thread.c:409
    +
    MQTTAsync_disconnectOptions::timeout
    int timeout
    The client delays disconnection for up to this time (in milliseconds) in order to allow in-flight mes...
    Definition: MQTTAsync.h:1404
    ARRAY_SIZE
    #define ARRAY_SIZE(a)
    Macro to determine the number of elements in a single-dimension array.
    Definition: utf-8.c:37
    -
    MQTTAsync_SSLOptions::enabledCipherSuites
    const char * enabledCipherSuites
    The list of cipher suites that the client will present to the server during the SSL handshake.
    Definition: MQTTAsync.h:1081
    -
    MQTTAsync_failureData5::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:538
    +
    MQTTAsync_SSLOptions::enabledCipherSuites
    const char * enabledCipherSuites
    The list of cipher suites that the client will present to the server during the SSL handshake.
    Definition: MQTTAsync.h:1085
    +
    MQTTAsync_failureData5::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:542
    MQTTClient_SSLOptions::ssl_error_context
    void * ssl_error_context
    Application-specific contex for OpenSSL error handler ERR_print_errors_cb Exists only if struct_versi...
    Definition: MQTTClient.h:732
    -
    MQTTAsync_disconnectOptions::properties
    MQTTProperties properties
    MQTT V5 input properties.
    Definition: MQTTAsync.h:1422
    -
    MQTTAsync_successData5::reasonCode
    enum MQTTReasonCodes reasonCode
    MQTT V5 reason code returned.
    Definition: MQTTAsync.h:593
    +
    MQTTAsync_disconnectOptions::properties
    MQTTProperties properties
    MQTT V5 input properties.
    Definition: MQTTAsync.h:1426
    +
    MQTTAsync_successData5::reasonCode
    enum MQTTReasonCodes reasonCode
    MQTT V5 reason code returned.
    Definition: MQTTAsync.h:597
    MQTTClient_unsubscribeMany
    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:2234
    -
    MQTTClient_setCallbacks
    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:1038
    +
    MQTTClient_setCallbacks
    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:1037
    MQTTAsync_successData5::pub
    struct MQTTAsync_successData5::@4::@6 pub
    For publish, the message being sent to the server.
    SocketBuffer_updateWrite
    pending_writes * SocketBuffer_updateWrite(int socket, char *topic, char *payload)
    Update the queued write data for a socket in the case of QoS 0 messages.
    Definition: SocketBuffer.c:424
    -
    MQTTAsync_createOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:946
    +
    MQTTAsync_createOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:950
    Connect::clientID
    char * clientID
    string client id
    Definition: MQTTPacket.h:121
    MQTTClient_connectOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTClient.h:809
    -
    MQTTAsync_SSLOptions::sslVersion
    int sslVersion
    The SSL/TLS version to use.
    Definition: MQTTAsync.h:1090
    +
    MQTTAsync_SSLOptions::sslVersion
    int sslVersion
    The SSL/TLS version to use.
    Definition: MQTTAsync.h:1094
    MQTTClient_unsubscribe
    int MQTTClient_unsubscribe(MQTTClient handle, const char *topic)
    This function attempts to remove an existing subscription made by the specified client.
    Definition: MQTTClient.c:2251
    Connect::password
    bool password
    3.1 password
    Definition: MQTTPacket.h:114
    Socket_getch
    int Socket_getch(int socket, char *c)
    Reads one byte from a socket.
    Definition: Socket.c:339
    @@ -551,11 +552,11 @@ Functions
    MQTTClient_willOptions::payload
    struct MQTTClient_willOptions::@17 payload
    The LWT payload in binary form.
    Publish::payloadlen
    int payloadlen
    payload length
    Definition: MQTTPacket.h:204
    MQTTAsync_successData::alt
    union MQTTAsync_successData::@1 alt
    A union of the different values that can be returned for subscribe, unsubscribe and publish.
    -
    MQTTAsync_connectOptions::maxInflight
    int maxInflight
    This controls how many messages can be in-flight simultaneously.
    Definition: MQTTAsync.h:1219
    -
    Clients::will
    willMessages * will
    the MQTT will message, if any
    Definition: Clients.h:134
    +
    MQTTAsync_connectOptions::maxInflight
    int maxInflight
    This controls how many messages can be in-flight simultaneously.
    Definition: MQTTAsync.h:1223
    +
    Clients::will
    willMessages * will
    the MQTT will message, if any
    Definition: Clients.h:136
    Connect
    Data for a connect packet.
    Definition: MQTTPacket.h:89
    Socket_continueWrites
    int Socket_continueWrites(fd_set *pwset, int *socket)
    Continue any outstanding writes for a socket set.
    Definition: Socket.c:990
    -
    MQTTAsync_SSLOptions::disableDefaultTrustStore
    int disableDefaultTrustStore
    Don't load default SSL CA.
    Definition: MQTTAsync.h:1136
    +
    MQTTAsync_SSLOptions::disableDefaultTrustStore
    int disableDefaultTrustStore
    Don't load default SSL CA.
    Definition: MQTTAsync.h:1140
    MQTTClient_message::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTClient.h:273
    ListEmpty
    void ListEmpty(List *aList)
    Removes and frees all items in a list, leaving the list ready for new items.
    Definition: LinkedList.c:359
    MQTTClient_init_options::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTClient.h:230
    @@ -563,15 +564,15 @@ Functions
    messageIDCompare
    int messageIDCompare(void *a, void *b)
    List callback function for comparing Message structures by message id.
    Definition: MQTTProtocolClient.c:65
    UTF8_char_validate
    static const char * UTF8_char_validate(int len, const char *data)
    Validate a single UTF-8 character.
    Definition: utf-8.c:76
    MQTTClient_init_options::do_openssl_init
    int do_openssl_init
    1 = we do openssl init, 0 = leave it to the application
    Definition: MQTTClient.h:232
    -
    MQTTAsync_successData5
    The data returned on completion of a successful API call in the response callback onSuccess.
    Definition: MQTTAsync.h:587
    +
    MQTTAsync_successData5
    The data returned on completion of a successful API call in the response callback onSuccess.
    Definition: MQTTAsync.h:591
    isReady
    int isReady(int socket, fd_set *read_set, fd_set *write_set)
    Don't accept work from a client unless it is accepting work back, i.e.
    Definition: Socket.c:222
    -
    MQTTAsync_SSLOptions::CApath
    const char * CApath
    From the OpenSSL documentation: If CApath is not NULL, it points to a directory containing CA certifi...
    Definition: MQTTAsync.h:1104
    +
    MQTTAsync_SSLOptions::CApath
    const char * CApath
    From the OpenSSL documentation: If CApath is not NULL, it points to a directory containing CA certifi...
    Definition: MQTTAsync.h:1108
    MQTTClient_persistence::pkeys
    Persistence_keys pkeys
    A function pointer to an implementation of Persistence_keys().
    Definition: MQTTClientPersistence.h:243
    readChar
    unsigned char readChar(char **pptr)
    Reads one character from the input buffer.
    Definition: MQTTPacket.c:425
    MQTTProperties::max_count
    int max_count
    max number of properties that the currently allocated array can store
    Definition: MQTTProperties.h:115
    heap
    static Tree heap
    Tree that holds the allocation records.
    Definition: Heap.c:79
    MQTTClient_connect5
    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:1670
    -
    MQTTAsync_disconnectOptions
    Options for the ::MQTTAsync_disconnect call.
    Definition: MQTTAsync.h:1390
    +
    MQTTAsync_disconnectOptions
    Options for the ::MQTTAsync_disconnect call.
    Definition: MQTTAsync.h:1394
    MQTTClient_persistence::premove
    Persistence_remove premove
    A function pointer to an implementation of Persistence_remove().
    Definition: MQTTClientPersistence.h:239
    MQTTClient_getVersionInfo
    MQTTClient_nameValue * MQTTClient_getVersionInfo(void)
    This function returns version information about the library.
    Definition: MQTTClient.c:2896
    SocketBuffer_pendingWrite
    int SocketBuffer_pendingWrite(int 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
    @@ -579,7 +580,7 @@ Functions
    Unsuback::properties
    MQTTProperties properties
    MQTT 5.0 properties.
    Definition: MQTTPacket.h:189
    MQTTProtocol_startPublish
    int MQTTProtocol_startPublish(Clients *pubclient, Publish *publish, int qos, int retained, Messages **mm)
    Start a new publish exchange.
    Definition: MQTTProtocolClient.c:163
    MQTTClient_message::payloadlen
    int payloadlen
    The length of the MQTT message payload in bytes.
    Definition: MQTTClient.h:275
    -
    trace_destination
    static FILE * trace_destination
    flag to indicate if trace is to be sent to a stream
    Definition: Log.c:99
    +
    trace_destination
    static FILE * trace_destination
    flag to indicate if trace is to be sent to a stream
    Definition: Log.c:103
    networkHandles
    Definition: Clients.h:78
    SocketBuffer_newDefQ
    int SocketBuffer_newDefQ(void)
    Create a new default queue when one has just been used.
    Definition: SocketBuffer.c:79
    MQTTClient_strerror
    const char * MQTTClient_strerror(int code)
    Returns a pointer to the string representation of the error or NULL.
    Definition: MQTTClient.c:2932
    @@ -589,17 +590,17 @@ Functions
    HeapDump
    int HeapDump(FILE *file)
    Dump the state of the heap.
    Definition: Heap.c:462
    Sockets::clientsds
    List * clientsds
    list of client socket descriptors
    Definition: Socket.h:114
    Clients::username
    const char * username
    MQTT v3.1 user name.
    Definition: Clients.h:120
    -
    ws_frame
    raw websocket frame data
    Definition: WebSocket.c:148
    +
    ws_frame
    raw websocket frame data
    Definition: WebSocket.c:150
    pstcontainskey
    int pstcontainskey(void *handle, char *key)
    Returns whether if a wire message is persisted in the client persistence directory.
    Definition: MQTTPersistenceDefault.c:405
    Header::dup
    bool dup
    DUP flag bit.
    Definition: MQTTPacket.h:79
    willMessages
    Client will message data.
    Definition: Clients.h:69
    -
    Thread_destroy_cond
    int Thread_destroy_cond(cond_type condvar)
    Destroy a condition variable.
    Definition: Thread.c:444
    +
    Thread_destroy_cond
    int Thread_destroy_cond(cond_type condvar)
    Destroy a condition variable.
    Definition: Thread.c:437
    MQTTClient_connectOptions::maxInflightMessages
    int maxInflightMessages
    The maximum number of messages in flight.
    Definition: MQTTClient.h:944
    pstclose
    int pstclose(void *handle)
    Delete client persistence directory (if empty).
    Definition: MQTTPersistenceDefault.c:371
    -
    MQTTAsync_connectOptions::serverURIs
    char *const * serverURIs
    Definition: MQTTAsync.h:1288
    -
    MQTTAsync_connectOptions::maxRetryInterval
    int maxRetryInterval
    Maximum retry interval in seconds.
    Definition: MQTTAsync.h:1307
    +
    MQTTAsync_connectOptions::serverURIs
    char *const * serverURIs
    Definition: MQTTAsync.h:1292
    +
    MQTTAsync_connectOptions::maxRetryInterval
    int maxRetryInterval
    Maximum retry interval in seconds.
    Definition: MQTTAsync.h:1311
    MQTTClient_willOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTClient.h:614
    -
    MQTTAsync_connectOptions::keepAliveInterval
    int keepAliveInterval
    The "keep alive" interval, measured in seconds, defines the maximum time that should pass without com...
    Definition: MQTTAsync.h:1193
    +
    MQTTAsync_connectOptions::keepAliveInterval
    int keepAliveInterval
    The "keep alive" interval, measured in seconds, defines the maximum time that should pass without com...
    Definition: MQTTAsync.h:1197
    ListInsert
    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
    Clients::cleanstart
    unsigned int cleanstart
    MQTT V5 clean start flag.
    Definition: Clients.h:124
    Socket_noPendingWrites
    int Socket_noPendingWrites(int socket)
    Indicate whether any data is pending outbound for a socket.
    Definition: Socket.c:424
    @@ -607,45 +608,45 @@ Functions
    ListPopTail
    void * ListPopTail(List *aList)
    Removes but does not free the last item in a list.
    Definition: LinkedList.c:306
    Suback::header
    Header header
    MQTT header byte.
    Definition: MQTTPacket.h:173
    Publish::payload
    char * payload
    binary payload, length delimited
    Definition: MQTTPacket.h:203
    -
    MQTTAsync_SSLOptions::ssl_psk_context
    void * ssl_psk_context
    Application-specific contex for ssl_psk_cb Exists only if struct_version >= 4.
    Definition: MQTTAsync.h:1129
    +
    MQTTAsync_SSLOptions::ssl_psk_context
    void * ssl_psk_context
    Application-specific contex for ssl_psk_cb Exists only if struct_version >= 4.
    Definition: MQTTAsync.h:1133
    Clients::password
    const void * password
    MQTT v3.1 binary password.
    Definition: Clients.h:122
    SocketBuffer_initialize
    int SocketBuffer_initialize(void)
    Initialize the socketBuffer module.
    Definition: SocketBuffer.c:102
    -
    MQTTPacket_send_pubcomp
    int MQTTPacket_send_pubcomp(int MQTTVersion, int msgid, networkHandles *net, const char *clientID)
    Send an MQTT PUBCOMP packet down a socket.
    Definition: MQTTPacket.c:763
    +
    MQTTPacket_send_pubcomp
    int MQTTPacket_send_pubcomp(int MQTTVersion, int msgid, networkHandles *net, const char *clientID)
    Send an MQTT PUBCOMP packet down a socket.
    Definition: MQTTPacket.c:771
    MQTTClient_willOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTClient.h:618
    -
    Clients::messageQueue
    List * messageQueue
    inbound complete but undelivered messages
    Definition: Clients.h:137
    +
    Clients::messageQueue
    List * messageQueue
    inbound complete but undelivered messages
    Definition: Clients.h:139
    Clients::cleansession
    unsigned int cleansession
    MQTT V3 clean session flag.
    Definition: Clients.h:123
    -
    MQTTAsync_successData5::MQTTVersion
    int MQTTVersion
    the version of MQTT being used
    Definition: MQTTAsync.h:614
    -
    MQTTPacket_send_pubrec
    int MQTTPacket_send_pubrec(int MQTTVersion, int msgid, networkHandles *net, const char *clientID)
    Send an MQTT PUBREC packet down a socket.
    Definition: MQTTPacket.c:722
    +
    MQTTAsync_successData5::MQTTVersion
    int MQTTVersion
    the version of MQTT being used
    Definition: MQTTAsync.h:618
    +
    MQTTPacket_send_pubrec
    int MQTTPacket_send_pubrec(int MQTTVersion, int msgid, networkHandles *net, const char *clientID)
    Send an MQTT PUBREC packet down a socket.
    Definition: MQTTPacket.c:730
    MQTTPacket_send
    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:190
    -
    MQTTAsync_message::msgid
    int msgid
    The message identifier is reserved for internal use by the MQTT client and server.
    Definition: MQTTAsync.h:313
    -
    MQTTAsync_nameValue::value
    const char * value
    value string
    Definition: MQTTAsync.h:1160
    +
    MQTTAsync_message::msgid
    int msgid
    The message identifier is reserved for internal use by the MQTT client and server.
    Definition: MQTTAsync.h:317
    +
    MQTTAsync_nameValue::value
    const char * value
    value string
    Definition: MQTTAsync.h:1164
    Thread_create_sem
    sem_type Thread_create_sem(int *rc)
    Create a new semaphore.
    Definition: Thread.c:190
    MQTTClient_SSLOptions::protos_len
    unsigned int protos_len
    The length of the vector protos vector Exists only if struct_version >= 5.
    Definition: MQTTClient.h:767
    -
    max_lines_per_file
    static int max_lines_per_file
    maximum number of lines to write to one trace file
    Definition: Log.c:103
    +
    max_lines_per_file
    static int max_lines_per_file
    maximum number of lines to write to one trace file
    Definition: Log.c:107
    Tree
    Structure to hold all data for one tree.
    Definition: Tree.h:76
    storageElement::ptr
    void * ptr
    pointer to the allocated storage
    Definition: Heap.c:72
    -
    Clients::outboundMsgs
    List * outboundMsgs
    outbound in flight messages
    Definition: Clients.h:136
    +
    Clients::outboundMsgs
    List * outboundMsgs
    outbound in flight messages
    Definition: Clients.h:138
    storageElement
    Each item on the heap is recorded with this structure.
    Definition: Heap.c:68
    -
    MQTTAsync_connectData::username
    const char * username
    MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
    Definition: MQTTAsync.h:463
    +
    MQTTAsync_connectData::username
    const char * username
    MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
    Definition: MQTTAsync.h:467
    MQTTClient_createOptions
    Options for the MQTTClient_createWithOptions call.
    Definition: MQTTClient.h:536
    Socket_new
    int Socket_new(const char *addr, size_t addr_len, int port, int *sock)
    Create a new socket and TCP connect to an address/port.
    Definition: Socket.c:678
    MQTTProtocol_storePublication
    Publications * MQTTProtocol_storePublication(Publish *publish, int *len)
    Store message data for possible retry.
    Definition: MQTTProtocolClient.c:254
    MQTTClient_SSLOptions::ssl_error_cb
    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:726
    MQTTClient_persistence::popen
    Persistence_open popen
    A function pointer to an implementation of Persistence_open().
    Definition: MQTTClientPersistence.h:223
    -
    Thread_post_sem
    int Thread_post_sem(sem_type sem)
    Post a semaphore.
    Definition: Thread.c:313
    +
    Thread_post_sem
    int Thread_post_sem(sem_type sem)
    Post a semaphore.
    Definition: Thread.c:306
    UTF8_validateString
    int UTF8_validateString(const char *string)
    Validate a null-terminated string has only UTF-8 characters.
    Definition: utf-8.c:156
    MQTTPacket_encode
    int MQTTPacket_encode(char *buf, size_t length)
    Encodes the message length according to the MQTT algorithm.
    Definition: MQTTPacket.c:297
    -
    MQTTAsync_successData::destinationName
    char * destinationName
    the topic destination for the message
    Definition: MQTTAsync.h:573
    -
    MQTTAsync_connectData::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:456
    +
    MQTTAsync_successData::destinationName
    char * destinationName
    the topic destination for the message
    Definition: MQTTAsync.h:577
    +
    MQTTAsync_connectData::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:460
    Clients::connected
    unsigned int connected
    whether it is currently connected
    Definition: Clients.h:125
    ListAppend
    ListElement * ListAppend(List *aList, void *content, size_t size)
    Append an item to a list.
    Definition: LinkedList.c:90
    MQTTProtocol_addressPort
    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:54
    heap_info::current_size
    size_t current_size
    current size of the heap in bytes
    Definition: Heap.h:64
    -
    Clients::beforeWrite_context
    void * beforeWrite_context
    context to be used with the persistence beforeWrite callbacks
    Definition: Clients.h:143
    +
    Clients::beforeWrite_context
    void * beforeWrite_context
    context to be used with the persistence beforeWrite callbacks
    Definition: Clients.h:145
    MQTTSubscribe_options::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTSubscribeOpts.h:38
    ListUnlink
    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
    -
    MQTTAsync_connectOptions::retryInterval
    int retryInterval
    The time interval in seconds after which unacknowledged publish requests are retried during a TCP ses...
    Definition: MQTTAsync.h:1249
    -
    MQTTProtocol_emptyMessageList
    void MQTTProtocol_emptyMessageList(List *msgList)
    Empty a message list, leaving it able to accept new messages.
    Definition: MQTTProtocolClient.c:874
    +
    MQTTAsync_connectOptions::retryInterval
    int retryInterval
    The time interval in seconds after which unacknowledged publish requests are retried during a TCP ses...
    Definition: MQTTAsync.h:1253
    +
    MQTTProtocol_emptyMessageList
    void MQTTProtocol_emptyMessageList(List *msgList)
    Empty a message list, leaving it able to accept new messages.
    Definition: MQTTProtocolClient.c:890
    Header::retain
    bool retain
    retained flag bit
    Definition: MQTTPacket.h:77
    packet_names
    static const char * packet_names[]
    List of the predefined MQTT v3/v5 packet names.
    Definition: MQTTPacket.c:50
    MQTTProtocol_unsubscribe
    int MQTTProtocol_unsubscribe(Clients *client, List *topics, int msgID, MQTTProperties *props)
    MQTT outgoing unsubscribe processing for a client.
    Definition: MQTTProtocolOut.c:413
    @@ -653,69 +654,69 @@ Functions
    PacketBuffers::buffers
    char ** buffers
    number of buffers/buflens/frees
    Definition: Socket.h:99
    readUTFlen
    static char * readUTFlen(char **pptr, char *enddata, int *len)
    Reads a "UTF" string from the input buffer.
    Definition: MQTTPacket.c:380
    MQTTClient_connectOptions::password
    const char * password
    MQTT servers that support the MQTT v3.1.1 protocol provide authentication and authorisation by user n...
    Definition: MQTTClient.h:880
    -
    MQTTPacket_send_unsubscribe
    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:359
    +
    MQTTPacket_send_unsubscribe
    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
    MQTTClient_connectOptions::username
    const char * username
    MQTT servers that support the MQTT v3.1.1 protocol provide authentication and authorisation by user n...
    Definition: MQTTClient.h:874
    Ack
    Data for one of the ack packets.
    Definition: MQTTPacket.h:214
    -
    MQTTStrdup
    char * MQTTStrdup(const char *src)
    Duplicate a string, safely, allocating space on the heap.
    Definition: MQTTProtocolClient.c:937
    +
    MQTTStrdup
    char * MQTTStrdup(const char *src)
    Duplicate a string, safely, allocating space on the heap.
    Definition: MQTTProtocolClient.c:953
    MQTTPacket_header_only
    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:495
    Socket_outTerminate
    void Socket_outTerminate(void)
    Terminate the socket module.
    Definition: Socket.c:152
    MQTTAsync_queuedCommand
    Definition: MQTTAsyncUtils.h:148
    nameToType
    Definition: MQTTProperties.c:28
    -
    MQTTAsync_connectOptions::httpProxy
    const char * httpProxy
    HTTP proxy for websockets.
    Definition: MQTTAsync.h:1346
    +
    MQTTAsync_connectOptions::httpProxy
    const char * httpProxy
    HTTP proxy for websockets.
    Definition: MQTTAsync.h:1350
    MQTTClient_persistence::pcontainskey
    Persistence_containskey pcontainskey
    A function pointer to an implementation of Persistence_containskey().
    Definition: MQTTClientPersistence.h:251
    MQTTSubscribe_options::retainHandling
    unsigned char retainHandling
    0 - send retained messages at the time of the subscribe (original MQTT behaviour) 1 - send retained m...
    Definition: MQTTSubscribeOpts.h:55
    Socket_error
    int Socket_error(char *aString, int sock)
    Gets the specific error corresponding to SOCKET_ERROR.
    Definition: Socket.c:102
    MQTTClient_create
    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:513
    -
    MQTTAsync_disconnectOptions::onSuccess5
    MQTTAsync_onSuccess5 * onSuccess5
    A pointer to a callback function to be called if the disconnect successfully completes.
    Definition: MQTTAsync.h:1432
    +
    MQTTAsync_disconnectOptions::onSuccess5
    MQTTAsync_onSuccess5 * onSuccess5
    A pointer to a callback function to be called if the disconnect successfully completes.
    Definition: MQTTAsync.h:1436
    MQTTPersistence_restoreMessageQueue
    int MQTTPersistence_restoreMessageQueue(Clients *c)
    Restores a queue of messages from persistence to memory.
    Definition: MQTTPersistence.c:856
    Messages_get
    const char * Messages_get(int index, enum LOG_LEVELS log_level)
    Get a log message by its index.
    Definition: Messages.c:94
    -
    MQTTAsync_SSLOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:1055
    +
    MQTTAsync_SSLOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:1059
    readInt
    int readInt(char **pptr)
    Calculates an integer from two bytes read from the input buffer.
    Definition: MQTTPacket.c:359
    trace_settings_type
    Definition: Log.h:55
    TreeAddByIndex
    void * TreeAddByIndex(Tree *aTree, void *content, size_t size, int index)
    Add an item to a tree.
    Definition: Tree.c:210
    networkHandles::websocket
    int websocket
    socket has been upgraded to use web sockets
    Definition: Clients.h:92
    MQTTClient_SSLOptions::privateKeyPassword
    const char * privateKeyPassword
    The password to load the client's privateKey if encrypted.
    Definition: MQTTClient.h:687
    -
    MQTTAsync_init_options
    Initialization options.
    Definition: MQTTAsync.h:217
    +
    MQTTAsync_init_options
    Initialization options.
    Definition: MQTTAsync.h:221
    MQTTClient_persistence::pclear
    Persistence_clear pclear
    A function pointer to an implementation of Persistence_clear().
    Definition: MQTTClientPersistence.h:247
    MQTTPersistence_wrapMsgID
    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
    -
    MQTTAsync_message::qos
    int qos
    The quality of service (QoS) assigned to the message.
    Definition: MQTTAsync.h:281
    -
    MQTTAsync_failureData::token
    MQTTAsync_token token
    A token identifying the failed request.
    Definition: MQTTAsync.h:524
    +
    MQTTAsync_message::qos
    int qos
    The quality of service (QoS) assigned to the message.
    Definition: MQTTAsync.h:285
    +
    MQTTAsync_failureData::token
    MQTTAsync_token token
    A token identifying the failed request.
    Definition: MQTTAsync.h:528
    Publish::msgId
    int msgId
    MQTT message id.
    Definition: MQTTPacket.h:202
    state
    static heap_info state
    global heap state information
    Definition: Heap.c:58
    MQTTClient_connectOptions::retryInterval
    int retryInterval
    The time interval in seconds after which unacknowledged publish requests are retried during a TCP ses...
    Definition: MQTTClient.h:892
    Tree::compare
    int(* compare)(void *, void *, int)
    comparison function
    Definition: Tree.h:81
    -
    MQTTAsync_responseOptions::token
    MQTTAsync_token token
    A token is returned from the call.
    Definition: MQTTAsync.h:724
    +
    MQTTAsync_responseOptions::token
    MQTTAsync_token token
    A token is returned from the call.
    Definition: MQTTAsync.h:728
    Suback::qoss
    List * qoss
    list of granted QoSs (MQTT 3/4) / reason codes (MQTT 5)
    Definition: MQTTPacket.h:177
    -
    MQTTAsync_SSLOptions::protos
    const unsigned char * protos
    The protocol-lists must be in wire-format, which is defined as a vector of non-empty,...
    Definition: MQTTAsync.h:1145
    -
    Thread_lock_mutex
    int Thread_lock_mutex(mutex_type mutex)
    Lock a mutex which has alrea.
    Definition: Thread.c:112
    +
    MQTTAsync_SSLOptions::protos
    const unsigned char * protos
    The protocol-lists must be in wire-format, which is defined as a vector of non-empty,...
    Definition: MQTTAsync.h:1149
    +
    Thread_lock_mutex
    int Thread_lock_mutex(mutex_type mutex)
    Lock a mutex which has alrea.
    Definition: Thread.c:111
    SocketBuffer_queueChar
    void SocketBuffer_queueChar(int socket, char c)
    Queued a Charactor to a specific socket.
    Definition: SocketBuffer.c:303
    pending_socketcompare
    int pending_socketcompare(void *a, void *b)
    List callback function for comparing pending_writes by socket.
    Definition: SocketBuffer.c:388
    -
    Clients::afterRead_context
    void * afterRead_context
    context to be used with the persistence afterRead callback
    Definition: Clients.h:144
    +
    Clients::afterRead_context
    void * afterRead_context
    context to be used with the persistence afterRead callback
    Definition: Clients.h:146
    MQTTClient_unsubscribe5
    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:2242
    -
    Clients::msgID
    int msgID
    the MQTT message id
    Definition: Clients.h:130
    +
    Clients::msgID
    int msgID
    the MQTT message id
    Definition: Clients.h:132
    MQTTClient_SSLOptions::protos
    const unsigned char * protos
    The protocol-lists must be in wire-format, which is defined as a vector of non-empty,...
    Definition: MQTTClient.h:761
    MQTTPersistence_clear
    int MQTTPersistence_clear(Clients *c)
    Clears the persistent store.
    Definition: MQTTPersistence.c:166
    def_queue
    static socket_queue * def_queue
    Default input queue buffer.
    Definition: SocketBuffer.c:45
    Publish::mask
    uint8_t mask[4]
    the websockets mask the payload is masked with, if any
    Definition: MQTTPacket.h:207
    -
    MQTTPacket_send_ack
    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:636
    +
    MQTTPacket_send_ack
    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:644
    Clients::passwordlen
    int passwordlen
    MQTT password length.
    Definition: Clients.h:121
    MQTTClient_message::properties
    MQTTProperties properties
    The MQTT V5 properties associated with the message.
    Definition: MQTTClient.h:325
    -
    MQTTAsync_nameValue::name
    const char * name
    name string
    Definition: MQTTAsync.h:1159
    +
    MQTTAsync_nameValue::name
    const char * name
    name string
    Definition: MQTTAsync.h:1163
    PacketBuffers::frees
    int * frees
    array of lengths of buffers
    Definition: Socket.h:101
    MQTTClient_getPendingDeliveryTokens
    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:2828
    MQTTPersistence_close
    int MQTTPersistence_close(Clients *c)
    Close persistent store.
    Definition: MQTTPersistence.c:137
    -
    MQTTAsync_message::properties
    MQTTProperties properties
    The MQTT V5 properties associated with the message.
    Definition: MQTTAsync.h:317
    +
    MQTTAsync_message::properties
    MQTTProperties properties
    The MQTT V5 properties associated with the message.
    Definition: MQTTAsync.h:321
    Suback::properties
    MQTTProperties properties
    MQTT 5.0 properties.
    Definition: MQTTPacket.h:176
    -
    MQTTAsync_connectOptions::onFailure5
    MQTTAsync_onFailure5 * onFailure5
    A pointer to a callback function to be called if the connect fails.
    Definition: MQTTAsync.h:1338
    +
    MQTTAsync_connectOptions::onFailure5
    MQTTAsync_onFailure5 * onFailure5
    A pointer to a callback function to be called if the connect fails.
    Definition: MQTTAsync.h:1342
    pstremove
    int pstremove(void *handle, char *key)
    Delete a persisted message from the client persistence directory.
    Definition: MQTTPersistenceDefault.c:322
    -
    MQTTAsync_failureData5::properties
    MQTTProperties properties
    The MQTT properties on the ack, if any.
    Definition: MQTTAsync.h:544
    -
    MQTTAsync_connectOptions::willProperties
    MQTTProperties * willProperties
    MQTT V5 properties for the will message in the connect.
    Definition: MQTTAsync.h:1326
    -
    MQTTAsync_successData
    The data returned on completion of a successful API call in the response callback onSuccess.
    Definition: MQTTAsync.h:556
    +
    MQTTAsync_failureData5::properties
    MQTTProperties properties
    The MQTT properties on the ack, if any.
    Definition: MQTTAsync.h:548
    +
    MQTTAsync_connectOptions::willProperties
    MQTTProperties * willProperties
    MQTT V5 properties for the will message in the connect.
    Definition: MQTTAsync.h:1330
    +
    MQTTAsync_successData
    The data returned on completion of a successful API call in the response callback onSuccess.
    Definition: MQTTAsync.h:560
    MQTTClient_persistence
    A structure containing the function pointers to a persistence implementation and the context or state...
    Definition: MQTTClientPersistence.h:215
    -
    Clients::keepAliveInterval
    int keepAliveInterval
    the MQTT keep alive interval
    Definition: Clients.h:131
    +
    Clients::keepAliveInterval
    int keepAliveInterval
    the MQTT keep alive interval
    Definition: Clients.h:133
    MQTTAsync_successData5::sub
    struct MQTTAsync_successData5::@4::@5 sub
    For subscribeMany, the list of reasonCodes returned by the server.
    Unsuback::MQTTVersion
    int MQTTVersion
    the version of MQTT
    Definition: MQTTPacket.h:188
    -
    MQTTAsync_failureData
    The data returned on completion of an unsuccessful API call in the response callback onFailure.
    Definition: MQTTAsync.h:521
    +
    MQTTAsync_failureData
    The data returned on completion of an unsuccessful API call in the response callback onFailure.
    Definition: MQTTAsync.h:525
    Socket_getaddrname
    char * Socket_getaddrname(struct sockaddr *sa, int sock)
    Convert a numeric address to character string.
    Definition: Socket.c:1036
    Header
    Bitfields for the MQTT header byte.
    Definition: MQTTPacket.h:63
    List
    Structure to hold all data for one list.
    Definition: LinkedList.h:67
    @@ -725,38 +726,38 @@ Functions
    cond_type_struct
    Definition: Thread.h:46
    MQTTClient_publish5
    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:2259
    MQTTClient_willOptions::message
    const char * message
    The LWT payload in string form.
    Definition: MQTTClient.h:622
    -
    Clients::beforeWrite
    MQTTPersistence_beforeWrite * beforeWrite
    persistence write callback
    Definition: Clients.h:141
    -
    MQTTAsync_disconnectOptions::reasonCode
    enum MQTTReasonCodes reasonCode
    Reason code for MQTTV5 disconnect.
    Definition: MQTTAsync.h:1426
    +
    Clients::beforeWrite
    MQTTPersistence_beforeWrite * beforeWrite
    persistence write callback
    Definition: Clients.h:143
    +
    MQTTAsync_disconnectOptions::reasonCode
    enum MQTTReasonCodes reasonCode
    Reason code for MQTTV5 disconnect.
    Definition: MQTTAsync.h:1430
    Connack::properties
    MQTTProperties properties
    MQTT 5.0 properties.
    Definition: MQTTPacket.h:155
    MQTTAsync_connectData::binarypwd
    struct MQTTAsync_connectData::@0 binarypwd
    The password parameter of the MQTT authentication.
    MQTTAsync_connectOptions::binarypwd
    struct MQTTAsync_connectOptions::@10 binarypwd
    Optional binary password.
    -
    MQTTPacket_free_packet
    void MQTTPacket_free_packet(MQTTPacket *pack)
    Free allocated storage for a various packet tyoes.
    Definition: MQTTPacket.c:905
    -
    MQTTAsync_connectOptions::httpsProxy
    const char * httpsProxy
    HTTPS proxy for websockets.
    Definition: MQTTAsync.h:1350
    +
    MQTTPacket_free_packet
    void MQTTPacket_free_packet(MQTTPacket *pack)
    Free allocated storage for a various packet tyoes.
    Definition: MQTTPacket.c:921
    +
    MQTTAsync_connectOptions::httpsProxy
    const char * httpsProxy
    HTTPS proxy for websockets.
    Definition: MQTTAsync.h:1354
    mymalloc
    void * mymalloc(char *file, int line, size_t size)
    Allocates a block of memory.
    Definition: Heap.c:158
    len
    int len
    number of elements in the following array (1 to 4)
    Definition: utf-8.c:46
    -
    MQTTAsync_connectOptions
    MQTTAsync_connectOptions defines several settings that control the way the client connects to an MQTT...
    Definition: MQTTAsync.h:1168
    -
    MQTTAsync_responseOptions::context
    void * context
    A pointer to any application-specific context.
    Definition: MQTTAsync.h:718
    +
    MQTTAsync_connectOptions
    MQTTAsync_connectOptions defines several settings that control the way the client connects to an MQTT...
    Definition: MQTTAsync.h:1172
    +
    MQTTAsync_responseOptions::context
    void * context
    A pointer to any application-specific context.
    Definition: MQTTAsync.h:722
    socket_queue::buflen
    size_t buflen
    total length of the buffer
    Definition: SocketBuffer.h:43
    MQTTResponse
    MQTT version 5.0 response information.
    Definition: MQTTClient.h:998
    -
    MQTTAsync_SSLOptions::protos_len
    unsigned int protos_len
    The length of the vector protos vector Exists only if struct_version >= 5.
    Definition: MQTTAsync.h:1151
    +
    MQTTAsync_SSLOptions::protos_len
    unsigned int protos_len
    The length of the vector protos vector Exists only if struct_version >= 5.
    Definition: MQTTAsync.h:1155
    List::last
    ListElement * last
    last element in the list
    Definition: LinkedList.h:70
    MQTTClient_createOptions::struct_id
    char struct_id[4]
    The eyecatcher for this structure.
    Definition: MQTTClient.h:539
    Clients
    Data related to one client.
    Definition: Clients.h:117
    ListFind
    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
    Heap_unlink
    void Heap_unlink(char *file, int line, void *p)
    Remove an item from the recorded heap without actually freeing it.
    Definition: Heap.c:300
    -
    ws_frame::pos
    size_t pos
    current position within the buffer
    Definition: WebSocket.c:151
    -
    Thread_unlock_mutex
    int Thread_unlock_mutex(mutex_type mutex)
    Unlock a mutex which has already been locked.
    Definition: Thread.c:133
    +
    ws_frame::pos
    size_t pos
    current position within the buffer
    Definition: WebSocket.c:153
    +
    Thread_unlock_mutex
    int Thread_unlock_mutex(mutex_type mutex)
    Unlock a mutex which has already been locked.
    Definition: Thread.c:132
    List::first
    ListElement * first
    first element in the list
    Definition: LinkedList.h:69
    new_packets
    pf new_packets[]
    Array of functions to build packets, indexed according to packet code.
    Definition: MQTTPacket.c:73
    MQTTClient_persistence::context
    void * context
    A pointer to any data required to initialize the persistent store.
    Definition: MQTTClientPersistence.h:219
    Heap_initialize
    int Heap_initialize(void)
    Heap initialization.
    Definition: Heap.c:406
    Connect::willTopic
    char * willTopic
    will topic
    Definition: MQTTPacket.h:122
    -
    MQTTAsync_willOptions::data
    const void * data
    binary payload data
    Definition: MQTTAsync.h:1020
    +
    MQTTAsync_willOptions::data
    const void * data
    binary payload data
    Definition: MQTTAsync.h:1024
    Thread_create_mutex
    mutex_type Thread_create_mutex(int *rc)
    Create a new mutex.
    Definition: Thread.c:88
    MQTTSubscribe_options::noLocal
    unsigned char noLocal
    To not receive our own publications, set to 1.
    Definition: MQTTSubscribeOpts.h:45
    -
    MQTTAsync_connectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    A pointer to a callback function to be called if the connect fails.
    Definition: MQTTAsync.h:1266
    -
    MQTTAsync_responseOptions::onFailure5
    MQTTAsync_onFailure5 * onFailure5
    A pointer to a callback function to be called if the API call successfully completes.
    Definition: MQTTAsync.h:736
    -
    MQTTPacket_freePublish
    void MQTTPacket_freePublish(Publish *pack)
    Free allocated storage for a publish packet.
    Definition: MQTTPacket.c:601
    +
    MQTTAsync_connectOptions::onFailure
    MQTTAsync_onFailure * onFailure
    A pointer to a callback function to be called if the connect fails.
    Definition: MQTTAsync.h:1270
    +
    MQTTAsync_responseOptions::onFailure5
    MQTTAsync_onFailure5 * onFailure5
    A pointer to a callback function to be called if the API call successfully completes.
    Definition: MQTTAsync.h:740
    +
    MQTTPacket_freePublish
    void MQTTPacket_freePublish(Publish *pack)
    Free allocated storage for a publish packet.
    Definition: MQTTPacket.c:609
    writeUTF
    void writeUTF(char **pptr, const char *string)
    Writes a "UTF" string to an output buffer.
    Definition: MQTTPacket.c:464
    ListPrevElement
    ListElement * ListPrevElement(List *aList, ListElement **pos)
    Backward iteration through a list.
    Definition: LinkedList.c:424
    MQTTProperties::count
    int count
    number of property entries in the array
    Definition: MQTTProperties.h:114
    @@ -765,60 +766,61 @@ Functions
    Connect::Protocol
    char * Protocol
    MQTT protocol name.
    Definition: MQTTPacket.h:120
    MQTTPacket_name
    const char * MQTTPacket_name(int ptype)
    Converts an MQTT packet code into its name.
    Definition: MQTTPacket.c:65
    writeInt
    void writeInt(char **pptr, int anInt)
    Writes an integer as 2 bytes to an output buffer.
    Definition: MQTTPacket.c:450
    -
    MQTTPacket_send_pubrel
    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:743
    +
    MQTTPacket_send_pubrel
    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:751
    MQTTProperties::array
    MQTTProperty * array
    array of properties
    Definition: MQTTProperties.h:117
    -
    Log_stackTrace
    void Log_stackTrace(enum LOG_LEVELS log_level, int msgno, int 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:452
    +
    Log_stackTrace
    void Log_stackTrace(enum LOG_LEVELS log_level, int msgno, int 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
    MQTTClient_freeMessage
    void MQTTClient_freeMessage(MQTTClient_message **message)
    This function frees memory allocated to an MQTT message, including the additional memory allocated to...
    Definition: MQTTClient.c:607
    -
    MQTTAsync_connectOptions::data
    const void * data
    binary password data
    Definition: MQTTAsync.h:1313
    +
    MQTTAsync_connectOptions::data
    const void * data
    binary password data
    Definition: MQTTAsync.h:1317
    Connack::flags
    union Connack::@23 flags
    connack flags byte
    Header::byte
    char byte
    the whole byte
    Definition: MQTTPacket.h:65
    threadEntry
    Definition: StackTrace.c:53
    MQTTAsync_command::MQTTVersion
    int MQTTVersion
    current MQTT version being used to connect
    Definition: MQTTAsyncUtils.h:83
    -
    trace_destination_name
    static char * trace_destination_name
    the name of the trace file
    Definition: Log.c:100
    -
    MQTTAsync_successData5::message
    MQTTAsync_message message
    the message being sent to the server
    Definition: MQTTAsync.h:607
    +
    trace_destination_name
    static char * trace_destination_name
    the name of the trace file
    Definition: Log.c:104
    +
    MQTTAsync_successData5::message
    MQTTAsync_message message
    the message being sent to the server
    Definition: MQTTAsync.h:611
    upper
    char upper
    upper limit of valid range
    Definition: utf-8.c:50
    MQTTClient_message::retained
    int retained
    The retained flag serves two purposes depending on whether the message it is associated with is being...
    Definition: MQTTClient.h:310
    ListDetachItem
    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
    MQTTClient_connect
    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:1656
    SocketBuffer_interrupted
    void SocketBuffer_interrupted(int socket, size_t actual_len)
    A socket read was interrupted so we need to queue data.
    Definition: SocketBuffer.c:252
    -
    MQTTAsync_successData5::reasonCodeCount
    int reasonCodeCount
    the number of reason codes in the reasonCodes array
    Definition: MQTTAsync.h:601
    +
    MQTTAsync_successData5::reasonCodeCount
    int reasonCodeCount
    the number of reason codes in the reasonCodes array
    Definition: MQTTAsync.h:605
    MQTTClient_SSLOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTClient.h:671
    Internal_heap_unlink
    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
    FindString
    char * FindString(char *filename, const char *eyecatcher_input)
    Finds an eyecatcher in a binary file and returns the following value.
    Definition: MQTTVersion.c:74
    -
    MQTTAsync_responseOptions::properties
    MQTTProperties properties
    MQTT V5 input properties.
    Definition: MQTTAsync.h:740
    +
    MQTTAsync_responseOptions::properties
    MQTTProperties properties
    MQTT V5 input properties.
    Definition: MQTTAsync.h:744
    Persistence_open
    int(* Persistence_open)(void **handle, const char *clientID, const char *serverURI, void *context)
    Initialize the persistent store.
    Definition: MQTTClientPersistence.h:113
    -
    traceEntry
    Definition: Log.c:76
    +
    traceEntry
    Definition: Log.c:80
    MQTTPacket_Factory
    void * MQTTPacket_Factory(int MQTTVersion, networkHandles *net, int *error)
    Reads one MQTT packet from a socket.
    Definition: MQTTPacket.c:103
    MQTTClient_SSLOptions::sslVersion
    int sslVersion
    The SSL/TLS version to use.
    Definition: MQTTClient.h:706
    pstopen
    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
    SHA_CTX_S
    Definition: SHA1.h:39
    MQTTClient_waitForCompletion
    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:2786
    MQTTAsync_struct
    Definition: MQTTAsyncUtils.h:88
    -
    MQTTAsync_init_options::do_openssl_init
    int do_openssl_init
    1 = we do openssl init, 0 = leave it to the application
    Definition: MQTTAsync.h:224
    -
    MQTTPacket_VBIdecode
    int MQTTPacket_VBIdecode(int(*getcharfn)(char *, int), unsigned int *value)
    Decodes the message length according to the MQTT algorithm.
    Definition: MQTTPacket.c:1012
    +
    MQTTAsync_init_options::do_openssl_init
    int do_openssl_init
    1 = we do openssl init, 0 = leave it to the application
    Definition: MQTTAsync.h:228
    +
    MQTTPacket_VBIdecode
    int MQTTPacket_VBIdecode(int(*getcharfn)(char *, int), unsigned int *value)
    Decodes the message length according to the MQTT algorithm.
    Definition: MQTTPacket.c:1028
    Socket_getdata
    char * Socket_getdata(int 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:377
    MQTTResponse_free
    void MQTTResponse_free(MQTTResponse response)
    Frees the storage associated with the MQTT response.
    Definition: MQTTClient.c:626
    Publish::header
    Header header
    MQTT header byte.
    Definition: MQTTPacket.h:199
    -
    MQTTAsync_connectOptions::automaticReconnect
    int automaticReconnect
    Reconnect automatically in the case of a connection being lost?
    Definition: MQTTAsync.h:1299
    +
    MQTTAsync_connectOptions::automaticReconnect
    int automaticReconnect
    Reconnect automatically in the case of a connection being lost?
    Definition: MQTTAsync.h:1303
    Socket_addSocket
    int Socket_addSocket(int newSd)
    Add a socket to the list of socket to check with select.
    Definition: Socket.c:170
    -
    MQTTAsync_responseOptions::onSuccess5
    MQTTAsync_onSuccess5 * onSuccess5
    A pointer to a callback function to be called if the API call successfully completes.
    Definition: MQTTAsync.h:730
    +
    MQTTAsync_responseOptions::onSuccess5
    MQTTAsync_onSuccess5 * onSuccess5
    A pointer to a callback function to be called if the API call successfully completes.
    Definition: MQTTAsync.h:734
    pstmkdir
    int pstmkdir(char *pPathname)
    Function to create a directory.
    Definition: MQTTPersistenceDefault.c:165
    MQTTPersistence_beforeWrite
    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
    -
    MQTTAsync_message::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:263
    -
    writeInt4
    void writeInt4(char **pptr, int anInt)
    Writes an integer as 4 bytes to an output buffer.
    Definition: MQTTPacket.c:925
    +
    MQTTAsync_message::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:267
    +
    writeInt4
    void writeInt4(char **pptr, int anInt)
    Writes an integer as 4 bytes to an output buffer.
    Definition: MQTTPacket.c:941
    ListFree
    void ListFree(List *aList)
    Removes and frees all items in a list, and frees the list itself.
    Definition: LinkedList.c:381
    Socket_clearPendingWrite
    void Socket_clearPendingWrite(int socket)
    Clear a socket from the pending write list - if one was added with Socket_addPendingWrite.
    Definition: Socket.c:594
    -
    MQTTPacket_send_puback
    int MQTTPacket_send_puback(int MQTTVersion, int msgid, networkHandles *net, const char *clientID)
    Send an MQTT PUBACK packet down a socket.
    Definition: MQTTPacket.c:668
    +
    MQTTPacket_send_puback
    int MQTTPacket_send_puback(int MQTTVersion, int msgid, networkHandles *net, const char *clientID)
    Send an MQTT PUBACK packet down a socket.
    Definition: MQTTPacket.c:676
    storageElement::file
    char * file
    the name of the source file where the storage was allocated
    Definition: Heap.c:70
    MQTTClient_setCommandTimeout
    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:2881
    Persistence_containskey
    int(* Persistence_containskey)(void *handle, char *key)
    Returns whether any data has been persisted using the specified key.
    Definition: MQTTClientPersistence.h:208
    MQTTProtocol_handlePingresps
    int MQTTProtocol_handlePingresps(void *pack, int sock)
    Process an incoming pingresp packet for a socket.
    Definition: MQTTProtocolOut.c:351
    -
    MQTTAsync_willOptions::len
    int len
    binary payload length
    Definition: MQTTAsync.h:1019
    +
    MQTTAsync_willOptions::len
    int len
    binary payload length
    Definition: MQTTAsync.h:1023
    MQTTClient_connectOptions::connectTimeout
    int connectTimeout
    The time interval in seconds to allow a connect to complete.
    Definition: MQTTClient.h:884
    MQTTProtocol_handlePubrels
    int MQTTProtocol_handlePubrels(void *pack, int sock)
    Process an incoming pubrel packet for a socket.
    Definition: MQTTProtocolClient.c:526
    -
    MQTTPacket_send_pingreq
    int MQTTPacket_send_pingreq(networkHandles *net, const char *clientID)
    Send an MQTT PINGREQ packet down a socket.
    Definition: MQTTPacketOut.c:203
    +
    MQTTPacket_send_pingreq
    int MQTTPacket_send_pingreq(networkHandles *net, const char *clientID)
    Send an MQTT PINGREQ packet down a socket.
    Definition: MQTTPacketOut.c:201
    +
    Thread_start
    void Thread_start(thread_fn fn, void *parameter)
    Start a new thread.
    Definition: Thread.c:59
    MQTTAsync_successData5::unsub
    struct MQTTAsync_successData5::@4::@8 unsub
    For unsubscribeMany, the list of reasonCodes returned by the server.
    -
    MQTTAsync_connectOptions::minRetryInterval
    int minRetryInterval
    Minimum retry interval in seconds.
    Definition: MQTTAsync.h:1303
    +
    MQTTAsync_connectOptions::minRetryInterval
    int minRetryInterval
    Minimum retry interval in seconds.
    Definition: MQTTAsync.h:1307
    clientSockCompare
    static int clientSockCompare(void *a, void *b)
    List callback function for comparing clients by socket.
    Definition: MQTTClient.c:666
    MQTTPersistence_restorePacket
    void * MQTTPersistence_restorePacket(int MQTTVersion, char *buffer, size_t buflen)
    Returns a MQTT packet restored from persisted data.
    Definition: MQTTPersistence.c:363
    MQTTProtocol_handlePubcomps
    int MQTTProtocol_handlePubcomps(void *pack, int sock)
    Process an incoming pubcomp packet for a socket.
    Definition: MQTTProtocolClient.c:605
    @@ -832,29 +834,29 @@ Functions
    MQTTProtocol_handlePubacks
    int MQTTProtocol_handlePubacks(void *pack, int sock)
    Process an incoming puback packet for a socket.
    Definition: MQTTProtocolClient.c:411
    ListElementStruct::next
    struct ListElementStruct * next
    pointer to next list element
    Definition: LinkedList.h:75
    Connect::username
    bool username
    3.1 user name
    Definition: MQTTPacket.h:115
    -
    MQTTAsync_message::payloadlen
    int payloadlen
    The length of the MQTT message payload in bytes.
    Definition: MQTTAsync.h:265
    -
    MQTTAsync_init_options::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:222
    +
    MQTTAsync_message::payloadlen
    int payloadlen
    The length of the MQTT message payload in bytes.
    Definition: MQTTAsync.h:269
    +
    MQTTAsync_init_options::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:226
    MQTTPacket_send_disconnect
    int MQTTPacket_send_disconnect(Clients *client, enum MQTTReasonCodes reason, MQTTProperties *props)
    Send an MQTT disconnect packet down a socket.
    Definition: MQTTPacket.c:508
    MQTTProtocol_assignMsgId
    int MQTTProtocol_assignMsgId(Clients *client)
    Assign a new message id for a client.
    Definition: MQTTProtocolClient.c:78
    -
    MQTTAsync_successData5::sessionPresent
    int sessionPresent
    the session present flag returned from the server
    Definition: MQTTAsync.h:615
    +
    MQTTAsync_successData5::sessionPresent
    int sessionPresent
    the session present flag returned from the server
    Definition: MQTTAsync.h:619
    MQTTProperty::data
    MQTTLenString data
    The value of a string property, or the name of a user property.
    Definition: MQTTProperties.h:103
    -
    MQTTAsync_successData::sessionPresent
    int sessionPresent
    the session present flag returned from the server
    Definition: MQTTAsync.h:580
    -
    MQTTAsync_successData5::token
    MQTTAsync_token token
    A token identifying the successful request.
    Definition: MQTTAsync.h:592
    +
    MQTTAsync_successData::sessionPresent
    int sessionPresent
    the session present flag returned from the server
    Definition: MQTTAsync.h:584
    +
    MQTTAsync_successData5::token
    MQTTAsync_token token
    A token identifying the successful request.
    Definition: MQTTAsync.h:596
    myrealloc
    void * myrealloc(char *file, int line, void *p, size_t size)
    Reallocates a block of memory.
    Definition: Heap.c:320
    MQTTAsync_willOptions::payload
    struct MQTTAsync_willOptions::@9 payload
    The LWT payload in binary form.
    ListElementStruct::content
    void * content
    pointer to element content
    Definition: LinkedList.h:76
    -
    MQTTAsync_willOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:1002
    +
    MQTTAsync_willOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:1006
    MQTTPersistence_restorePackets
    int MQTTPersistence_restorePackets(Clients *c)
    Restores the persisted records to the outbound and inbound message queues of the client.
    Definition: MQTTPersistence.c:185
    -
    MQTTAsync_successData5::serverURI
    char * serverURI
    the connection string of the server
    Definition: MQTTAsync.h:613
    +
    MQTTAsync_successData5::serverURI
    char * serverURI
    the connection string of the server
    Definition: MQTTAsync.h:617
    myfree
    void myfree(char *file, int line, void *p)
    Frees a block of memory.
    Definition: Heap.c:277
    -
    MQTTAsync_connectOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:1182
    +
    MQTTAsync_connectOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTAsync.h:1186
    MQTTPacket_decode
    int MQTTPacket_decode(networkHandles *net, size_t *value)
    Decodes the message length according to the MQTT algorithm.
    Definition: MQTTPacket.c:325
    PacketBuffers::buflens
    size_t * buflens
    array of byte buffers
    Definition: Socket.h:100
    Clients::clientID
    char * clientID
    the string id of the client
    Definition: Clients.h:119
    MQTTSubscribe_options
    The MQTT V5 subscribe options, apart from QoS which existed before V5.
    Definition: MQTTSubscribeOpts.h:21
    Connack::MQTTVersion
    unsigned int MQTTVersion
    the version of MQTT
    Definition: MQTTPacket.h:154
    MQTTProtocol
    Definition: MQTTProtocol.h:35
    -
    MQTTAsync_failureData5::token
    MQTTAsync_token token
    A token identifying the failed request.
    Definition: MQTTAsync.h:540
    +
    MQTTAsync_failureData5::token
    MQTTAsync_token token
    A token identifying the failed request.
    Definition: MQTTAsync.h:544
    NodeStruct::parent
    struct NodeStruct * parent
    pointer to parent tree node, in case we need it
    Definition: Tree.h:79
    Messages
    Client publication message data.
    Definition: Clients.h:53
    MQTTClient_createOptions::struct_version
    int struct_version
    The version number of this structure.
    Definition: MQTTClient.h:541
    @@ -862,11 +864,11 @@ Functions
    Connect::willQoS
    unsigned int willQoS
    will QoS value
    Definition: MQTTPacket.h:112
    Heap_findItem
    void * Heap_findItem(void *p)
    Utility to find an item in the heap.
    Definition: Heap.c:368
    Sockets::pending_wset
    fd_set pending_wset
    socket pending write set for select
    Definition: Socket.h:118
    -
    MQTTAsync_successData::qosList
    int * qosList
    For subscribeMany, if more than one subscription was requested, the list of granted QoSs of the subsc...
    Definition: MQTTAsync.h:568
    +
    MQTTAsync_successData::qosList
    int * qosList
    For subscribeMany, if more than one subscription was requested, the list of granted QoSs of the subsc...
    Definition: MQTTAsync.h:572
    Persistence_remove
    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/Clients_8c__incl.map b/docs/MQTTClient_internal/html/Clients_8c__incl.map index 4785aba1..e54be509 100644 --- a/docs/MQTTClient_internal/html/Clients_8c__incl.map +++ b/docs/MQTTClient_internal/html/Clients_8c__incl.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/Clients_8c__incl.png b/docs/MQTTClient_internal/html/Clients_8c__incl.png index 274faae3..52c52df5 100644 Binary files a/docs/MQTTClient_internal/html/Clients_8c__incl.png and b/docs/MQTTClient_internal/html/Clients_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/Heap_8c.html b/docs/MQTTClient_internal/html/Heap_8c.html index e7af39d9..6d6c1446 100644 --- a/docs/MQTTClient_internal/html/Heap_8c.html +++ b/docs/MQTTClient_internal/html/Heap_8c.html @@ -88,11 +88,11 @@ Include dependency graph for Heap.c:
    - - - - - + + + + +
    @@ -214,8 +214,8 @@ Here is the call graph for this function:
    - - + +
    @@ -323,8 +323,8 @@ Here is the call graph for this function:
    - - + +
    @@ -424,8 +424,8 @@ Here is the call graph for this function:
    - - + +
    @@ -529,8 +529,8 @@ Here is the call graph for this function:
    - - + +
    @@ -583,8 +583,8 @@ Here is the call graph for this function:
    - - + +
    @@ -644,8 +644,8 @@ Here is the call graph for this function:
    - - + +
    @@ -706,7 +706,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 d8e8a9c4..9e11ce77 100644 --- a/docs/MQTTClient_internal/html/Heap_8c__incl.map +++ b/docs/MQTTClient_internal/html/Heap_8c__incl.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/Heap_8c__incl.png b/docs/MQTTClient_internal/html/Heap_8c__incl.png index 113a92cf..ed0ab7e0 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 fd880a6a..0b103964 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.png b/docs/MQTTClient_internal/html/Heap_8c_a0f10ff94faca02a6f81953c889802954_cgraph.png index 9423ccb5..325f9397 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 7579e6a3..d3e0ad5b 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.png b/docs/MQTTClient_internal/html/Heap_8c_a25214c297c998eba3cfc8282b1162c69_cgraph.png index 9b587f9d..c33cf8d6 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 0e659060..02445b13 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.png b/docs/MQTTClient_internal/html/Heap_8c_a59e53a989d69c3da767487596d9bfa1f_cgraph.png index 3e112fa4..b08be820 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 9ccc12a7..a80f4b7c 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.png b/docs/MQTTClient_internal/html/Heap_8c_a5f453bffe39551109e282c904a6f2902_cgraph.png index bbd461f2..83180b60 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 7a300775..c420bcf8 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.png b/docs/MQTTClient_internal/html/Heap_8c_a699e6722cc8f195f853f09ac274413a3_cgraph.png index 0baca7fe..30ee599d 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 b2579525..24906b67 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.png b/docs/MQTTClient_internal/html/Heap_8c_aafff91620a02cc5f8160ee55dc1d7bf4_cgraph.png index 8ecf2b8c..0394d8e6 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 5aeb5b73..34b00a38 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c.html +++ b/docs/MQTTClient_internal/html/LinkedList_8c.html @@ -80,9 +80,9 @@ Include dependency graph for LinkedList.c:
    - - - + + +
    @@ -243,8 +243,8 @@ Here is the call graph for this function:
    - - + +
    @@ -341,10 +341,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -424,10 +424,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -499,9 +499,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -554,8 +554,8 @@ Here is the call graph for this function:
    - - + +
    @@ -589,8 +589,8 @@ Here is the call graph for this function:
    - - + +
    @@ -645,8 +645,8 @@ Here is the call graph for this function:
    - - + +
    @@ -705,8 +705,8 @@ Here is the call graph for this function:
    - - + +
    @@ -855,10 +855,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -893,8 +893,8 @@ Here is the call graph for this function:
    - - + +
    @@ -947,10 +947,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -1018,9 +1018,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -1093,7 +1093,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/LinkedList_8c__incl.map b/docs/MQTTClient_internal/html/LinkedList_8c__incl.map index 9b9e0d35..004e314c 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c__incl.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c__incl.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c__incl.png b/docs/MQTTClient_internal/html/LinkedList_8c__incl.png index acf832f5..f61f59b9 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c__incl.png and b/docs/MQTTClient_internal/html/LinkedList_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a276950531b3f54e0dda27d597572c192_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_a276950531b3f54e0dda27d597572c192_cgraph.map index 16b39792..1c16d607 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_a276950531b3f54e0dda27d597572c192_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_a276950531b3f54e0dda27d597572c192_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a276950531b3f54e0dda27d597572c192_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_a276950531b3f54e0dda27d597572c192_cgraph.png index 67572be7..d2829a52 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_a276950531b3f54e0dda27d597572c192_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_a276950531b3f54e0dda27d597572c192_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a27e2cccab9752618ead91eafbe2a9a46_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_a27e2cccab9752618ead91eafbe2a9a46_cgraph.map index 5b43265d..98b4be2e 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_a27e2cccab9752618ead91eafbe2a9a46_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_a27e2cccab9752618ead91eafbe2a9a46_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a27e2cccab9752618ead91eafbe2a9a46_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_a27e2cccab9752618ead91eafbe2a9a46_cgraph.png index 1ad1d650..b7bbe68b 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_a27e2cccab9752618ead91eafbe2a9a46_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_a27e2cccab9752618ead91eafbe2a9a46_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a4bb7c34fe9a5832d65f530091e0fad0d_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_a4bb7c34fe9a5832d65f530091e0fad0d_cgraph.map index e642d044..9d724837 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_a4bb7c34fe9a5832d65f530091e0fad0d_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_a4bb7c34fe9a5832d65f530091e0fad0d_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a4bb7c34fe9a5832d65f530091e0fad0d_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_a4bb7c34fe9a5832d65f530091e0fad0d_cgraph.png index 17a07f44..95904c4d 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_a4bb7c34fe9a5832d65f530091e0fad0d_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_a4bb7c34fe9a5832d65f530091e0fad0d_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a5ee7cd1d29fd9299231d40c011174fcd_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_a5ee7cd1d29fd9299231d40c011174fcd_cgraph.map index 79e716e9..c84f1ad2 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_a5ee7cd1d29fd9299231d40c011174fcd_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_a5ee7cd1d29fd9299231d40c011174fcd_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a5ee7cd1d29fd9299231d40c011174fcd_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_a5ee7cd1d29fd9299231d40c011174fcd_cgraph.png index cf9a1dab..cdfc4598 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_a5ee7cd1d29fd9299231d40c011174fcd_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_a5ee7cd1d29fd9299231d40c011174fcd_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a8430370b2b15c56ec95bb8e7e36753a5_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_a8430370b2b15c56ec95bb8e7e36753a5_cgraph.map index e99dabfa..6ef013c7 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_a8430370b2b15c56ec95bb8e7e36753a5_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_a8430370b2b15c56ec95bb8e7e36753a5_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a8430370b2b15c56ec95bb8e7e36753a5_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_a8430370b2b15c56ec95bb8e7e36753a5_cgraph.png index d049c5f8..496fee99 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_a8430370b2b15c56ec95bb8e7e36753a5_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_a8430370b2b15c56ec95bb8e7e36753a5_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a9ed745f7ba486d16d009e86433fece7b_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_a9ed745f7ba486d16d009e86433fece7b_cgraph.map index cc6e4b90..5d33b2bc 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_a9ed745f7ba486d16d009e86433fece7b_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_a9ed745f7ba486d16d009e86433fece7b_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_a9ed745f7ba486d16d009e86433fece7b_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_a9ed745f7ba486d16d009e86433fece7b_cgraph.png index f199c0ac..42c65fab 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_a9ed745f7ba486d16d009e86433fece7b_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_a9ed745f7ba486d16d009e86433fece7b_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_aabca387fa4b86475bc9e4da40c3977fc_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_aabca387fa4b86475bc9e4da40c3977fc_cgraph.map index b329da16..9137c993 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_aabca387fa4b86475bc9e4da40c3977fc_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_aabca387fa4b86475bc9e4da40c3977fc_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_aabca387fa4b86475bc9e4da40c3977fc_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_aabca387fa4b86475bc9e4da40c3977fc_cgraph.png index 3f3b7479..716771a5 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_aabca387fa4b86475bc9e4da40c3977fc_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_aabca387fa4b86475bc9e4da40c3977fc_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_ab2bcc1897abf1d98490ea81c474dba52_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_ab2bcc1897abf1d98490ea81c474dba52_cgraph.map index 171afb16..74c0cabe 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_ab2bcc1897abf1d98490ea81c474dba52_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_ab2bcc1897abf1d98490ea81c474dba52_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_ab2bcc1897abf1d98490ea81c474dba52_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_ab2bcc1897abf1d98490ea81c474dba52_cgraph.png index 58c23845..01155d12 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_ab2bcc1897abf1d98490ea81c474dba52_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_ab2bcc1897abf1d98490ea81c474dba52_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_ab82181e0c1d96954f82dee67cee41296_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_ab82181e0c1d96954f82dee67cee41296_cgraph.map index f998b4fb..60006e26 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_ab82181e0c1d96954f82dee67cee41296_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_ab82181e0c1d96954f82dee67cee41296_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_ab82181e0c1d96954f82dee67cee41296_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_ab82181e0c1d96954f82dee67cee41296_cgraph.png index bfef95b9..3bacb712 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_ab82181e0c1d96954f82dee67cee41296_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_ab82181e0c1d96954f82dee67cee41296_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_abc7a28449893dfa775c2f709349968b4_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_abc7a28449893dfa775c2f709349968b4_cgraph.map index 190046b9..16bd0ef6 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_abc7a28449893dfa775c2f709349968b4_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_abc7a28449893dfa775c2f709349968b4_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_abc7a28449893dfa775c2f709349968b4_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_abc7a28449893dfa775c2f709349968b4_cgraph.png index 90626c01..a8d2a633 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_abc7a28449893dfa775c2f709349968b4_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_abc7a28449893dfa775c2f709349968b4_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_acad319e9ce896ff1fff30ddbeb06d22d_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_acad319e9ce896ff1fff30ddbeb06d22d_cgraph.map index ea3386b0..27548558 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_acad319e9ce896ff1fff30ddbeb06d22d_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_acad319e9ce896ff1fff30ddbeb06d22d_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_acad319e9ce896ff1fff30ddbeb06d22d_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_acad319e9ce896ff1fff30ddbeb06d22d_cgraph.png index 5e9e5e72..daecb09d 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_acad319e9ce896ff1fff30ddbeb06d22d_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_acad319e9ce896ff1fff30ddbeb06d22d_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_ad2879a10b723fb7c1f95c0ad0abdbc50_cgraph.map b/docs/MQTTClient_internal/html/LinkedList_8c_ad2879a10b723fb7c1f95c0ad0abdbc50_cgraph.map index c52b5b68..5322fa0d 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c_ad2879a10b723fb7c1f95c0ad0abdbc50_cgraph.map +++ b/docs/MQTTClient_internal/html/LinkedList_8c_ad2879a10b723fb7c1f95c0ad0abdbc50_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/LinkedList_8c_ad2879a10b723fb7c1f95c0ad0abdbc50_cgraph.png b/docs/MQTTClient_internal/html/LinkedList_8c_ad2879a10b723fb7c1f95c0ad0abdbc50_cgraph.png index c68eb433..d4b0f089 100644 Binary files a/docs/MQTTClient_internal/html/LinkedList_8c_ad2879a10b723fb7c1f95c0ad0abdbc50_cgraph.png and b/docs/MQTTClient_internal/html/LinkedList_8c_ad2879a10b723fb7c1f95c0ad0abdbc50_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Log_8c.html b/docs/MQTTClient_internal/html/Log_8c.html index 7384b1f4..770687d8 100644 --- a/docs/MQTTClient_internal/html/Log_8c.html +++ b/docs/MQTTClient_internal/html/Log_8c.html @@ -95,15 +95,15 @@ Include dependency graph for Log.c:
    - - - - - - - - - + + + + + + + + +
    @@ -359,7 +359,11 @@ static mutex_type 
    log_mute
    Initial value:
    =
    {
    +
    +
    +
    TRACE_MINIMUM,
    +
    400,
    INVALID_LEVEL
    }
    @@ -369,7 +373,7 @@ static mutex_type 
    log_mute diff --git a/docs/MQTTClient_internal/html/Log_8c__incl.map b/docs/MQTTClient_internal/html/Log_8c__incl.map index 5787ee9e..c444a074 100644 --- a/docs/MQTTClient_internal/html/Log_8c__incl.map +++ b/docs/MQTTClient_internal/html/Log_8c__incl.map @@ -1,11 +1,11 @@ - - - - - - - - - + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Log_8c__incl.png b/docs/MQTTClient_internal/html/Log_8c__incl.png index a4fb7e71..9bdaa236 100644 Binary files a/docs/MQTTClient_internal/html/Log_8c__incl.png and b/docs/MQTTClient_internal/html/Log_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClientPersistence_8h.html b/docs/MQTTClient_internal/html/MQTTClientPersistence_8h.html index cd2ac632..a930472f 100644 --- a/docs/MQTTClient_internal/html/MQTTClientPersistence_8h.html +++ b/docs/MQTTClient_internal/html/MQTTClientPersistence_8h.html @@ -78,8 +78,8 @@ This graph shows which files directly or indirectly include this file:
    - - + +
    @@ -403,7 +403,7 @@ Typedefs diff --git a/docs/MQTTClient_internal/html/MQTTClientPersistence_8h__dep__incl.map b/docs/MQTTClient_internal/html/MQTTClientPersistence_8h__dep__incl.map index 1a12f537..94b4cc65 100644 --- a/docs/MQTTClient_internal/html/MQTTClientPersistence_8h__dep__incl.map +++ b/docs/MQTTClient_internal/html/MQTTClientPersistence_8h__dep__incl.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTClientPersistence_8h__dep__incl.png b/docs/MQTTClient_internal/html/MQTTClientPersistence_8h__dep__incl.png index 599af9ba..24323cdc 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClientPersistence_8h__dep__incl.png and b/docs/MQTTClient_internal/html/MQTTClientPersistence_8h__dep__incl.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c.html b/docs/MQTTClient_internal/html/MQTTClient_8c.html index 0fad9e2d..7feb1f0f 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c.html +++ b/docs/MQTTClient_internal/html/MQTTClient_8c.html @@ -94,11 +94,11 @@ Include dependency graph for MQTTClient.c:
    - - - - - + + + + +
    @@ -664,9 +664,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -743,8 +743,8 @@ Here is the call graph for this function:
    - - + +
    @@ -778,8 +778,8 @@ Here is the call graph for this function:
    - - + +
    @@ -825,8 +825,8 @@ Here is the call graph for this function:
    - - + +
    @@ -924,8 +924,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1002,8 +1002,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1084,9 +1084,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -1174,8 +1174,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1235,10 +1235,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -1298,9 +1298,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -1428,8 +1428,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1520,8 +1520,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1602,8 +1602,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1656,10 +1656,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -1726,9 +1726,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -1788,9 +1788,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -1864,8 +1864,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1911,10 +1911,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -1967,9 +1967,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -2022,9 +2022,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -2084,8 +2084,8 @@ Here is the call graph for this function:
    - - + +
    @@ -2138,8 +2138,8 @@ Here is the call graph for this function:
    - - + +
    @@ -2197,14 +2197,14 @@ Here is the call graph for this function:
    - - - - - - - - + + + + + + + +
    @@ -2267,7 +2267,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c__incl.map b/docs/MQTTClient_internal/html/MQTTClient_8c__incl.map index 99ef7169..a22ac513 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c__incl.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c__incl.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c__incl.png b/docs/MQTTClient_internal/html/MQTTClient_8c__incl.png index 1b986a23..c0f17181 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c__incl.png and b/docs/MQTTClient_internal/html/MQTTClient_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.map index 90773c4f..d0b23e7e 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a1e4d90c13a3c0705bc4a13bfe64e6525_cgraph.png index 83f99a34..8e6b7509 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 e97c4645..ff091cd7 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a2a617c6b0492c04a4ddea592f5e53604_cgraph.png index 61930167..a437828c 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 2e0263cc..458ae50d 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a3c0ca97b393eee10d4f441ba68830e83_cgraph.png index 25f01626..9f9f7db5 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 49fa9eb9..9066ad70 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a3cd7a94b48d1d9c6b8af4b9203d69d37_cgraph.png index b78f7d50..4eeae13f 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 61ce811f..f8a0ee5e 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a46bdb532d2153110ccffb2f0748d1ba5_cgraph.png index 060a65ec..ca764094 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 d89f75fc..cfca563b 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a50abbce720d50b9f84b97ff9fa1f546d_cgraph.png index 10da20a3..027dfefc 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 cd952456..a3aabad0 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a5390c2402f135c12826ffbf6fc261f7c_cgraph.png index 1d029071..a6f3cadd 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 916cf703..eb99c856 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a58356c13867f18df60fd4c7ec9457c48_cgraph.png index 899c7f7f..9adbcc45 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 7dfe951d..7a307099 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a5e0cfa14237d7557bee2a59747ecadd3_cgraph.png index fde735b1..ed7e4dff 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 c3e0071e..66c0f882 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a6e8231e8c47f6f67f7ebbb5dcb4c69c0_cgraph.png index 1e448de6..886d121a 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 0030c50e..e17b1169 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a92fa1c13f3db8399e042fbdbdfb692b3_cgraph.png index acfa332b..10e5e076 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 773ff69c..f8a90480 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a9a0518d9ca924d12c1329dbe3de5f2b6_cgraph.png index ed3671c7..25e7af43 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 e1f1d389..be12d3bb 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a9c1c28258f0d5c6a44ff53a98618f5f3_cgraph.png index a7f27671..95206532 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_a9defda2979f6fedaae64fd85f5c2f617_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_a9defda2979f6fedaae64fd85f5c2f617_cgraph.map index a3f9903d..54a5b12a 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_a9defda2979f6fedaae64fd85f5c2f617_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_a9defda2979f6fedaae64fd85f5c2f617_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_a9defda2979f6fedaae64fd85f5c2f617_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_a9defda2979f6fedaae64fd85f5c2f617_cgraph.png index 93ca4de0..82143714 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_a9defda2979f6fedaae64fd85f5c2f617_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_a9defda2979f6fedaae64fd85f5c2f617_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 392301fd..38c49b07 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_aa8731be3dbc6a25f41f037f8bbbb054b_cgraph.png index 51277a41..1ea24be1 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 52035083..01cd177a 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_aad27d07782991a4937ebf2f39a021f83_cgraph.png index 80f4206d..80414cb9 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 f3248563..b1116796 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_ab8786efdd6c3a50c6ca33cfb5d8fc283_cgraph.png index 02791012..9d485ae7 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_acdcf1aefca1dbb3d1b3d36c9bbaf3760_cgraph.map b/docs/MQTTClient_internal/html/MQTTClient_8c_acdcf1aefca1dbb3d1b3d36c9bbaf3760_cgraph.map index 245d1ded..a237652c 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c_acdcf1aefca1dbb3d1b3d36c9bbaf3760_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTClient_8c_acdcf1aefca1dbb3d1b3d36c9bbaf3760_cgraph.map @@ -1,10 +1,10 @@ - - - - - - - - + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c_acdcf1aefca1dbb3d1b3d36c9bbaf3760_cgraph.png b/docs/MQTTClient_internal/html/MQTTClient_8c_acdcf1aefca1dbb3d1b3d36c9bbaf3760_cgraph.png index 52e4cec1..12d674cd 100644 Binary files a/docs/MQTTClient_internal/html/MQTTClient_8c_acdcf1aefca1dbb3d1b3d36c9bbaf3760_cgraph.png and b/docs/MQTTClient_internal/html/MQTTClient_8c_acdcf1aefca1dbb3d1b3d36c9bbaf3760_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 2b1c9ba7..88c95298 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_adc7d708419664670063a0e7fd9c27bca_cgraph.png index 1ef505a6..7b8219fa 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 e76b837d..bf7ded13 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_ade24f717a9b39d38b081e1d5e0db1661_cgraph.png index b847e7d3..f3164357 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 e5a71c04..3dd65227 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_ae54936bf7680dcde353e6fc785a44461_cgraph.png index 8126e197..5ea426ac 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 2572ec41..3588d462 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_ae700c3f5cfea3813264ce95e7c8cf498_cgraph.png index 73b3ac0e..dec6c835 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 1a4ae024..bf5cb7c1 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.png b/docs/MQTTClient_internal/html/MQTTClient_8c_af35ab7375435f7b6388c5ff4610dad3d_cgraph.png index baf1b7b5..f6da2a97 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 be4b65f3..7a0263fb 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c.html @@ -82,9 +82,9 @@ Include dependency graph for MQTTPacketOut.c:
    - - - + + +
    @@ -173,8 +173,8 @@ Here is the call graph for this function:
    - - + +
    @@ -260,16 +260,16 @@ Here is the call graph for this function:
    - - - - - - - - - - + + + + + + + + + +
    @@ -315,12 +315,12 @@ Here is the call graph for this function:
    - - - - - - + + + + + +
    @@ -400,16 +400,16 @@ Here is the call graph for this function:
    - - - - - - - - - - + + + + + + + + + +
    @@ -476,15 +476,15 @@ Here is the call graph for this function:
    - - - - - - - - - + + + + + + + + +
    @@ -544,15 +544,15 @@ Here is the call graph for this function:
    - - - - - - - - - + + + + + + + + +
    @@ -612,15 +612,15 @@ Here is the call graph for this function:
    - - - - - - - - - + + + + + + + + +
    @@ -629,7 +629,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c__incl.map b/docs/MQTTClient_internal/html/MQTTPacketOut_8c__incl.map index 1442a565..badae6d2 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c__incl.map +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c__incl.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c__incl.png b/docs/MQTTClient_internal/html/MQTTPacketOut_8c__incl.png index 063eedab..d38205bc 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacketOut_8c__incl.png and b/docs/MQTTClient_internal/html/MQTTPacketOut_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a1ad4c9b76c6ab88c394ee925eb4dcd44_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a1ad4c9b76c6ab88c394ee925eb4dcd44_cgraph.map index d5476748..2c61b581 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a1ad4c9b76c6ab88c394ee925eb4dcd44_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a1ad4c9b76c6ab88c394ee925eb4dcd44_cgraph.map @@ -1,11 +1,11 @@ - - - - - - - - - + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a1ad4c9b76c6ab88c394ee925eb4dcd44_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a1ad4c9b76c6ab88c394ee925eb4dcd44_cgraph.png index af65f799..9cb910bb 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a1ad4c9b76c6ab88c394ee925eb4dcd44_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a1ad4c9b76c6ab88c394ee925eb4dcd44_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a90212ed29c311f52a1dce0617133b1a7_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a90212ed29c311f52a1dce0617133b1a7_cgraph.map index 742d67c3..94771f40 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a90212ed29c311f52a1dce0617133b1a7_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a90212ed29c311f52a1dce0617133b1a7_cgraph.map @@ -1,12 +1,12 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a90212ed29c311f52a1dce0617133b1a7_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a90212ed29c311f52a1dce0617133b1a7_cgraph.png index c5227988..df8550f1 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a90212ed29c311f52a1dce0617133b1a7_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a90212ed29c311f52a1dce0617133b1a7_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a93f6aa4b23d30f6c8c5be87b0b58e37c_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a93f6aa4b23d30f6c8c5be87b0b58e37c_cgraph.map index 57e2e8fa..4ce6da62 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a93f6aa4b23d30f6c8c5be87b0b58e37c_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a93f6aa4b23d30f6c8c5be87b0b58e37c_cgraph.map @@ -1,11 +1,11 @@ - - - - - - - - - + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a93f6aa4b23d30f6c8c5be87b0b58e37c_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a93f6aa4b23d30f6c8c5be87b0b58e37c_cgraph.png index 406240c4..588664ff 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a93f6aa4b23d30f6c8c5be87b0b58e37c_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_a93f6aa4b23d30f6c8c5be87b0b58e37c_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_acf4b3402e224ac22ffbe74731f374fe0_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_acf4b3402e224ac22ffbe74731f374fe0_cgraph.map index 178bb9f5..e16b4715 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_acf4b3402e224ac22ffbe74731f374fe0_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_acf4b3402e224ac22ffbe74731f374fe0_cgraph.map @@ -1,8 +1,8 @@ - - - - - - + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_acf4b3402e224ac22ffbe74731f374fe0_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_acf4b3402e224ac22ffbe74731f374fe0_cgraph.png index a1b05b2b..9607ea7a 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_acf4b3402e224ac22ffbe74731f374fe0_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_acf4b3402e224ac22ffbe74731f374fe0_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad05dd32a547e82e0741d9d8279568a65_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad05dd32a547e82e0741d9d8279568a65_cgraph.map index 7823ae9e..edfc2a0c 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad05dd32a547e82e0741d9d8279568a65_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad05dd32a547e82e0741d9d8279568a65_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad05dd32a547e82e0741d9d8279568a65_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad05dd32a547e82e0741d9d8279568a65_cgraph.png index d9020474..70623392 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad05dd32a547e82e0741d9d8279568a65_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad05dd32a547e82e0741d9d8279568a65_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad3c3f0919760286998e9b9eafaa47a36_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad3c3f0919760286998e9b9eafaa47a36_cgraph.map index 444ec719..2ffded98 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad3c3f0919760286998e9b9eafaa47a36_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad3c3f0919760286998e9b9eafaa47a36_cgraph.map @@ -1,12 +1,12 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad3c3f0919760286998e9b9eafaa47a36_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad3c3f0919760286998e9b9eafaa47a36_cgraph.png index 9a860e67..35791906 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad3c3f0919760286998e9b9eafaa47a36_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_ad3c3f0919760286998e9b9eafaa47a36_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_aee4b3e106128629671828ae7bfa70850_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_aee4b3e106128629671828ae7bfa70850_cgraph.map index a625d021..4eb09609 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_aee4b3e106128629671828ae7bfa70850_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_aee4b3e106128629671828ae7bfa70850_cgraph.map @@ -1,11 +1,11 @@ - - - - - - - - - + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_aee4b3e106128629671828ae7bfa70850_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_aee4b3e106128629671828ae7bfa70850_cgraph.png index b072c2f8..87705969 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacketOut_8c_aee4b3e106128629671828ae7bfa70850_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacketOut_8c_aee4b3e106128629671828ae7bfa70850_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c.html b/docs/MQTTClient_internal/html/MQTTPacket_8c.html index 7e50e09c..d3820852 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c.html @@ -88,9 +88,9 @@ Include dependency graph for MQTTPacket.c:
    - - - + + +
    @@ -293,9 +293,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -423,11 +423,11 @@ Here is the call graph for this function:
    - - - - - + + + + +
    @@ -461,8 +461,8 @@ Here is the call graph for this function:
    - - + +
    @@ -548,9 +548,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -584,9 +584,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -725,9 +725,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -800,10 +800,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -878,12 +878,12 @@ Here is the call graph for this function:
    - - - - - - + + + + + +
    @@ -934,13 +934,13 @@ Here is the call graph for this function:
    - - - - - - - + + + + + + +
    @@ -1000,14 +1000,14 @@ Here is the call graph for this function:
    - - - - - - - - + + + + + + + +
    @@ -1067,14 +1067,14 @@ Here is the call graph for this function:
    - - - - - - - - + + + + + + + +
    @@ -1148,13 +1148,13 @@ Here is the call graph for this function:
    - - - - - - - + + + + + + +
    @@ -1214,14 +1214,14 @@ Here is the call graph for this function:
    - - - - - - - - + + + + + + + +
    @@ -1288,14 +1288,14 @@ Here is the call graph for this function:
    - - - - - - - - + + + + + + + +
    @@ -1357,10 +1357,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -1525,9 +1525,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -1588,8 +1588,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1678,8 +1678,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1798,8 +1798,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1872,15 +1872,15 @@ 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:292
    -
    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:783
    +
    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:791
    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:408
    +
    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:495
    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:553
    diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c__incl.map b/docs/MQTTClient_internal/html/MQTTPacket_8c__incl.map index 265f1f75..e338e41d 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c__incl.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c__incl.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c__incl.png b/docs/MQTTClient_internal/html/MQTTPacket_8c__incl.png index 0dbd10ea..0b2c7d2e 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c__incl.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a28f1754fe1f090d54bc3b5687fb2dd8c_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a28f1754fe1f090d54bc3b5687fb2dd8c_cgraph.map index f1daa0c3..58370205 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a28f1754fe1f090d54bc3b5687fb2dd8c_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a28f1754fe1f090d54bc3b5687fb2dd8c_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a28f1754fe1f090d54bc3b5687fb2dd8c_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a28f1754fe1f090d54bc3b5687fb2dd8c_cgraph.png index fb6194bb..5d2496ee 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a28f1754fe1f090d54bc3b5687fb2dd8c_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a28f1754fe1f090d54bc3b5687fb2dd8c_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a3635fd8035177b20c478daea6bad9328_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a3635fd8035177b20c478daea6bad9328_cgraph.map index e2fc06a8..514723bb 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a3635fd8035177b20c478daea6bad9328_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a3635fd8035177b20c478daea6bad9328_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a3635fd8035177b20c478daea6bad9328_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a3635fd8035177b20c478daea6bad9328_cgraph.png index 519fa5ad..315431ab 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a3635fd8035177b20c478daea6bad9328_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a3635fd8035177b20c478daea6bad9328_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a4262b8f35885dc123f59268fb74cec3d_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a4262b8f35885dc123f59268fb74cec3d_cgraph.map index 35a14b80..05b91703 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a4262b8f35885dc123f59268fb74cec3d_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a4262b8f35885dc123f59268fb74cec3d_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a4262b8f35885dc123f59268fb74cec3d_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a4262b8f35885dc123f59268fb74cec3d_cgraph.png index 6eae0fb5..916e1d59 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a4262b8f35885dc123f59268fb74cec3d_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a4262b8f35885dc123f59268fb74cec3d_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a51f58f1c7864f9fe87b55cc6ccb10129_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a51f58f1c7864f9fe87b55cc6ccb10129_cgraph.map index aefac249..177103fe 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a51f58f1c7864f9fe87b55cc6ccb10129_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a51f58f1c7864f9fe87b55cc6ccb10129_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a51f58f1c7864f9fe87b55cc6ccb10129_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a51f58f1c7864f9fe87b55cc6ccb10129_cgraph.png index 47fec1fe..e973382a 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a51f58f1c7864f9fe87b55cc6ccb10129_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a51f58f1c7864f9fe87b55cc6ccb10129_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a58feb89ee5616f2ea6d222bbbef927bb_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a58feb89ee5616f2ea6d222bbbef927bb_cgraph.map index eb955e0e..71731449 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a58feb89ee5616f2ea6d222bbbef927bb_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a58feb89ee5616f2ea6d222bbbef927bb_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a58feb89ee5616f2ea6d222bbbef927bb_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a58feb89ee5616f2ea6d222bbbef927bb_cgraph.png index 28edf4d4..b0ab10ee 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a58feb89ee5616f2ea6d222bbbef927bb_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a58feb89ee5616f2ea6d222bbbef927bb_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8167e3188a4bdcfb30c10e0d76c82afe_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8167e3188a4bdcfb30c10e0d76c82afe_cgraph.map index cb4304e4..7037ce1b 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8167e3188a4bdcfb30c10e0d76c82afe_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8167e3188a4bdcfb30c10e0d76c82afe_cgraph.map @@ -1,10 +1,10 @@ - - - - - - - - + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8167e3188a4bdcfb30c10e0d76c82afe_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8167e3188a4bdcfb30c10e0d76c82afe_cgraph.png index 21646297..4c396e01 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8167e3188a4bdcfb30c10e0d76c82afe_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8167e3188a4bdcfb30c10e0d76c82afe_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8886398fbf89872f8e593444d351a5aa_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8886398fbf89872f8e593444d351a5aa_cgraph.map index 4f2ebf73..a54eb5ba 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8886398fbf89872f8e593444d351a5aa_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8886398fbf89872f8e593444d351a5aa_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8886398fbf89872f8e593444d351a5aa_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8886398fbf89872f8e593444d351a5aa_cgraph.png index 570d0f06..ba5e5e55 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8886398fbf89872f8e593444d351a5aa_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8886398fbf89872f8e593444d351a5aa_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8b93325a6a336406497b20b489d6c46a_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8b93325a6a336406497b20b489d6c46a_cgraph.map index 29b50efa..fb605bcd 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8b93325a6a336406497b20b489d6c46a_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8b93325a6a336406497b20b489d6c46a_cgraph.map @@ -1,10 +1,10 @@ - - - - - - - - + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8b93325a6a336406497b20b489d6c46a_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8b93325a6a336406497b20b489d6c46a_cgraph.png index c038af24..bf421c9f 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a8b93325a6a336406497b20b489d6c46a_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a8b93325a6a336406497b20b489d6c46a_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a908f81381b1720e4a53d15c1c4690f5c_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a908f81381b1720e4a53d15c1c4690f5c_cgraph.map index 1e21a2ae..a89657dd 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a908f81381b1720e4a53d15c1c4690f5c_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a908f81381b1720e4a53d15c1c4690f5c_cgraph.map @@ -1,10 +1,10 @@ - - - - - - - - + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a908f81381b1720e4a53d15c1c4690f5c_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a908f81381b1720e4a53d15c1c4690f5c_cgraph.png index f5bf4d85..17592faa 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a908f81381b1720e4a53d15c1c4690f5c_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a908f81381b1720e4a53d15c1c4690f5c_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a93c155059c80bd01b4a1561d9bec1d13_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a93c155059c80bd01b4a1561d9bec1d13_cgraph.map index 91300a4c..af10bb6d 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a93c155059c80bd01b4a1561d9bec1d13_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a93c155059c80bd01b4a1561d9bec1d13_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a93c155059c80bd01b4a1561d9bec1d13_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a93c155059c80bd01b4a1561d9bec1d13_cgraph.png index 1cb37d8b..ae4d94ee 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a93c155059c80bd01b4a1561d9bec1d13_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a93c155059c80bd01b4a1561d9bec1d13_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a9dd0446112e7bc982f8e3bb8bbb6b409_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a9dd0446112e7bc982f8e3bb8bbb6b409_cgraph.map index 89b56082..647fc98d 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a9dd0446112e7bc982f8e3bb8bbb6b409_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a9dd0446112e7bc982f8e3bb8bbb6b409_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a9dd0446112e7bc982f8e3bb8bbb6b409_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a9dd0446112e7bc982f8e3bb8bbb6b409_cgraph.png index 10e86c16..ff771749 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a9dd0446112e7bc982f8e3bb8bbb6b409_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a9dd0446112e7bc982f8e3bb8bbb6b409_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a9ebcf93ff2ba3bd103f016c975e9c9c4_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_a9ebcf93ff2ba3bd103f016c975e9c9c4_cgraph.map index f0d28ea8..3c75b229 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_a9ebcf93ff2ba3bd103f016c975e9c9c4_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_a9ebcf93ff2ba3bd103f016c975e9c9c4_cgraph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_a9ebcf93ff2ba3bd103f016c975e9c9c4_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_a9ebcf93ff2ba3bd103f016c975e9c9c4_cgraph.png index 3637d20d..386a53b9 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_a9ebcf93ff2ba3bd103f016c975e9c9c4_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_a9ebcf93ff2ba3bd103f016c975e9c9c4_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_aa9e17261b4d09d802dba6a65bcdc44fa_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_aa9e17261b4d09d802dba6a65bcdc44fa_cgraph.map index 93ec20c4..f29cc6c9 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_aa9e17261b4d09d802dba6a65bcdc44fa_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_aa9e17261b4d09d802dba6a65bcdc44fa_cgraph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_aa9e17261b4d09d802dba6a65bcdc44fa_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_aa9e17261b4d09d802dba6a65bcdc44fa_cgraph.png index e7003cd1..e8888458 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_aa9e17261b4d09d802dba6a65bcdc44fa_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_aa9e17261b4d09d802dba6a65bcdc44fa_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_ad89e627a37f7f7eb4355b076cd46e0b0_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_ad89e627a37f7f7eb4355b076cd46e0b0_cgraph.map index 26360632..9a85858c 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_ad89e627a37f7f7eb4355b076cd46e0b0_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_ad89e627a37f7f7eb4355b076cd46e0b0_cgraph.map @@ -1,8 +1,8 @@ - - - - - - + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_ad89e627a37f7f7eb4355b076cd46e0b0_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_ad89e627a37f7f7eb4355b076cd46e0b0_cgraph.png index 24832573..105b0147 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_ad89e627a37f7f7eb4355b076cd46e0b0_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_ad89e627a37f7f7eb4355b076cd46e0b0_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_adca3afbe588ae7e6f342c5a697e4ee45_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_adca3afbe588ae7e6f342c5a697e4ee45_cgraph.map index 6c30608c..b37acb9f 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_adca3afbe588ae7e6f342c5a697e4ee45_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_adca3afbe588ae7e6f342c5a697e4ee45_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_adca3afbe588ae7e6f342c5a697e4ee45_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_adca3afbe588ae7e6f342c5a697e4ee45_cgraph.png index c2098cf4..bc16f10e 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_adca3afbe588ae7e6f342c5a697e4ee45_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_adca3afbe588ae7e6f342c5a697e4ee45_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_adec2c812b12255dab78f75163a4f1960_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_adec2c812b12255dab78f75163a4f1960_cgraph.map index 59c28ad8..3b05e5ae 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_adec2c812b12255dab78f75163a4f1960_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_adec2c812b12255dab78f75163a4f1960_cgraph.map @@ -1,10 +1,10 @@ - - - - - - - - + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_adec2c812b12255dab78f75163a4f1960_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_adec2c812b12255dab78f75163a4f1960_cgraph.png index c141fe38..a42c7c15 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_adec2c812b12255dab78f75163a4f1960_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_adec2c812b12255dab78f75163a4f1960_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_ae1ec2d8714335c6ec88c93e957b644d2_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_ae1ec2d8714335c6ec88c93e957b644d2_cgraph.map index b1574994..a4a4405d 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_ae1ec2d8714335c6ec88c93e957b644d2_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_ae1ec2d8714335c6ec88c93e957b644d2_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_ae1ec2d8714335c6ec88c93e957b644d2_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_ae1ec2d8714335c6ec88c93e957b644d2_cgraph.png index 4db663eb..3236468b 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_ae1ec2d8714335c6ec88c93e957b644d2_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_ae1ec2d8714335c6ec88c93e957b644d2_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_af0fcaa11ac05ce448a433a53f9cae420_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_af0fcaa11ac05ce448a433a53f9cae420_cgraph.map index 75a13c3d..8e99f80a 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_af0fcaa11ac05ce448a433a53f9cae420_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_af0fcaa11ac05ce448a433a53f9cae420_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_af0fcaa11ac05ce448a433a53f9cae420_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_af0fcaa11ac05ce448a433a53f9cae420_cgraph.png index 973ffad6..88994618 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_af0fcaa11ac05ce448a433a53f9cae420_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_af0fcaa11ac05ce448a433a53f9cae420_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_af922033c495b05fe4242afc54211f20d_cgraph.map b/docs/MQTTClient_internal/html/MQTTPacket_8c_af922033c495b05fe4242afc54211f20d_cgraph.map index 6f8531c8..64d3ecdc 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c_af922033c495b05fe4242afc54211f20d_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c_af922033c495b05fe4242afc54211f20d_cgraph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPacket_8c_af922033c495b05fe4242afc54211f20d_cgraph.png b/docs/MQTTClient_internal/html/MQTTPacket_8c_af922033c495b05fe4242afc54211f20d_cgraph.png index 4cb8b17b..463603fd 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPacket_8c_af922033c495b05fe4242afc54211f20d_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPacket_8c_af922033c495b05fe4242afc54211f20d_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c.html b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c.html index 757b73d6..9421dee0 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c.html @@ -87,14 +87,14 @@ Include dependency graph for MQTTPersistenceDefault.c:
    - - - - - - - - + + + + + + + +
    @@ -360,8 +360,8 @@ Here is the call graph for this function:
    - - + +
    @@ -418,8 +418,8 @@ Here is the call graph for this function:
    - - + +
    @@ -459,7 +459,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c__incl.map b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c__incl.map index deceeec1..42dfc102 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c__incl.map +++ b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c__incl.map @@ -1,10 +1,10 @@ - - - - - - - - + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c__incl.png b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c__incl.png index 904aa4ef..484585fb 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c__incl.png and b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a64e0c1a2fd06375b975d6643175572d8_cgraph.map b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a64e0c1a2fd06375b975d6643175572d8_cgraph.map index 0f6ceb1f..cc206e50 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a64e0c1a2fd06375b975d6643175572d8_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a64e0c1a2fd06375b975d6643175572d8_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a64e0c1a2fd06375b975d6643175572d8_cgraph.png b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a64e0c1a2fd06375b975d6643175572d8_cgraph.png index 45d2afa6..59f0fef4 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a64e0c1a2fd06375b975d6643175572d8_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a64e0c1a2fd06375b975d6643175572d8_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a919cf4710a1f7d7ce0878599e9aa4700_cgraph.map b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a919cf4710a1f7d7ce0878599e9aa4700_cgraph.map index d5a3ce94..58df3d94 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a919cf4710a1f7d7ce0878599e9aa4700_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a919cf4710a1f7d7ce0878599e9aa4700_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a919cf4710a1f7d7ce0878599e9aa4700_cgraph.png b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a919cf4710a1f7d7ce0878599e9aa4700_cgraph.png index 49d4f7b3..1f57950a 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a919cf4710a1f7d7ce0878599e9aa4700_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c_a919cf4710a1f7d7ce0878599e9aa4700_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c.html b/docs/MQTTClient_internal/html/MQTTPersistence_8c.html index 78dd5dad..6ce0d465 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c.html @@ -84,9 +84,9 @@ Include dependency graph for MQTTPersistence.c:
    - - - + + +
    @@ -203,9 +203,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -258,16 +258,16 @@ Here is the call graph for this function:
    - - - - - - - - - - + + + + + + + + + +
    @@ -313,19 +313,19 @@ Here is the call graph for this function:
    - - - - - - - - - - - - - + + + + + + + + + + + + +
    @@ -377,10 +377,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -534,8 +534,8 @@ Here is the call graph for this function:
    - - + +
    @@ -640,18 +640,18 @@ Here is the call graph for this function:
    - - - - - - - - - - - - + + + + + + + + + + + +
    @@ -685,8 +685,8 @@ Here is the call graph for this function:
    - - + +
    @@ -695,7 +695,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c__incl.map b/docs/MQTTClient_internal/html/MQTTPersistence_8c__incl.map index 499bd461..7d3129ed 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c__incl.map +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c__incl.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c__incl.png b/docs/MQTTClient_internal/html/MQTTPersistence_8c__incl.png index 46b0359b..a2c6ab08 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistence_8c__incl.png and b/docs/MQTTClient_internal/html/MQTTPersistence_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a385b6c191dbf51652d3e3a81813848f1_cgraph.map b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a385b6c191dbf51652d3e3a81813848f1_cgraph.map index 06c3ef16..a8539fb9 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a385b6c191dbf51652d3e3a81813848f1_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a385b6c191dbf51652d3e3a81813848f1_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a385b6c191dbf51652d3e3a81813848f1_cgraph.png b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a385b6c191dbf51652d3e3a81813848f1_cgraph.png index 61d2f9b3..75e15605 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a385b6c191dbf51652d3e3a81813848f1_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a385b6c191dbf51652d3e3a81813848f1_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a3e607d17e088a493097af07e9c7b0006_cgraph.map b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a3e607d17e088a493097af07e9c7b0006_cgraph.map index 235b5cf2..369568c2 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a3e607d17e088a493097af07e9c7b0006_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a3e607d17e088a493097af07e9c7b0006_cgraph.map @@ -1,14 +1,14 @@ - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a3e607d17e088a493097af07e9c7b0006_cgraph.png b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a3e607d17e088a493097af07e9c7b0006_cgraph.png index f2a26670..d01b7d2a 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a3e607d17e088a493097af07e9c7b0006_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a3e607d17e088a493097af07e9c7b0006_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a568adcd6ad3542d6f631a7f7a2e682e5_cgraph.map b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a568adcd6ad3542d6f631a7f7a2e682e5_cgraph.map index 9f91c1ce..5c9f8ff4 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a568adcd6ad3542d6f631a7f7a2e682e5_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a568adcd6ad3542d6f631a7f7a2e682e5_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a568adcd6ad3542d6f631a7f7a2e682e5_cgraph.png b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a568adcd6ad3542d6f631a7f7a2e682e5_cgraph.png index 8eea5418..9321891e 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a568adcd6ad3542d6f631a7f7a2e682e5_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a568adcd6ad3542d6f631a7f7a2e682e5_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a65b64467da967b6930966b98f249406e_cgraph.map b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a65b64467da967b6930966b98f249406e_cgraph.map index 4870947e..11b229b9 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a65b64467da967b6930966b98f249406e_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a65b64467da967b6930966b98f249406e_cgraph.map @@ -1,15 +1,15 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a65b64467da967b6930966b98f249406e_cgraph.png b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a65b64467da967b6930966b98f249406e_cgraph.png index 59086f72..3cea4e0f 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a65b64467da967b6930966b98f249406e_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a65b64467da967b6930966b98f249406e_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a75e756280e499db530896c5b74b8d3b5_cgraph.map b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a75e756280e499db530896c5b74b8d3b5_cgraph.map index e56330df..14b1bbc6 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a75e756280e499db530896c5b74b8d3b5_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a75e756280e499db530896c5b74b8d3b5_cgraph.map @@ -1,12 +1,12 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a75e756280e499db530896c5b74b8d3b5_cgraph.png b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a75e756280e499db530896c5b74b8d3b5_cgraph.png index 0b60f80d..ccf280ec 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistence_8c_a75e756280e499db530896c5b74b8d3b5_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPersistence_8c_a75e756280e499db530896c5b74b8d3b5_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_aba48f1a44c540fa37bca207cae3cbbd3_cgraph.map b/docs/MQTTClient_internal/html/MQTTPersistence_8c_aba48f1a44c540fa37bca207cae3cbbd3_cgraph.map index 4bdf691d..18e97797 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c_aba48f1a44c540fa37bca207cae3cbbd3_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c_aba48f1a44c540fa37bca207cae3cbbd3_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_aba48f1a44c540fa37bca207cae3cbbd3_cgraph.png b/docs/MQTTClient_internal/html/MQTTPersistence_8c_aba48f1a44c540fa37bca207cae3cbbd3_cgraph.png index 240c3185..90e3aa99 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistence_8c_aba48f1a44c540fa37bca207cae3cbbd3_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPersistence_8c_aba48f1a44c540fa37bca207cae3cbbd3_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_adbf5881a3c6ce9bd7062182dfffe27fa_cgraph.map b/docs/MQTTClient_internal/html/MQTTPersistence_8c_adbf5881a3c6ce9bd7062182dfffe27fa_cgraph.map index f6172688..c2aa9730 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c_adbf5881a3c6ce9bd7062182dfffe27fa_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c_adbf5881a3c6ce9bd7062182dfffe27fa_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c_adbf5881a3c6ce9bd7062182dfffe27fa_cgraph.png b/docs/MQTTClient_internal/html/MQTTPersistence_8c_adbf5881a3c6ce9bd7062182dfffe27fa_cgraph.png index 2ce7c5fa..bc0ef221 100644 Binary files a/docs/MQTTClient_internal/html/MQTTPersistence_8c_adbf5881a3c6ce9bd7062182dfffe27fa_cgraph.png and b/docs/MQTTClient_internal/html/MQTTPersistence_8c_adbf5881a3c6ce9bd7062182dfffe27fa_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c.html b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c.html index 788d713e..51e77243 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c.html +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c.html @@ -86,10 +86,10 @@ Include dependency graph for MQTTProtocolClient.c:
    - - - - + + + +
    @@ -245,10 +245,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -315,10 +315,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -352,13 +352,13 @@ Here is the call graph for this function:
    - - - - - - - + + + + + + +
    @@ -392,16 +392,16 @@ Here is the call graph for this function:
    - - - - - - - - - - + + + + + + + + + +
    @@ -435,15 +435,15 @@ Here is the call graph for this function:
    - - - - - - - - - + + + + + + + + +
    @@ -489,9 +489,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -537,9 +537,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -585,9 +585,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -633,9 +633,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -681,9 +681,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -717,8 +717,8 @@ Here is the call graph for this function:
    - - + +
    @@ -752,11 +752,11 @@ Here is the call graph for this function:
    - - - - - + + + + +
    @@ -816,11 +816,11 @@ Here is the call graph for this function:
    - - - - - + + + + +
    @@ -872,8 +872,8 @@ Here is the call graph for this function:
    - - + +
    @@ -940,19 +940,19 @@ Here is the call graph for this function:
    - - - - - - - - - - - - - + + + + + + + + + + + + +
    @@ -1020,14 +1020,14 @@ Here is the call graph for this function:
    - - - - - - - - + + + + + + + +
    @@ -1073,9 +1073,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -1110,9 +1110,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -1165,8 +1165,8 @@ Here is the call graph for this function:
    - - + +
    @@ -1175,7 +1175,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c__incl.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c__incl.map index c59f57b8..cd1db7d6 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c__incl.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c__incl.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c__incl.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c__incl.png index ae04ffa8..80a8b2ff 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c__incl.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a09fb9a1dce174d6ecd61b8bc5e15b21f_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a09fb9a1dce174d6ecd61b8bc5e15b21f_cgraph.map index 86ce0f5d..634d8eb7 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a09fb9a1dce174d6ecd61b8bc5e15b21f_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a09fb9a1dce174d6ecd61b8bc5e15b21f_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a09fb9a1dce174d6ecd61b8bc5e15b21f_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a09fb9a1dce174d6ecd61b8bc5e15b21f_cgraph.png index 74d9eb23..99584a14 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a09fb9a1dce174d6ecd61b8bc5e15b21f_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a09fb9a1dce174d6ecd61b8bc5e15b21f_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0f86c2cc2debfa39e275d3c76d5d0073_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0f86c2cc2debfa39e275d3c76d5d0073_cgraph.map index 387f7edc..92a03c0c 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0f86c2cc2debfa39e275d3c76d5d0073_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0f86c2cc2debfa39e275d3c76d5d0073_cgraph.map @@ -1,15 +1,15 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0f86c2cc2debfa39e275d3c76d5d0073_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0f86c2cc2debfa39e275d3c76d5d0073_cgraph.png index 4aea4640..d3e9e52f 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0f86c2cc2debfa39e275d3c76d5d0073_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0f86c2cc2debfa39e275d3c76d5d0073_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0fa824f9702cb6b0d7c800fd65198fce_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0fa824f9702cb6b0d7c800fd65198fce_cgraph.map index 265ef7f8..820c9d7f 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0fa824f9702cb6b0d7c800fd65198fce_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0fa824f9702cb6b0d7c800fd65198fce_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0fa824f9702cb6b0d7c800fd65198fce_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0fa824f9702cb6b0d7c800fd65198fce_cgraph.png index 796457ce..6647f668 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0fa824f9702cb6b0d7c800fd65198fce_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a0fa824f9702cb6b0d7c800fd65198fce_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a1ae7eec0137c440b015425e28a515c78_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a1ae7eec0137c440b015425e28a515c78_cgraph.map index e38ad813..5c570c9c 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a1ae7eec0137c440b015425e28a515c78_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a1ae7eec0137c440b015425e28a515c78_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a1ae7eec0137c440b015425e28a515c78_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a1ae7eec0137c440b015425e28a515c78_cgraph.png index 47b86e6d..1d36df96 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a1ae7eec0137c440b015425e28a515c78_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a1ae7eec0137c440b015425e28a515c78_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a218a69c333badc4a61b321bc830ac1e0_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a218a69c333badc4a61b321bc830ac1e0_cgraph.map index a0636399..fbdc217b 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a218a69c333badc4a61b321bc830ac1e0_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a218a69c333badc4a61b321bc830ac1e0_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a218a69c333badc4a61b321bc830ac1e0_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a218a69c333badc4a61b321bc830ac1e0_cgraph.png index 88b2399c..0d798b08 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a218a69c333badc4a61b321bc830ac1e0_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a218a69c333badc4a61b321bc830ac1e0_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a30c60f9b4ddc352fb24345d3453aa7f0_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a30c60f9b4ddc352fb24345d3453aa7f0_cgraph.map index d513292c..951b5f27 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a30c60f9b4ddc352fb24345d3453aa7f0_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a30c60f9b4ddc352fb24345d3453aa7f0_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a30c60f9b4ddc352fb24345d3453aa7f0_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a30c60f9b4ddc352fb24345d3453aa7f0_cgraph.png index a5fef20e..b6879db4 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a30c60f9b4ddc352fb24345d3453aa7f0_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a30c60f9b4ddc352fb24345d3453aa7f0_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a3a1acc3bd7b09ab9d52e15e4a97c4cb2_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a3a1acc3bd7b09ab9d52e15e4a97c4cb2_cgraph.map index bbc51ba5..f1beaee5 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a3a1acc3bd7b09ab9d52e15e4a97c4cb2_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a3a1acc3bd7b09ab9d52e15e4a97c4cb2_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a3a1acc3bd7b09ab9d52e15e4a97c4cb2_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a3a1acc3bd7b09ab9d52e15e4a97c4cb2_cgraph.png index c53b30a9..8e861238 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a3a1acc3bd7b09ab9d52e15e4a97c4cb2_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a3a1acc3bd7b09ab9d52e15e4a97c4cb2_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a447b65c664ebedef8fecb70e29dc1767_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a447b65c664ebedef8fecb70e29dc1767_cgraph.map index 9ac9e2a7..1b862fd4 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a447b65c664ebedef8fecb70e29dc1767_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a447b65c664ebedef8fecb70e29dc1767_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a447b65c664ebedef8fecb70e29dc1767_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a447b65c664ebedef8fecb70e29dc1767_cgraph.png index 2c68aee6..4ba2c3ae 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a447b65c664ebedef8fecb70e29dc1767_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a447b65c664ebedef8fecb70e29dc1767_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a4502a4b9257b32508fac87e42fb1d85a_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a4502a4b9257b32508fac87e42fb1d85a_cgraph.map index 411e4782..25885f53 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a4502a4b9257b32508fac87e42fb1d85a_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a4502a4b9257b32508fac87e42fb1d85a_cgraph.map @@ -1,10 +1,10 @@ - - - - - - - - + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a4502a4b9257b32508fac87e42fb1d85a_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a4502a4b9257b32508fac87e42fb1d85a_cgraph.png index 6e885029..93fa487e 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a4502a4b9257b32508fac87e42fb1d85a_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a4502a4b9257b32508fac87e42fb1d85a_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a52e062f52e5a42275471eeb23040fc0e_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a52e062f52e5a42275471eeb23040fc0e_cgraph.map index e3352ddf..addcb08a 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a52e062f52e5a42275471eeb23040fc0e_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a52e062f52e5a42275471eeb23040fc0e_cgraph.map @@ -1,12 +1,12 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a52e062f52e5a42275471eeb23040fc0e_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a52e062f52e5a42275471eeb23040fc0e_cgraph.png index 41942ac7..692d97bb 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a52e062f52e5a42275471eeb23040fc0e_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a52e062f52e5a42275471eeb23040fc0e_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a8514ddc8d0f346c0da19ab4d59b4062f_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a8514ddc8d0f346c0da19ab4d59b4062f_cgraph.map index 18e2bb5d..101dec79 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a8514ddc8d0f346c0da19ab4d59b4062f_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a8514ddc8d0f346c0da19ab4d59b4062f_cgraph.map @@ -1,11 +1,11 @@ - - - - - - - - - + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a8514ddc8d0f346c0da19ab4d59b4062f_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a8514ddc8d0f346c0da19ab4d59b4062f_cgraph.png index 66f2e0e4..7d0d1df4 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a8514ddc8d0f346c0da19ab4d59b4062f_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a8514ddc8d0f346c0da19ab4d59b4062f_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a89588f085edc5cee4eb650e8ad114df4_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a89588f085edc5cee4eb650e8ad114df4_cgraph.map index fcf83c55..8ec8b196 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a89588f085edc5cee4eb650e8ad114df4_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a89588f085edc5cee4eb650e8ad114df4_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a89588f085edc5cee4eb650e8ad114df4_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a89588f085edc5cee4eb650e8ad114df4_cgraph.png index 44f62b27..e90444eb 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a89588f085edc5cee4eb650e8ad114df4_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a89588f085edc5cee4eb650e8ad114df4_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a900fa28a8774ad6f5535104bb62e7abf_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a900fa28a8774ad6f5535104bb62e7abf_cgraph.map index 12930be7..0dd61923 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a900fa28a8774ad6f5535104bb62e7abf_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a900fa28a8774ad6f5535104bb62e7abf_cgraph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a900fa28a8774ad6f5535104bb62e7abf_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a900fa28a8774ad6f5535104bb62e7abf_cgraph.png index 1132474a..9f53860b 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a900fa28a8774ad6f5535104bb62e7abf_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_a900fa28a8774ad6f5535104bb62e7abf_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_aafbc4b72c8d17fe9d8a09cfd467e1990_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_aafbc4b72c8d17fe9d8a09cfd467e1990_cgraph.map index 1df997c9..05f9f81a 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_aafbc4b72c8d17fe9d8a09cfd467e1990_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_aafbc4b72c8d17fe9d8a09cfd467e1990_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_aafbc4b72c8d17fe9d8a09cfd467e1990_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_aafbc4b72c8d17fe9d8a09cfd467e1990_cgraph.png index 3cd05903..c7efe89d 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_aafbc4b72c8d17fe9d8a09cfd467e1990_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_aafbc4b72c8d17fe9d8a09cfd467e1990_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ab9c5a22f0cbd4fa648663de7ae7118ab_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ab9c5a22f0cbd4fa648663de7ae7118ab_cgraph.map index a2108fd6..8e7abc4e 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ab9c5a22f0cbd4fa648663de7ae7118ab_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ab9c5a22f0cbd4fa648663de7ae7118ab_cgraph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ab9c5a22f0cbd4fa648663de7ae7118ab_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ab9c5a22f0cbd4fa648663de7ae7118ab_cgraph.png index d554c002..a54ebf6e 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ab9c5a22f0cbd4fa648663de7ae7118ab_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ab9c5a22f0cbd4fa648663de7ae7118ab_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac5311f51f14364c3fdd3798c5a662ae4_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac5311f51f14364c3fdd3798c5a662ae4_cgraph.map index de072bb1..cf4b26c8 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac5311f51f14364c3fdd3798c5a662ae4_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac5311f51f14364c3fdd3798c5a662ae4_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac5311f51f14364c3fdd3798c5a662ae4_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac5311f51f14364c3fdd3798c5a662ae4_cgraph.png index eef96bdf..f02b37b7 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac5311f51f14364c3fdd3798c5a662ae4_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac5311f51f14364c3fdd3798c5a662ae4_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac753a3ad12292a0a9c2f4343bd33817e_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac753a3ad12292a0a9c2f4343bd33817e_cgraph.map index 5a5591c6..13b759b8 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac753a3ad12292a0a9c2f4343bd33817e_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac753a3ad12292a0a9c2f4343bd33817e_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac753a3ad12292a0a9c2f4343bd33817e_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac753a3ad12292a0a9c2f4343bd33817e_cgraph.png index b31510c8..4f137bc9 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac753a3ad12292a0a9c2f4343bd33817e_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ac753a3ad12292a0a9c2f4343bd33817e_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ad2f52c0fff61c891b174d69b95bcd173_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ad2f52c0fff61c891b174d69b95bcd173_cgraph.map index 05731987..d556ae82 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ad2f52c0fff61c891b174d69b95bcd173_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ad2f52c0fff61c891b174d69b95bcd173_cgraph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ad2f52c0fff61c891b174d69b95bcd173_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ad2f52c0fff61c891b174d69b95bcd173_cgraph.png index d7ea4dbb..56e47574 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ad2f52c0fff61c891b174d69b95bcd173_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_ad2f52c0fff61c891b174d69b95bcd173_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_afbf121be11a48fcda3e0d639bc47472b_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_afbf121be11a48fcda3e0d639bc47472b_cgraph.map index 2bb260f5..3fa79dd5 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_afbf121be11a48fcda3e0d639bc47472b_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_afbf121be11a48fcda3e0d639bc47472b_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_afbf121be11a48fcda3e0d639bc47472b_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_afbf121be11a48fcda3e0d639bc47472b_cgraph.png index abb9684e..836c4188 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_afbf121be11a48fcda3e0d639bc47472b_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c_afbf121be11a48fcda3e0d639bc47472b_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c.html b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c.html index 79ad8e7f..e88f25e1 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c.html +++ b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c.html @@ -85,10 +85,10 @@ Include dependency graph for MQTTProtocolOut.c:
    - - - - + + + +
    @@ -288,9 +288,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -336,9 +336,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -384,9 +384,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -503,17 +503,17 @@ Here is the call graph for this function:
    - - - - - - - - - - - + + + + + + + + + + +
    @@ -571,16 +571,16 @@ Here is the call graph for this function:
    - - - - - - - - - - + + + + + + + + + +
    @@ -589,7 +589,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c__incl.map b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c__incl.map index b94be4d5..9050b27a 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c__incl.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c__incl.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c__incl.png b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c__incl.png index bc0618cc..13a46461 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c__incl.png and b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a460d021d06dd24cf975dfe20e17ab1ba_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a460d021d06dd24cf975dfe20e17ab1ba_cgraph.map index edb90fbe..8227a902 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a460d021d06dd24cf975dfe20e17ab1ba_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a460d021d06dd24cf975dfe20e17ab1ba_cgraph.map @@ -1,13 +1,13 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a460d021d06dd24cf975dfe20e17ab1ba_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a460d021d06dd24cf975dfe20e17ab1ba_cgraph.png index cf2c44a1..7ab61a72 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a460d021d06dd24cf975dfe20e17ab1ba_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a460d021d06dd24cf975dfe20e17ab1ba_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a662c001eb1105428b5cf8474ae4c0456_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a662c001eb1105428b5cf8474ae4c0456_cgraph.map index a762299d..e90b183c 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a662c001eb1105428b5cf8474ae4c0456_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a662c001eb1105428b5cf8474ae4c0456_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a662c001eb1105428b5cf8474ae4c0456_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a662c001eb1105428b5cf8474ae4c0456_cgraph.png index 4f4ab120..a6adbbe5 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a662c001eb1105428b5cf8474ae4c0456_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a662c001eb1105428b5cf8474ae4c0456_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a69083f5a059d129d1030140ec1cd3d58_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a69083f5a059d129d1030140ec1cd3d58_cgraph.map index 931d5072..a8f95778 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a69083f5a059d129d1030140ec1cd3d58_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a69083f5a059d129d1030140ec1cd3d58_cgraph.map @@ -1,12 +1,12 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a69083f5a059d129d1030140ec1cd3d58_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a69083f5a059d129d1030140ec1cd3d58_cgraph.png index 2190c6e1..eba6531d 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a69083f5a059d129d1030140ec1cd3d58_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_a69083f5a059d129d1030140ec1cd3d58_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_acefb6038412bccf253bdc3f18fbfaf47_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_acefb6038412bccf253bdc3f18fbfaf47_cgraph.map index aee53fea..ecce0e07 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_acefb6038412bccf253bdc3f18fbfaf47_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_acefb6038412bccf253bdc3f18fbfaf47_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_acefb6038412bccf253bdc3f18fbfaf47_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_acefb6038412bccf253bdc3f18fbfaf47_cgraph.png index d52787d3..1a83c2a3 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_acefb6038412bccf253bdc3f18fbfaf47_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_acefb6038412bccf253bdc3f18fbfaf47_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_ad18afa4a9025c7b84ac23450cdbd0976_cgraph.map b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_ad18afa4a9025c7b84ac23450cdbd0976_cgraph.map index 23ccf0b3..bce4d309 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_ad18afa4a9025c7b84ac23450cdbd0976_cgraph.map +++ b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_ad18afa4a9025c7b84ac23450cdbd0976_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_ad18afa4a9025c7b84ac23450cdbd0976_cgraph.png b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_ad18afa4a9025c7b84ac23450cdbd0976_cgraph.png index 16b900cb..26306b50 100644 Binary files a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_ad18afa4a9025c7b84ac23450cdbd0976_cgraph.png and b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c_ad18afa4a9025c7b84ac23450cdbd0976_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/MQTTVersion_8c.html b/docs/MQTTClient_internal/html/MQTTVersion_8c.html index d3dfb590..73829ad0 100644 --- a/docs/MQTTClient_internal/html/MQTTVersion_8c.html +++ b/docs/MQTTClient_internal/html/MQTTVersion_8c.html @@ -90,17 +90,17 @@ Include dependency graph for MQTTVersion.c:
    - - - - - - - - - - - + + + + + + + + + + +
    @@ -213,7 +213,7 @@ static const char * 
    librar diff --git a/docs/MQTTClient_internal/html/MQTTVersion_8c__incl.map b/docs/MQTTClient_internal/html/MQTTVersion_8c__incl.map index 8cfc333d..a4268738 100644 --- a/docs/MQTTClient_internal/html/MQTTVersion_8c__incl.map +++ b/docs/MQTTClient_internal/html/MQTTVersion_8c__incl.map @@ -1,13 +1,13 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/MQTTVersion_8c__incl.png b/docs/MQTTClient_internal/html/MQTTVersion_8c__incl.png index 78f89a29..21a97f44 100644 Binary files a/docs/MQTTClient_internal/html/MQTTVersion_8c__incl.png and b/docs/MQTTClient_internal/html/MQTTVersion_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/Messages_8c.html b/docs/MQTTClient_internal/html/Messages_8c.html index 1fcda765..2cef042c 100644 --- a/docs/MQTTClient_internal/html/Messages_8c.html +++ b/docs/MQTTClient_internal/html/Messages_8c.html @@ -84,10 +84,10 @@ Include dependency graph for Messages.c:
    - - - - + + + +
    @@ -197,7 +197,7 @@ static const char * 
    protoc diff --git a/docs/MQTTClient_internal/html/Messages_8c__incl.map b/docs/MQTTClient_internal/html/Messages_8c__incl.map index 62795467..b6303d0b 100644 --- a/docs/MQTTClient_internal/html/Messages_8c__incl.map +++ b/docs/MQTTClient_internal/html/Messages_8c__incl.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/Messages_8c__incl.png b/docs/MQTTClient_internal/html/Messages_8c__incl.png index 8e6d712d..551a0c53 100644 Binary files a/docs/MQTTClient_internal/html/Messages_8c__incl.png and b/docs/MQTTClient_internal/html/Messages_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/SSLSocket_8c.html b/docs/MQTTClient_internal/html/SSLSocket_8c.html index ef7cb62b..71884811 100644 --- a/docs/MQTTClient_internal/html/SSLSocket_8c.html +++ b/docs/MQTTClient_internal/html/SSLSocket_8c.html @@ -74,7 +74,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c.html b/docs/MQTTClient_internal/html/SocketBuffer_8c.html index f3fb0027..bf7ae3c6 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c.html +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c.html @@ -86,10 +86,10 @@ Include dependency graph for SocketBuffer.c:
    - - - - + + + +
    @@ -233,15 +233,15 @@ Here is the call graph for this function:
    - - - - - - - - - + + + + + + + + +
    @@ -276,13 +276,13 @@ Here is the call graph for this function:
    - - - - - - - + + + + + + +
    @@ -328,11 +328,11 @@ Here is the call graph for this function:
    - - - - - + + + + +
    @@ -385,10 +385,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -423,10 +423,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -471,13 +471,13 @@ Here is the call graph for this function:
    - - - - - - - + + + + + + +
    @@ -550,9 +550,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -597,11 +597,11 @@ Here is the call graph for this function:
    - - - - - + + + + +
    @@ -654,10 +654,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -692,12 +692,12 @@ Here is the call graph for this function:
    - - - - - - + + + + + +
    @@ -744,7 +744,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c__incl.map b/docs/MQTTClient_internal/html/SocketBuffer_8c__incl.map index 0bdbb249..e1b03489 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c__incl.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c__incl.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c__incl.png b/docs/MQTTClient_internal/html/SocketBuffer_8c__incl.png index 276d3922..b4d54813 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c__incl.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a0601e12cab5b7c4777df10ca6d38a41b_cgraph.map b/docs/MQTTClient_internal/html/SocketBuffer_8c_a0601e12cab5b7c4777df10ca6d38a41b_cgraph.map index 796f89dc..5a6565ba 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c_a0601e12cab5b7c4777df10ca6d38a41b_cgraph.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c_a0601e12cab5b7c4777df10ca6d38a41b_cgraph.map @@ -1,11 +1,11 @@ - - - - - - - - - + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a0601e12cab5b7c4777df10ca6d38a41b_cgraph.png b/docs/MQTTClient_internal/html/SocketBuffer_8c_a0601e12cab5b7c4777df10ca6d38a41b_cgraph.png index a9531092..cfcb4288 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c_a0601e12cab5b7c4777df10ca6d38a41b_cgraph.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c_a0601e12cab5b7c4777df10ca6d38a41b_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a08102e2e43746ccd1ab26739b5841a7c_cgraph.map b/docs/MQTTClient_internal/html/SocketBuffer_8c_a08102e2e43746ccd1ab26739b5841a7c_cgraph.map index ecf1b834..e076dc05 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c_a08102e2e43746ccd1ab26739b5841a7c_cgraph.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c_a08102e2e43746ccd1ab26739b5841a7c_cgraph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a08102e2e43746ccd1ab26739b5841a7c_cgraph.png b/docs/MQTTClient_internal/html/SocketBuffer_8c_a08102e2e43746ccd1ab26739b5841a7c_cgraph.png index d08c30d5..3f8c0a2b 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c_a08102e2e43746ccd1ab26739b5841a7c_cgraph.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c_a08102e2e43746ccd1ab26739b5841a7c_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a0d007b15408ae802c78bc69f115cf91e_cgraph.map b/docs/MQTTClient_internal/html/SocketBuffer_8c_a0d007b15408ae802c78bc69f115cf91e_cgraph.map index 52a79d77..050ee051 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c_a0d007b15408ae802c78bc69f115cf91e_cgraph.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c_a0d007b15408ae802c78bc69f115cf91e_cgraph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a0d007b15408ae802c78bc69f115cf91e_cgraph.png b/docs/MQTTClient_internal/html/SocketBuffer_8c_a0d007b15408ae802c78bc69f115cf91e_cgraph.png index dd1cd991..e16c22ed 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c_a0d007b15408ae802c78bc69f115cf91e_cgraph.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c_a0d007b15408ae802c78bc69f115cf91e_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a2b11bdc6ca61051b8edaed5620735602_cgraph.map b/docs/MQTTClient_internal/html/SocketBuffer_8c_a2b11bdc6ca61051b8edaed5620735602_cgraph.map index 3b1b9365..6be62108 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c_a2b11bdc6ca61051b8edaed5620735602_cgraph.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c_a2b11bdc6ca61051b8edaed5620735602_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a2b11bdc6ca61051b8edaed5620735602_cgraph.png b/docs/MQTTClient_internal/html/SocketBuffer_8c_a2b11bdc6ca61051b8edaed5620735602_cgraph.png index fb39ab68..7fdd6694 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c_a2b11bdc6ca61051b8edaed5620735602_cgraph.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c_a2b11bdc6ca61051b8edaed5620735602_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a5f22a1ac450cb1805e2ab8f2ae3da80e_cgraph.map b/docs/MQTTClient_internal/html/SocketBuffer_8c_a5f22a1ac450cb1805e2ab8f2ae3da80e_cgraph.map index 123176b0..dc233776 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c_a5f22a1ac450cb1805e2ab8f2ae3da80e_cgraph.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c_a5f22a1ac450cb1805e2ab8f2ae3da80e_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a5f22a1ac450cb1805e2ab8f2ae3da80e_cgraph.png b/docs/MQTTClient_internal/html/SocketBuffer_8c_a5f22a1ac450cb1805e2ab8f2ae3da80e_cgraph.png index df8c8d98..da804327 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c_a5f22a1ac450cb1805e2ab8f2ae3da80e_cgraph.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c_a5f22a1ac450cb1805e2ab8f2ae3da80e_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a893ce45cf77f7d66c3f27c831ccf8124_cgraph.map b/docs/MQTTClient_internal/html/SocketBuffer_8c_a893ce45cf77f7d66c3f27c831ccf8124_cgraph.map index 3b34ef1a..92ffbf6b 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c_a893ce45cf77f7d66c3f27c831ccf8124_cgraph.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c_a893ce45cf77f7d66c3f27c831ccf8124_cgraph.map @@ -1,8 +1,8 @@ - - - - - - + + + + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a893ce45cf77f7d66c3f27c831ccf8124_cgraph.png b/docs/MQTTClient_internal/html/SocketBuffer_8c_a893ce45cf77f7d66c3f27c831ccf8124_cgraph.png index dec7bb9b..6136645a 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c_a893ce45cf77f7d66c3f27c831ccf8124_cgraph.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c_a893ce45cf77f7d66c3f27c831ccf8124_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a2e0c916232521098ff734d556c3b68_cgraph.map b/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a2e0c916232521098ff734d556c3b68_cgraph.map index 695a0155..4e1b40b5 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a2e0c916232521098ff734d556c3b68_cgraph.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a2e0c916232521098ff734d556c3b68_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a2e0c916232521098ff734d556c3b68_cgraph.png b/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a2e0c916232521098ff734d556c3b68_cgraph.png index 330ab97c..279a0bd5 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a2e0c916232521098ff734d556c3b68_cgraph.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a2e0c916232521098ff734d556c3b68_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a94cbb0db8ba0834a7f1c6e2eb938b4_cgraph.map b/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a94cbb0db8ba0834a7f1c6e2eb938b4_cgraph.map index dfd541af..bdb67f6b 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a94cbb0db8ba0834a7f1c6e2eb938b4_cgraph.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a94cbb0db8ba0834a7f1c6e2eb938b4_cgraph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a94cbb0db8ba0834a7f1c6e2eb938b4_cgraph.png b/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a94cbb0db8ba0834a7f1c6e2eb938b4_cgraph.png index ef7cdd29..44a9cf83 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a94cbb0db8ba0834a7f1c6e2eb938b4_cgraph.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c_a8a94cbb0db8ba0834a7f1c6e2eb938b4_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a9a92acaaec423c44227e3dd978223529_cgraph.map b/docs/MQTTClient_internal/html/SocketBuffer_8c_a9a92acaaec423c44227e3dd978223529_cgraph.map index f56c0a9c..b7a8a972 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c_a9a92acaaec423c44227e3dd978223529_cgraph.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c_a9a92acaaec423c44227e3dd978223529_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_a9a92acaaec423c44227e3dd978223529_cgraph.png b/docs/MQTTClient_internal/html/SocketBuffer_8c_a9a92acaaec423c44227e3dd978223529_cgraph.png index 5f650a28..dd940041 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c_a9a92acaaec423c44227e3dd978223529_cgraph.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c_a9a92acaaec423c44227e3dd978223529_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_aaac8b43c1ab5d20eb8e6b95de6e80671_cgraph.map b/docs/MQTTClient_internal/html/SocketBuffer_8c_aaac8b43c1ab5d20eb8e6b95de6e80671_cgraph.map index 61d7b56e..6b8b7acb 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c_aaac8b43c1ab5d20eb8e6b95de6e80671_cgraph.map +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c_aaac8b43c1ab5d20eb8e6b95de6e80671_cgraph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c_aaac8b43c1ab5d20eb8e6b95de6e80671_cgraph.png b/docs/MQTTClient_internal/html/SocketBuffer_8c_aaac8b43c1ab5d20eb8e6b95de6e80671_cgraph.png index 126a2955..00d41f0d 100644 Binary files a/docs/MQTTClient_internal/html/SocketBuffer_8c_aaac8b43c1ab5d20eb8e6b95de6e80671_cgraph.png and b/docs/MQTTClient_internal/html/SocketBuffer_8c_aaac8b43c1ab5d20eb8e6b95de6e80671_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c.html b/docs/MQTTClient_internal/html/Socket_8c.html index c0ca907b..efdc55ea 100644 --- a/docs/MQTTClient_internal/html/Socket_8c.html +++ b/docs/MQTTClient_internal/html/Socket_8c.html @@ -88,11 +88,11 @@ Include dependency graph for Socket.c:
    - - - - - + + + + +
    @@ -243,13 +243,13 @@ Here is the call graph for this function:
    - - - - - - - + + + + + + +
    @@ -284,12 +284,12 @@ Here is the call graph for this function:
    - - - - - - + + + + + +
    @@ -349,13 +349,13 @@ Here is the call graph for this function:
    - - - - - - - + + + + + + +
    @@ -416,22 +416,22 @@ Here is the call graph for this function:
    - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + +
    @@ -466,9 +466,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -503,14 +503,14 @@ Here is the call graph for this function:
    - - - - - - - - + + + + + + + +
    @@ -556,19 +556,19 @@ Here is the call graph for this function:
    - - - - - - - - - - - - - + + + + + + + + + + + + +
    @@ -614,8 +614,8 @@ Here is the call graph for this function:
    - - + +
    @@ -701,18 +701,18 @@ Here is the call graph for this function:
    - - - - - - - - - - - - + + + + + + + + + + + +
    @@ -771,21 +771,21 @@ Here is the call graph for this function:
    - - - - - - - - - - - - - - - + + + + + + + + + + + + + + +
    @@ -820,10 +820,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -882,15 +882,15 @@ Here is the call graph for this function:
    - - - - - - - - - + + + + + + + + +
    @@ -950,26 +950,26 @@ Here is the call graph for this function:
    - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + +
    @@ -998,10 +998,10 @@ Here is the call graph for this function:
    - - - - + + + +
    @@ -1063,17 +1063,17 @@ Here is the call graph for this function:
    - - - - - - - - - - - + + + + + + + + + + +
    @@ -1160,9 +1160,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -1171,7 +1171,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/Socket_8c__incl.map b/docs/MQTTClient_internal/html/Socket_8c__incl.map index 22dfcc92..7ae86167 100644 --- a/docs/MQTTClient_internal/html/Socket_8c__incl.map +++ b/docs/MQTTClient_internal/html/Socket_8c__incl.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c__incl.png b/docs/MQTTClient_internal/html/Socket_8c__incl.png index 6ed4f5ee..9c4cb6c8 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c__incl.png and b/docs/MQTTClient_internal/html/Socket_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a27952bf5cd133a873da9a218c7207059_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a27952bf5cd133a873da9a218c7207059_cgraph.map index 6da0324b..4e41b391 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a27952bf5cd133a873da9a218c7207059_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a27952bf5cd133a873da9a218c7207059_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a27952bf5cd133a873da9a218c7207059_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a27952bf5cd133a873da9a218c7207059_cgraph.png index 9c9e052f..1161a4e9 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a27952bf5cd133a873da9a218c7207059_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a27952bf5cd133a873da9a218c7207059_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a2c082b4e794c0a7835a0700f0bc7b3a1_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a2c082b4e794c0a7835a0700f0bc7b3a1_cgraph.map index 9e690c76..c65eb714 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a2c082b4e794c0a7835a0700f0bc7b3a1_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a2c082b4e794c0a7835a0700f0bc7b3a1_cgraph.map @@ -1,11 +1,11 @@ - - - - - - - - - + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a2c082b4e794c0a7835a0700f0bc7b3a1_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a2c082b4e794c0a7835a0700f0bc7b3a1_cgraph.png index 21856383..ea7803c5 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a2c082b4e794c0a7835a0700f0bc7b3a1_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a2c082b4e794c0a7835a0700f0bc7b3a1_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a2e7c21836cd061947d6d6e28446c4a59_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a2e7c21836cd061947d6d6e28446c4a59_cgraph.map index 395aedfd..7b3ba33b 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a2e7c21836cd061947d6d6e28446c4a59_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a2e7c21836cd061947d6d6e28446c4a59_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a2e7c21836cd061947d6d6e28446c4a59_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a2e7c21836cd061947d6d6e28446c4a59_cgraph.png index 4c79d142..9db27c0b 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a2e7c21836cd061947d6d6e28446c4a59_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a2e7c21836cd061947d6d6e28446c4a59_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a3c690a1d23a55ccf1ea52cdea9b56432_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a3c690a1d23a55ccf1ea52cdea9b56432_cgraph.map index 4b516125..0d6a7faf 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a3c690a1d23a55ccf1ea52cdea9b56432_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a3c690a1d23a55ccf1ea52cdea9b56432_cgraph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a3c690a1d23a55ccf1ea52cdea9b56432_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a3c690a1d23a55ccf1ea52cdea9b56432_cgraph.png index 684be34c..e984998f 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a3c690a1d23a55ccf1ea52cdea9b56432_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a3c690a1d23a55ccf1ea52cdea9b56432_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a40f45b094eb70875e06f96164afc4a49_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a40f45b094eb70875e06f96164afc4a49_cgraph.map index 1ac46c15..f8fca464 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a40f45b094eb70875e06f96164afc4a49_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a40f45b094eb70875e06f96164afc4a49_cgraph.map @@ -1,15 +1,15 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a40f45b094eb70875e06f96164afc4a49_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a40f45b094eb70875e06f96164afc4a49_cgraph.png index 42e5877c..00198d11 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a40f45b094eb70875e06f96164afc4a49_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a40f45b094eb70875e06f96164afc4a49_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a47824ad5afba267b9488150e1f7e8610_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a47824ad5afba267b9488150e1f7e8610_cgraph.map index 0682c8ac..43137908 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a47824ad5afba267b9488150e1f7e8610_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a47824ad5afba267b9488150e1f7e8610_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a47824ad5afba267b9488150e1f7e8610_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a47824ad5afba267b9488150e1f7e8610_cgraph.png index 92a6a617..9cdcf5a7 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a47824ad5afba267b9488150e1f7e8610_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a47824ad5afba267b9488150e1f7e8610_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a5ce31969f49786ef8452e2b547527578_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a5ce31969f49786ef8452e2b547527578_cgraph.map index 0da67244..bd9a9561 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a5ce31969f49786ef8452e2b547527578_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a5ce31969f49786ef8452e2b547527578_cgraph.map @@ -1,10 +1,10 @@ - - - - - - - - + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a5ce31969f49786ef8452e2b547527578_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a5ce31969f49786ef8452e2b547527578_cgraph.png index 287868f6..7cdf80ab 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a5ce31969f49786ef8452e2b547527578_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a5ce31969f49786ef8452e2b547527578_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a601ba77d9b01e908dbd0653f6efa3be0_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a601ba77d9b01e908dbd0653f6efa3be0_cgraph.map index f9fa30a9..1c3e2ec1 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a601ba77d9b01e908dbd0653f6efa3be0_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a601ba77d9b01e908dbd0653f6efa3be0_cgraph.map @@ -1,13 +1,13 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a601ba77d9b01e908dbd0653f6efa3be0_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a601ba77d9b01e908dbd0653f6efa3be0_cgraph.png index 93a9693d..61b19a35 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a601ba77d9b01e908dbd0653f6efa3be0_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a601ba77d9b01e908dbd0653f6efa3be0_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a6bdb051c5944e1a0fd16ba18544ab5df_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a6bdb051c5944e1a0fd16ba18544ab5df_cgraph.map index 74401f11..5eec689a 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a6bdb051c5944e1a0fd16ba18544ab5df_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a6bdb051c5944e1a0fd16ba18544ab5df_cgraph.map @@ -1,18 +1,18 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a6bdb051c5944e1a0fd16ba18544ab5df_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a6bdb051c5944e1a0fd16ba18544ab5df_cgraph.png index 7ff3b786..e2210da3 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a6bdb051c5944e1a0fd16ba18544ab5df_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a6bdb051c5944e1a0fd16ba18544ab5df_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a6e05161f70e828e8bd06ead38e0be6c8_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a6e05161f70e828e8bd06ead38e0be6c8_cgraph.map index cdc10cb5..f074bffb 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a6e05161f70e828e8bd06ead38e0be6c8_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a6e05161f70e828e8bd06ead38e0be6c8_cgraph.map @@ -1,17 +1,17 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a6e05161f70e828e8bd06ead38e0be6c8_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a6e05161f70e828e8bd06ead38e0be6c8_cgraph.png index 3a588cf8..9626e22a 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a6e05161f70e828e8bd06ead38e0be6c8_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a6e05161f70e828e8bd06ead38e0be6c8_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_a9af02601f6b5ef066ba99d9498a024b8_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_a9af02601f6b5ef066ba99d9498a024b8_cgraph.map index 1301fa79..605ceec9 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_a9af02601f6b5ef066ba99d9498a024b8_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_a9af02601f6b5ef066ba99d9498a024b8_cgraph.map @@ -1,14 +1,14 @@ - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_a9af02601f6b5ef066ba99d9498a024b8_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_a9af02601f6b5ef066ba99d9498a024b8_cgraph.png index bdfd8a6d..48348974 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_a9af02601f6b5ef066ba99d9498a024b8_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_a9af02601f6b5ef066ba99d9498a024b8_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_acb965ef2124fa6736477c9286f7599b2_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_acb965ef2124fa6736477c9286f7599b2_cgraph.map index 6c457c06..b6e4b13d 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_acb965ef2124fa6736477c9286f7599b2_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_acb965ef2124fa6736477c9286f7599b2_cgraph.map @@ -1,22 +1,22 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_acb965ef2124fa6736477c9286f7599b2_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_acb965ef2124fa6736477c9286f7599b2_cgraph.png index 91013e9d..2500aa9d 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_acb965ef2124fa6736477c9286f7599b2_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_acb965ef2124fa6736477c9286f7599b2_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_ad246851be3980fd316d16864a786c808_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_ad246851be3980fd316d16864a786c808_cgraph.map index cd24aecd..adaa4424 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_ad246851be3980fd316d16864a786c808_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_ad246851be3980fd316d16864a786c808_cgraph.map @@ -1,8 +1,8 @@ - - - - - - + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_ad246851be3980fd316d16864a786c808_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_ad246851be3980fd316d16864a786c808_cgraph.png index ddb669c8..17c67c44 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_ad246851be3980fd316d16864a786c808_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_ad246851be3980fd316d16864a786c808_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_ae95673b434f2c489ecefe4688c80be2d_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_ae95673b434f2c489ecefe4688c80be2d_cgraph.map index d3684326..bd7378e3 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_ae95673b434f2c489ecefe4688c80be2d_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_ae95673b434f2c489ecefe4688c80be2d_cgraph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_ae95673b434f2c489ecefe4688c80be2d_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_ae95673b434f2c489ecefe4688c80be2d_cgraph.png index a918f7e0..2a4c0db1 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_ae95673b434f2c489ecefe4688c80be2d_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_ae95673b434f2c489ecefe4688c80be2d_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_aec4ee8ecb248d29d315d2624a88ed1c3_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_aec4ee8ecb248d29d315d2624a88ed1c3_cgraph.map index 189475d0..3620818c 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_aec4ee8ecb248d29d315d2624a88ed1c3_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_aec4ee8ecb248d29d315d2624a88ed1c3_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_aec4ee8ecb248d29d315d2624a88ed1c3_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_aec4ee8ecb248d29d315d2624a88ed1c3_cgraph.png index 71bcf0ab..0c9f2ea0 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_aec4ee8ecb248d29d315d2624a88ed1c3_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_aec4ee8ecb248d29d315d2624a88ed1c3_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Socket_8c_aeec7592039c180d20ef7c6e8f50d5667_cgraph.map b/docs/MQTTClient_internal/html/Socket_8c_aeec7592039c180d20ef7c6e8f50d5667_cgraph.map index 53bea20d..ad4fdd07 100644 --- a/docs/MQTTClient_internal/html/Socket_8c_aeec7592039c180d20ef7c6e8f50d5667_cgraph.map +++ b/docs/MQTTClient_internal/html/Socket_8c_aeec7592039c180d20ef7c6e8f50d5667_cgraph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/Socket_8c_aeec7592039c180d20ef7c6e8f50d5667_cgraph.png b/docs/MQTTClient_internal/html/Socket_8c_aeec7592039c180d20ef7c6e8f50d5667_cgraph.png index 1ff52021..4d781a23 100644 Binary files a/docs/MQTTClient_internal/html/Socket_8c_aeec7592039c180d20ef7c6e8f50d5667_cgraph.png and b/docs/MQTTClient_internal/html/Socket_8c_aeec7592039c180d20ef7c6e8f50d5667_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Thread_8c.html b/docs/MQTTClient_internal/html/Thread_8c.html index b6de1289..765bf40b 100644 --- a/docs/MQTTClient_internal/html/Thread_8c.html +++ b/docs/MQTTClient_internal/html/Thread_8c.html @@ -89,23 +89,23 @@ Include dependency graph for Thread.c:
    - - - - - - - - - + + + + + + + + +
    - - - + + + @@ -203,8 +203,8 @@ Here is the call graph for this function:
    - - + +
    @@ -227,6 +227,12 @@ Here is the call graph for this function:

    Create a new mutex.

    +
    Parameters
    +

    Functions

    thread_type Thread_start (thread_fn fn, void *parameter)
     Start a new thread. More...
     
    void Thread_start (thread_fn fn, void *parameter)
     Start a new thread. More...
     
    mutex_type Thread_create_mutex (int *rc)
     Create a new mutex. More...
     
    + +
    rcreturn code: 0 for success, negative otherwise
    + +
    Returns
    the new mutex
    @@ -248,6 +254,12 @@ Here is the call graph for this function:

    Create a new semaphore.

    +
    Parameters
    + + +
    rcreturn code: 0 for success, negative otherwise
    +
    +
    Returns
    the new condition variable
    @@ -415,14 +427,14 @@ Here is the call graph for this function: - -

    ◆ Thread_start()

    + +

    ◆ Thread_start()

    - + @@ -449,7 +461,6 @@ Here is the call graph for this function:
    thread_type Thread_start void Thread_start ( thread_fn  fn,
    -
    Returns
    the new thread
    @@ -552,7 +563,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/Thread_8c__incl.map b/docs/MQTTClient_internal/html/Thread_8c__incl.map index 94403285..601375ea 100644 --- a/docs/MQTTClient_internal/html/Thread_8c__incl.map +++ b/docs/MQTTClient_internal/html/Thread_8c__incl.map @@ -1,11 +1,11 @@ - - - - - - - - - + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/Thread_8c__incl.png b/docs/MQTTClient_internal/html/Thread_8c__incl.png index 949400f0..4aa5c81f 100644 Binary files a/docs/MQTTClient_internal/html/Thread_8c__incl.png and b/docs/MQTTClient_internal/html/Thread_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/Thread_8c_afdd152c518f968c777012d7dfb20ef96_cgraph.map b/docs/MQTTClient_internal/html/Thread_8c_afdd152c518f968c777012d7dfb20ef96_cgraph.map index aae6355e..4346051b 100644 --- a/docs/MQTTClient_internal/html/Thread_8c_afdd152c518f968c777012d7dfb20ef96_cgraph.map +++ b/docs/MQTTClient_internal/html/Thread_8c_afdd152c518f968c777012d7dfb20ef96_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/Thread_8c_afdd152c518f968c777012d7dfb20ef96_cgraph.png b/docs/MQTTClient_internal/html/Thread_8c_afdd152c518f968c777012d7dfb20ef96_cgraph.png index 0b697fbc..b2c687e1 100644 Binary files a/docs/MQTTClient_internal/html/Thread_8c_afdd152c518f968c777012d7dfb20ef96_cgraph.png and b/docs/MQTTClient_internal/html/Thread_8c_afdd152c518f968c777012d7dfb20ef96_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/Tree_8c.html b/docs/MQTTClient_internal/html/Tree_8c.html index d50c3582..caa0f840 100644 --- a/docs/MQTTClient_internal/html/Tree_8c.html +++ b/docs/MQTTClient_internal/html/Tree_8c.html @@ -82,10 +82,10 @@ Include dependency graph for Tree.c:
    - - - - + + + +
    @@ -250,9 +250,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -281,9 +281,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -378,7 +378,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/Tree_8c__incl.map b/docs/MQTTClient_internal/html/Tree_8c__incl.map index 46e865ce..395d047c 100644 --- a/docs/MQTTClient_internal/html/Tree_8c__incl.map +++ b/docs/MQTTClient_internal/html/Tree_8c__incl.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/Tree_8c__incl.png b/docs/MQTTClient_internal/html/Tree_8c__incl.png index 9e10fe6f..db03c0c4 100644 Binary files a/docs/MQTTClient_internal/html/Tree_8c__incl.png and b/docs/MQTTClient_internal/html/Tree_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.map b/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.map index 74baa652..51056827 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.png b/docs/MQTTClient_internal/html/Tree_8c_aa5ee1e466d266b289dc45cbd97116b83_cgraph.png index 8351d5a9..553e3ff2 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 8053fbee..1ae9f88e 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.png b/docs/MQTTClient_internal/html/Tree_8c_afa8473167abb71831644bf8a322bc3b6_cgraph.png index ea2941de..f395e147 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 066f344b..27cdc741 100644 --- a/docs/MQTTClient_internal/html/annotated.html +++ b/docs/MQTTClient_internal/html/annotated.html @@ -144,7 +144,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/classes.html b/docs/MQTTClient_internal/html/classes.html index 66489094..0ad5c503 100644 --- a/docs/MQTTClient_internal/html/classes.html +++ b/docs/MQTTClient_internal/html/classes.html @@ -191,7 +191,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/files.html b/docs/MQTTClient_internal/html/files.html index 985cb48f..e93c2976 100644 --- a/docs/MQTTClient_internal/html/files.html +++ b/docs/MQTTClient_internal/html/files.html @@ -93,7 +93,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions.html b/docs/MQTTClient_internal/html/functions.html index ed617644..f83f2684 100644 --- a/docs/MQTTClient_internal/html/functions.html +++ b/docs/MQTTClient_internal/html/functions.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_a.html b/docs/MQTTClient_internal/html/functions_a.html index 4b19ee4e..303acb3e 100644 --- a/docs/MQTTClient_internal/html/functions_a.html +++ b/docs/MQTTClient_internal/html/functions_a.html @@ -95,7 +95,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_b.html b/docs/MQTTClient_internal/html/functions_b.html index 48dc73a1..b8bc602d 100644 --- a/docs/MQTTClient_internal/html/functions_b.html +++ b/docs/MQTTClient_internal/html/functions_b.html @@ -93,7 +93,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_c.html b/docs/MQTTClient_internal/html/functions_c.html index 0aec4302..6206c6af 100644 --- a/docs/MQTTClient_internal/html/functions_c.html +++ b/docs/MQTTClient_internal/html/functions_c.html @@ -137,7 +137,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_d.html b/docs/MQTTClient_internal/html/functions_d.html index b55bf0f9..3e259b4e 100644 --- a/docs/MQTTClient_internal/html/functions_d.html +++ b/docs/MQTTClient_internal/html/functions_d.html @@ -98,7 +98,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_e.html b/docs/MQTTClient_internal/html/functions_e.html index 04811425..2010311e 100644 --- a/docs/MQTTClient_internal/html/functions_e.html +++ b/docs/MQTTClient_internal/html/functions_e.html @@ -77,7 +77,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_f.html b/docs/MQTTClient_internal/html/functions_f.html index 61ef5cfb..f53415e8 100644 --- a/docs/MQTTClient_internal/html/functions_f.html +++ b/docs/MQTTClient_internal/html/functions_f.html @@ -85,7 +85,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_g.html b/docs/MQTTClient_internal/html/functions_g.html index 2ec70b92..94735cfe 100644 --- a/docs/MQTTClient_internal/html/functions_g.html +++ b/docs/MQTTClient_internal/html/functions_g.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_h.html b/docs/MQTTClient_internal/html/functions_h.html index 4efed2c1..98e8f23a 100644 --- a/docs/MQTTClient_internal/html/functions_h.html +++ b/docs/MQTTClient_internal/html/functions_h.html @@ -95,7 +95,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_i.html b/docs/MQTTClient_internal/html/functions_i.html index 53f97961..2c1c554a 100644 --- a/docs/MQTTClient_internal/html/functions_i.html +++ b/docs/MQTTClient_internal/html/functions_i.html @@ -84,7 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_k.html b/docs/MQTTClient_internal/html/functions_k.html index 013c11dd..79cd5de4 100644 --- a/docs/MQTTClient_internal/html/functions_k.html +++ b/docs/MQTTClient_internal/html/functions_k.html @@ -81,7 +81,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_l.html b/docs/MQTTClient_internal/html/functions_l.html index 6fb47e50..6c3aa4ec 100644 --- a/docs/MQTTClient_internal/html/functions_l.html +++ b/docs/MQTTClient_internal/html/functions_l.html @@ -88,7 +88,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_m.html b/docs/MQTTClient_internal/html/functions_m.html index ebd59570..6165c427 100644 --- a/docs/MQTTClient_internal/html/functions_m.html +++ b/docs/MQTTClient_internal/html/functions_m.html @@ -142,7 +142,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_n.html b/docs/MQTTClient_internal/html/functions_n.html index acb8a7d3..be6e24b3 100644 --- a/docs/MQTTClient_internal/html/functions_n.html +++ b/docs/MQTTClient_internal/html/functions_n.html @@ -84,7 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_o.html b/docs/MQTTClient_internal/html/functions_o.html index ec10bf3c..469d305f 100644 --- a/docs/MQTTClient_internal/html/functions_o.html +++ b/docs/MQTTClient_internal/html/functions_o.html @@ -92,7 +92,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_p.html b/docs/MQTTClient_internal/html/functions_p.html index d8758b44..3ad28c6b 100644 --- a/docs/MQTTClient_internal/html/functions_p.html +++ b/docs/MQTTClient_internal/html/functions_p.html @@ -113,6 +113,12 @@ $(function() {
  • phandle : Clients
  • +
  • ping_due +: Clients +
  • +
  • ping_due_time +: Clients +
  • pkeys : MQTTClient_persistence
  • @@ -174,7 +180,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_q.html b/docs/MQTTClient_internal/html/functions_q.html index b47e42fa..937d561a 100644 --- a/docs/MQTTClient_internal/html/functions_q.html +++ b/docs/MQTTClient_internal/html/functions_q.html @@ -83,7 +83,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_r.html b/docs/MQTTClient_internal/html/functions_r.html index ff0771b4..140d5c4b 100644 --- a/docs/MQTTClient_internal/html/functions_r.html +++ b/docs/MQTTClient_internal/html/functions_r.html @@ -122,7 +122,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_s.html b/docs/MQTTClient_internal/html/functions_s.html index a6e612ef..77c01db4 100644 --- a/docs/MQTTClient_internal/html/functions_s.html +++ b/docs/MQTTClient_internal/html/functions_s.html @@ -167,7 +167,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_t.html b/docs/MQTTClient_internal/html/functions_t.html index 80440909..103cd93d 100644 --- a/docs/MQTTClient_internal/html/functions_t.html +++ b/docs/MQTTClient_internal/html/functions_t.html @@ -99,7 +99,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_u.html b/docs/MQTTClient_internal/html/functions_u.html index 75bb77fd..c1dc6b11 100644 --- a/docs/MQTTClient_internal/html/functions_u.html +++ b/docs/MQTTClient_internal/html/functions_u.html @@ -79,7 +79,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_v.html b/docs/MQTTClient_internal/html/functions_v.html index 76ae7758..bc77f28d 100644 --- a/docs/MQTTClient_internal/html/functions_v.html +++ b/docs/MQTTClient_internal/html/functions_v.html @@ -80,7 +80,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars.html b/docs/MQTTClient_internal/html/functions_vars.html index 5fc3b014..0c952280 100644 --- a/docs/MQTTClient_internal/html/functions_vars.html +++ b/docs/MQTTClient_internal/html/functions_vars.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_a.html b/docs/MQTTClient_internal/html/functions_vars_a.html index c421b99f..044a5776 100644 --- a/docs/MQTTClient_internal/html/functions_vars_a.html +++ b/docs/MQTTClient_internal/html/functions_vars_a.html @@ -95,7 +95,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_b.html b/docs/MQTTClient_internal/html/functions_vars_b.html index af9ee99e..4852f3c4 100644 --- a/docs/MQTTClient_internal/html/functions_vars_b.html +++ b/docs/MQTTClient_internal/html/functions_vars_b.html @@ -93,7 +93,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_c.html b/docs/MQTTClient_internal/html/functions_vars_c.html index b0b1b9d5..2d064b99 100644 --- a/docs/MQTTClient_internal/html/functions_vars_c.html +++ b/docs/MQTTClient_internal/html/functions_vars_c.html @@ -137,7 +137,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_d.html b/docs/MQTTClient_internal/html/functions_vars_d.html index 1c3c0b98..076d4bca 100644 --- a/docs/MQTTClient_internal/html/functions_vars_d.html +++ b/docs/MQTTClient_internal/html/functions_vars_d.html @@ -98,7 +98,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_e.html b/docs/MQTTClient_internal/html/functions_vars_e.html index 6ed7414e..387a0bed 100644 --- a/docs/MQTTClient_internal/html/functions_vars_e.html +++ b/docs/MQTTClient_internal/html/functions_vars_e.html @@ -77,7 +77,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_f.html b/docs/MQTTClient_internal/html/functions_vars_f.html index 3be805e2..a3db431a 100644 --- a/docs/MQTTClient_internal/html/functions_vars_f.html +++ b/docs/MQTTClient_internal/html/functions_vars_f.html @@ -85,7 +85,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_g.html b/docs/MQTTClient_internal/html/functions_vars_g.html index d47a2234..904cb7dc 100644 --- a/docs/MQTTClient_internal/html/functions_vars_g.html +++ b/docs/MQTTClient_internal/html/functions_vars_g.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_h.html b/docs/MQTTClient_internal/html/functions_vars_h.html index 52192087..779aa580 100644 --- a/docs/MQTTClient_internal/html/functions_vars_h.html +++ b/docs/MQTTClient_internal/html/functions_vars_h.html @@ -95,7 +95,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_i.html b/docs/MQTTClient_internal/html/functions_vars_i.html index c6f54ba1..a5cf62c2 100644 --- a/docs/MQTTClient_internal/html/functions_vars_i.html +++ b/docs/MQTTClient_internal/html/functions_vars_i.html @@ -84,7 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_k.html b/docs/MQTTClient_internal/html/functions_vars_k.html index 9bcbfda9..132b3962 100644 --- a/docs/MQTTClient_internal/html/functions_vars_k.html +++ b/docs/MQTTClient_internal/html/functions_vars_k.html @@ -81,7 +81,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_l.html b/docs/MQTTClient_internal/html/functions_vars_l.html index 863af874..ad7aa5be 100644 --- a/docs/MQTTClient_internal/html/functions_vars_l.html +++ b/docs/MQTTClient_internal/html/functions_vars_l.html @@ -88,7 +88,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_m.html b/docs/MQTTClient_internal/html/functions_vars_m.html index ec2a763c..a7db336a 100644 --- a/docs/MQTTClient_internal/html/functions_vars_m.html +++ b/docs/MQTTClient_internal/html/functions_vars_m.html @@ -142,7 +142,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_n.html b/docs/MQTTClient_internal/html/functions_vars_n.html index 09867239..221d7391 100644 --- a/docs/MQTTClient_internal/html/functions_vars_n.html +++ b/docs/MQTTClient_internal/html/functions_vars_n.html @@ -84,7 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_o.html b/docs/MQTTClient_internal/html/functions_vars_o.html index d65ce04d..d7fec197 100644 --- a/docs/MQTTClient_internal/html/functions_vars_o.html +++ b/docs/MQTTClient_internal/html/functions_vars_o.html @@ -92,7 +92,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_p.html b/docs/MQTTClient_internal/html/functions_vars_p.html index 4688559c..b4bb8281 100644 --- a/docs/MQTTClient_internal/html/functions_vars_p.html +++ b/docs/MQTTClient_internal/html/functions_vars_p.html @@ -113,6 +113,12 @@ $(function() {
  • phandle : Clients
  • +
  • ping_due +: Clients +
  • +
  • ping_due_time +: Clients +
  • pkeys : MQTTClient_persistence
  • @@ -174,7 +180,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_q.html b/docs/MQTTClient_internal/html/functions_vars_q.html index c1d9ef26..d0a6f4d5 100644 --- a/docs/MQTTClient_internal/html/functions_vars_q.html +++ b/docs/MQTTClient_internal/html/functions_vars_q.html @@ -83,7 +83,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_r.html b/docs/MQTTClient_internal/html/functions_vars_r.html index 455d2f38..620c05e5 100644 --- a/docs/MQTTClient_internal/html/functions_vars_r.html +++ b/docs/MQTTClient_internal/html/functions_vars_r.html @@ -122,7 +122,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_s.html b/docs/MQTTClient_internal/html/functions_vars_s.html index 555c8eb1..f3969a03 100644 --- a/docs/MQTTClient_internal/html/functions_vars_s.html +++ b/docs/MQTTClient_internal/html/functions_vars_s.html @@ -167,7 +167,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_t.html b/docs/MQTTClient_internal/html/functions_vars_t.html index 43e623b5..d0d53a41 100644 --- a/docs/MQTTClient_internal/html/functions_vars_t.html +++ b/docs/MQTTClient_internal/html/functions_vars_t.html @@ -99,7 +99,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_u.html b/docs/MQTTClient_internal/html/functions_vars_u.html index 1ab4d51f..37b8e323 100644 --- a/docs/MQTTClient_internal/html/functions_vars_u.html +++ b/docs/MQTTClient_internal/html/functions_vars_u.html @@ -79,7 +79,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_v.html b/docs/MQTTClient_internal/html/functions_vars_v.html index c9fe81ae..116897a4 100644 --- a/docs/MQTTClient_internal/html/functions_vars_v.html +++ b/docs/MQTTClient_internal/html/functions_vars_v.html @@ -80,7 +80,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_vars_w.html b/docs/MQTTClient_internal/html/functions_vars_w.html index 6129d2c5..e1ce0a22 100644 --- a/docs/MQTTClient_internal/html/functions_vars_w.html +++ b/docs/MQTTClient_internal/html/functions_vars_w.html @@ -96,7 +96,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/functions_w.html b/docs/MQTTClient_internal/html/functions_w.html index 61a8e98d..a9b9c559 100644 --- a/docs/MQTTClient_internal/html/functions_w.html +++ b/docs/MQTTClient_internal/html/functions_w.html @@ -96,7 +96,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals.html b/docs/MQTTClient_internal/html/globals.html index a6668400..083d1138 100644 --- a/docs/MQTTClient_internal/html/globals.html +++ b/docs/MQTTClient_internal/html/globals.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_a.html b/docs/MQTTClient_internal/html/globals_a.html index 0a322638..b023f838 100644 --- a/docs/MQTTClient_internal/html/globals_a.html +++ b/docs/MQTTClient_internal/html/globals_a.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_b.html b/docs/MQTTClient_internal/html/globals_b.html index 2876b04b..82f43b59 100644 --- a/docs/MQTTClient_internal/html/globals_b.html +++ b/docs/MQTTClient_internal/html/globals_b.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_c.html b/docs/MQTTClient_internal/html/globals_c.html index 5da36afa..43b908af 100644 --- a/docs/MQTTClient_internal/html/globals_c.html +++ b/docs/MQTTClient_internal/html/globals_c.html @@ -84,7 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_d.html b/docs/MQTTClient_internal/html/globals_d.html index eb9bda60..4e1791d3 100644 --- a/docs/MQTTClient_internal/html/globals_d.html +++ b/docs/MQTTClient_internal/html/globals_d.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_defs.html b/docs/MQTTClient_internal/html/globals_defs.html index b45e79ea..1d6d49cb 100644 --- a/docs/MQTTClient_internal/html/globals_defs.html +++ b/docs/MQTTClient_internal/html/globals_defs.html @@ -85,7 +85,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_f.html b/docs/MQTTClient_internal/html/globals_f.html index e75bae13..99e920e4 100644 --- a/docs/MQTTClient_internal/html/globals_f.html +++ b/docs/MQTTClient_internal/html/globals_f.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func.html b/docs/MQTTClient_internal/html/globals_func.html index 95e67377..f7774e6b 100644 --- a/docs/MQTTClient_internal/html/globals_func.html +++ b/docs/MQTTClient_internal/html/globals_func.html @@ -84,7 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_f.html b/docs/MQTTClient_internal/html/globals_func_f.html index 0b40a54b..359f9152 100644 --- a/docs/MQTTClient_internal/html/globals_func_f.html +++ b/docs/MQTTClient_internal/html/globals_func_f.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_h.html b/docs/MQTTClient_internal/html/globals_func_h.html index 51f74d91..2c9271b3 100644 --- a/docs/MQTTClient_internal/html/globals_func_h.html +++ b/docs/MQTTClient_internal/html/globals_func_h.html @@ -96,7 +96,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_i.html b/docs/MQTTClient_internal/html/globals_func_i.html index 153f1159..80ae1879 100644 --- a/docs/MQTTClient_internal/html/globals_func_i.html +++ b/docs/MQTTClient_internal/html/globals_func_i.html @@ -78,7 +78,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_l.html b/docs/MQTTClient_internal/html/globals_func_l.html index 2b678368..d60d4aea 100644 --- a/docs/MQTTClient_internal/html/globals_func_l.html +++ b/docs/MQTTClient_internal/html/globals_func_l.html @@ -135,7 +135,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_m.html b/docs/MQTTClient_internal/html/globals_func_m.html index 320d136c..48d92b84 100644 --- a/docs/MQTTClient_internal/html/globals_func_m.html +++ b/docs/MQTTClient_internal/html/globals_func_m.html @@ -402,7 +402,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_p.html b/docs/MQTTClient_internal/html/globals_func_p.html index 48dc89ae..2a363688 100644 --- a/docs/MQTTClient_internal/html/globals_func_p.html +++ b/docs/MQTTClient_internal/html/globals_func_p.html @@ -102,7 +102,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_r.html b/docs/MQTTClient_internal/html/globals_func_r.html index 3a9945e8..95b59c28 100644 --- a/docs/MQTTClient_internal/html/globals_func_r.html +++ b/docs/MQTTClient_internal/html/globals_func_r.html @@ -84,7 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_s.html b/docs/MQTTClient_internal/html/globals_func_s.html index 4b6a24f6..e513522e 100644 --- a/docs/MQTTClient_internal/html/globals_func_s.html +++ b/docs/MQTTClient_internal/html/globals_func_s.html @@ -180,7 +180,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_t.html b/docs/MQTTClient_internal/html/globals_func_t.html index 7d114a89..d5b0742c 100644 --- a/docs/MQTTClient_internal/html/globals_func_t.html +++ b/docs/MQTTClient_internal/html/globals_func_t.html @@ -99,7 +99,7 @@ $(function() { : Thread.c
  • Thread_start() -: Thread.c +: Thread.c
  • Thread_unlock_mutex() : Thread.c @@ -126,7 +126,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_u.html b/docs/MQTTClient_internal/html/globals_func_u.html index 3ca025e9..e5ef93fa 100644 --- a/docs/MQTTClient_internal/html/globals_func_u.html +++ b/docs/MQTTClient_internal/html/globals_func_u.html @@ -78,7 +78,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_func_w.html b/docs/MQTTClient_internal/html/globals_func_w.html index 2e4f6629..5da27016 100644 --- a/docs/MQTTClient_internal/html/globals_func_w.html +++ b/docs/MQTTClient_internal/html/globals_func_w.html @@ -84,7 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_h.html b/docs/MQTTClient_internal/html/globals_h.html index 755f3950..3f2a9b39 100644 --- a/docs/MQTTClient_internal/html/globals_h.html +++ b/docs/MQTTClient_internal/html/globals_h.html @@ -99,7 +99,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_i.html b/docs/MQTTClient_internal/html/globals_i.html index 346b98ec..30efe5d6 100644 --- a/docs/MQTTClient_internal/html/globals_i.html +++ b/docs/MQTTClient_internal/html/globals_i.html @@ -78,7 +78,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_l.html b/docs/MQTTClient_internal/html/globals_l.html index 4aa8bb56..2b8c8507 100644 --- a/docs/MQTTClient_internal/html/globals_l.html +++ b/docs/MQTTClient_internal/html/globals_l.html @@ -144,7 +144,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_m.html b/docs/MQTTClient_internal/html/globals_m.html index 70abc2d5..cb4932ba 100644 --- a/docs/MQTTClient_internal/html/globals_m.html +++ b/docs/MQTTClient_internal/html/globals_m.html @@ -426,7 +426,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_n.html b/docs/MQTTClient_internal/html/globals_n.html index 935f5244..c7dca263 100644 --- a/docs/MQTTClient_internal/html/globals_n.html +++ b/docs/MQTTClient_internal/html/globals_n.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_p.html b/docs/MQTTClient_internal/html/globals_p.html index 455fb494..c5b951e5 100644 --- a/docs/MQTTClient_internal/html/globals_p.html +++ b/docs/MQTTClient_internal/html/globals_p.html @@ -129,7 +129,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_q.html b/docs/MQTTClient_internal/html/globals_q.html index 9e2cadb9..8a395d3b 100644 --- a/docs/MQTTClient_internal/html/globals_q.html +++ b/docs/MQTTClient_internal/html/globals_q.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_r.html b/docs/MQTTClient_internal/html/globals_r.html index 136a7179..0e04b6ce 100644 --- a/docs/MQTTClient_internal/html/globals_r.html +++ b/docs/MQTTClient_internal/html/globals_r.html @@ -84,7 +84,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_s.html b/docs/MQTTClient_internal/html/globals_s.html index 0c5cb239..cb8c7385 100644 --- a/docs/MQTTClient_internal/html/globals_s.html +++ b/docs/MQTTClient_internal/html/globals_s.html @@ -183,7 +183,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_t.html b/docs/MQTTClient_internal/html/globals_t.html index 50c013e4..76c182db 100644 --- a/docs/MQTTClient_internal/html/globals_t.html +++ b/docs/MQTTClient_internal/html/globals_t.html @@ -99,7 +99,7 @@ $(function() { : Thread.c
  • Thread_start() -: Thread.c +: Thread.c
  • Thread_unlock_mutex() : Thread.c @@ -135,7 +135,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_type.html b/docs/MQTTClient_internal/html/globals_type.html index 27108ebc..beb6f5b2 100644 --- a/docs/MQTTClient_internal/html/globals_type.html +++ b/docs/MQTTClient_internal/html/globals_type.html @@ -97,7 +97,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_u.html b/docs/MQTTClient_internal/html/globals_u.html index 1cd6f27d..c67d69da 100644 --- a/docs/MQTTClient_internal/html/globals_u.html +++ b/docs/MQTTClient_internal/html/globals_u.html @@ -81,7 +81,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_v.html b/docs/MQTTClient_internal/html/globals_v.html index 8460a06e..0c08c7d5 100644 --- a/docs/MQTTClient_internal/html/globals_v.html +++ b/docs/MQTTClient_internal/html/globals_v.html @@ -72,7 +72,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_vars.html b/docs/MQTTClient_internal/html/globals_vars.html index 378bdd3a..b96d153b 100644 --- a/docs/MQTTClient_internal/html/globals_vars.html +++ b/docs/MQTTClient_internal/html/globals_vars.html @@ -121,7 +121,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/globals_w.html b/docs/MQTTClient_internal/html/globals_w.html index ce2b2365..ca048576 100644 --- a/docs/MQTTClient_internal/html/globals_w.html +++ b/docs/MQTTClient_internal/html/globals_w.html @@ -87,7 +87,7 @@ $(function() { diff --git a/docs/MQTTClient_internal/html/graph_legend.html b/docs/MQTTClient_internal/html/graph_legend.html index 46325896..1dd86eed 100644 --- a/docs/MQTTClient_internal/html/graph_legend.html +++ b/docs/MQTTClient_internal/html/graph_legend.html @@ -129,7 +129,7 @@ A yellow dashed arrow denotes a relation between a template instance and the tem diff --git a/docs/MQTTClient_internal/html/graph_legend.png b/docs/MQTTClient_internal/html/graph_legend.png index 383ed6e9..f77bb212 100644 Binary files a/docs/MQTTClient_internal/html/graph_legend.png and b/docs/MQTTClient_internal/html/graph_legend.png differ diff --git a/docs/MQTTClient_internal/html/index.html b/docs/MQTTClient_internal/html/index.html index 98533ea0..f20fc159 100644 --- a/docs/MQTTClient_internal/html/index.html +++ b/docs/MQTTClient_internal/html/index.html @@ -74,7 +74,7 @@ timeout" interval, whose default is 30 seconds.

    diff --git a/docs/MQTTClient_internal/html/search/all_10.js b/docs/MQTTClient_internal/html/search/all_10.js index 2035bba9..f051457f 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_374',['qEntry',['../structqEntry.html',1,'']]], - ['qos_375',['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_376',['qosList',['../structMQTTAsync__successData.html#aa4ad4a4023c5b9796e44b9dfd0df53e7',1,'MQTTAsync_successData']]], - ['qoss_377',['qoss',['../structSuback.html#a7769bd0751e462641636354d36505c28',1,'Suback']]], - ['queues_378',['queues',['../SocketBuffer_8c.html#aa8b85db4dca13d13c2b7fc704420323a',1,'SocketBuffer.c']]] + ['qentry_376',['qEntry',['../structqEntry.html',1,'']]], + ['qos_377',['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_378',['qosList',['../structMQTTAsync__successData.html#aa4ad4a4023c5b9796e44b9dfd0df53e7',1,'MQTTAsync_successData']]], + ['qoss_379',['qoss',['../structSuback.html#a7769bd0751e462641636354d36505c28',1,'Suback']]], + ['queues_380',['queues',['../SocketBuffer_8c.html#aa8b85db4dca13d13c2b7fc704420323a',1,'SocketBuffer.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_11.js b/docs/MQTTClient_internal/html/search/all_11.js index 8e3e85ee..bbb6bba2 100644 --- a/docs/MQTTClient_internal/html/search/all_11.js +++ b/docs/MQTTClient_internal/html/search/all_11.js @@ -1,23 +1,23 @@ var searchData= [ - ['rc_379',['rc',['../structConnack.html#a5a963839f48e7f1319af687621f6e3ec',1,'Connack::rc()'],['../structAck.html#a54d6ed9d045c38877e27bdf5802e3efe',1,'Ack::rc()']]], - ['readchar_380',['readChar',['../MQTTPacket_8c.html#aff1d10b221f5b4ce421b4c2588cbe511',1,'MQTTPacket.c']]], - ['readint_381',['readInt',['../MQTTPacket_8c.html#a132d2d5b304d37cd2348a973f7b315de',1,'MQTTPacket.c']]], - ['readint4_382',['readInt4',['../MQTTPacket_8c.html#aa8fc559d3a1e58ab50e69146666f2f63',1,'MQTTPacket.c']]], - ['readutf_383',['readUTF',['../MQTTPacket_8c.html#adca3afbe588ae7e6f342c5a697e4ee45',1,'MQTTPacket.c']]], - ['readutflen_384',['readUTFlen',['../MQTTPacket_8c.html#ae1ec2d8714335c6ec88c93e957b644d2',1,'MQTTPacket.c']]], - ['reasoncode_385',['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_386',['reasonCodeCount',['../structMQTTAsync__successData5.html#a0bfa041c9ce783614786235c650a80aa',1,'MQTTAsync_successData5']]], - ['reasoncodes_387',['reasonCodes',['../structMQTTAsync__successData5.html#abe4fb1e0907a7a1e77fdb6851879b605',1,'MQTTAsync_successData5::reasonCodes()'],['../structUnsuback.html#ac5fabab5aa00869b6ef4901cb4849122',1,'Unsuback::reasonCodes()']]], - ['reliable_388',['reliable',['../structMQTTClient__connectOptions.html#acd6367d7a402e7b668f8ec9760cd42c8',1,'MQTTClient_connectOptions']]], - ['reserved_389',['reserved',['../structConnack.html#a455bf40d0da52ccfd9b546e7fa23b1d0',1,'Connack']]], - ['retain_390',['retain',['../unionHeader.html#afa52b52e4b84075cf31612a6ac3a0299',1,'Header']]], - ['retainaspublished_391',['retainAsPublished',['../structMQTTSubscribe__options.html#a9c66f0773c0484dde0e582b4c47d9bf7',1,'MQTTSubscribe_options']]], - ['retained_392',['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_393',['retainHandling',['../structMQTTSubscribe__options.html#a8375543f39c16e32698226db118076e6',1,'MQTTSubscribe_options']]], - ['retryinterval_394',['retryInterval',['../structMQTTAsync__connectOptions.html#a7f4026dad0479c6658aac68d719950a1',1,'MQTTAsync_connectOptions::retryInterval()'],['../structMQTTClient__connectOptions.html#aabeb07cc7a2aa18fc1fb365503185c62',1,'MQTTClient_connectOptions::retryInterval()']]], - ['returned_395',['returned',['../structMQTTClient__connectOptions.html#a198e91c4adb81b5851cbd5c2eb14424e',1,'MQTTClient_connectOptions']]], - ['root_396',['root',['../structTree.html#ad8e46ce0aead5778cbdd784d1e370d5f',1,'Tree']]], - ['rset_397',['rset',['../structSockets.html#aa56708bbaf392eb8d372d01f6bd2e7e8',1,'Sockets']]], - ['rset_5fsaved_398',['rset_saved',['../structSockets.html#a1e2c4da3be7756df304ed1aaef86b894',1,'Sockets']]] + ['rc_381',['rc',['../structConnack.html#a5a963839f48e7f1319af687621f6e3ec',1,'Connack::rc()'],['../structAck.html#a54d6ed9d045c38877e27bdf5802e3efe',1,'Ack::rc()']]], + ['readchar_382',['readChar',['../MQTTPacket_8c.html#aff1d10b221f5b4ce421b4c2588cbe511',1,'MQTTPacket.c']]], + ['readint_383',['readInt',['../MQTTPacket_8c.html#a132d2d5b304d37cd2348a973f7b315de',1,'MQTTPacket.c']]], + ['readint4_384',['readInt4',['../MQTTPacket_8c.html#aa8fc559d3a1e58ab50e69146666f2f63',1,'MQTTPacket.c']]], + ['readutf_385',['readUTF',['../MQTTPacket_8c.html#adca3afbe588ae7e6f342c5a697e4ee45',1,'MQTTPacket.c']]], + ['readutflen_386',['readUTFlen',['../MQTTPacket_8c.html#ae1ec2d8714335c6ec88c93e957b644d2',1,'MQTTPacket.c']]], + ['reasoncode_387',['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_388',['reasonCodeCount',['../structMQTTAsync__successData5.html#a0bfa041c9ce783614786235c650a80aa',1,'MQTTAsync_successData5']]], + ['reasoncodes_389',['reasonCodes',['../structMQTTAsync__successData5.html#abe4fb1e0907a7a1e77fdb6851879b605',1,'MQTTAsync_successData5::reasonCodes()'],['../structUnsuback.html#ac5fabab5aa00869b6ef4901cb4849122',1,'Unsuback::reasonCodes()']]], + ['reliable_390',['reliable',['../structMQTTClient__connectOptions.html#acd6367d7a402e7b668f8ec9760cd42c8',1,'MQTTClient_connectOptions']]], + ['reserved_391',['reserved',['../structConnack.html#a455bf40d0da52ccfd9b546e7fa23b1d0',1,'Connack']]], + ['retain_392',['retain',['../unionHeader.html#afa52b52e4b84075cf31612a6ac3a0299',1,'Header']]], + ['retainaspublished_393',['retainAsPublished',['../structMQTTSubscribe__options.html#a9c66f0773c0484dde0e582b4c47d9bf7',1,'MQTTSubscribe_options']]], + ['retained_394',['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_395',['retainHandling',['../structMQTTSubscribe__options.html#a8375543f39c16e32698226db118076e6',1,'MQTTSubscribe_options']]], + ['retryinterval_396',['retryInterval',['../structMQTTAsync__connectOptions.html#a7f4026dad0479c6658aac68d719950a1',1,'MQTTAsync_connectOptions::retryInterval()'],['../structMQTTClient__connectOptions.html#aabeb07cc7a2aa18fc1fb365503185c62',1,'MQTTClient_connectOptions::retryInterval()']]], + ['returned_397',['returned',['../structMQTTClient__connectOptions.html#a198e91c4adb81b5851cbd5c2eb14424e',1,'MQTTClient_connectOptions']]], + ['root_398',['root',['../structTree.html#ad8e46ce0aead5778cbdd784d1e370d5f',1,'Tree']]], + ['rset_399',['rset',['../structSockets.html#aa56708bbaf392eb8d372d01f6bd2e7e8',1,'Sockets']]], + ['rset_5fsaved_400',['rset_saved',['../structSockets.html#a1e2c4da3be7756df304ed1aaef86b894',1,'Sockets']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_12.js b/docs/MQTTClient_internal/html/search/all_12.js index 6931b207..d7af1aa9 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_399',['sendWhileDisconnected',['../structMQTTAsync__createOptions.html#a7142a01ee58f39a950f8627c4bb05318',1,'MQTTAsync_createOptions']]], - ['serveruri_400',['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_401',['serverURIcount',['../structMQTTAsync__connectOptions.html#ae772aa4b3707c5c11d6be39f51ec4551',1,'MQTTAsync_connectOptions::serverURIcount()'],['../structMQTTClient__connectOptions.html#a71667cbc2aa857db5b831a1e6a4a1ec9',1,'MQTTClient_connectOptions::serverURIcount()']]], - ['serveruris_402',['serverURIs',['../structMQTTAsync__connectOptions.html#a50f0a294c8f7311ccd7f7803b432bb69',1,'MQTTAsync_connectOptions::serverURIs()'],['../structMQTTClient__connectOptions.html#aec63485af96db24d26868d3a19a83504',1,'MQTTClient_connectOptions::serverURIs()']]], - ['sessionexpiry_403',['sessionExpiry',['../structClients.html#a3ead27f8653d4866faed5d7b711159d1',1,'Clients']]], - ['sessionpresent_404',['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_405',['SHA_CTX_S',['../structSHA__CTX__S.html',1,'']]], - ['size_406',['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_407',['Socket.c',['../Socket_8c.html',1,'']]], - ['socket_5fabortwrite_408',['Socket_abortWrite',['../Socket_8c.html#ad246851be3980fd316d16864a786c808',1,'Socket.c']]], - ['socket_5faddpendingwrite_409',['Socket_addPendingWrite',['../Socket_8c.html#a8ba07ed0157d93bde9db6483b4bb4d67',1,'Socket.c']]], - ['socket_5faddsocket_410',['Socket_addSocket',['../Socket_8c.html#a3c690a1d23a55ccf1ea52cdea9b56432',1,'Socket.c']]], - ['socket_5fclearpendingwrite_411',['Socket_clearPendingWrite',['../Socket_8c.html#a0cf9d34480e63e2d6eaaaff09e3fddf7',1,'Socket.c']]], - ['socket_5fclose_412',['Socket_close',['../Socket_8c.html#a6bdb051c5944e1a0fd16ba18544ab5df',1,'Socket.c']]], - ['socket_5fclose_5fonly_413',['Socket_close_only',['../Socket_8c.html#a2e7c21836cd061947d6d6e28446c4a59',1,'Socket.c']]], - ['socket_5fcontinuewrite_414',['Socket_continueWrite',['../Socket_8c.html#a5ce31969f49786ef8452e2b547527578',1,'Socket.c']]], - ['socket_5fcontinuewrites_415',['Socket_continueWrites',['../Socket_8c.html#a40f45b094eb70875e06f96164afc4a49',1,'Socket.c']]], - ['socket_5ferror_416',['Socket_error',['../Socket_8c.html#a47824ad5afba267b9488150e1f7e8610',1,'Socket.c']]], - ['socket_5fgetaddrname_417',['Socket_getaddrname',['../Socket_8c.html#a22feda106732e755b6f9e44e026bd261',1,'Socket.c']]], - ['socket_5fgetch_418',['Socket_getch',['../Socket_8c.html#a9af02601f6b5ef066ba99d9498a024b8',1,'Socket.c']]], - ['socket_5fgetdata_419',['Socket_getdata',['../Socket_8c.html#a6e05161f70e828e8bd06ead38e0be6c8',1,'Socket.c']]], - ['socket_5fgetpeer_420',['Socket_getpeer',['../Socket_8c.html#a27952bf5cd133a873da9a218c7207059',1,'Socket.c']]], - ['socket_5fgetreadysocket_421',['Socket_getReadySocket',['../Socket_8c.html#a2c082b4e794c0a7835a0700f0bc7b3a1',1,'Socket.c']]], - ['socket_5fnew_422',['Socket_new',['../Socket_8c.html#acb965ef2124fa6736477c9286f7599b2',1,'Socket.c']]], - ['socket_5fnopendingwrites_423',['Socket_noPendingWrites',['../Socket_8c.html#ae95673b434f2c489ecefe4688c80be2d',1,'Socket.c']]], - ['socket_5foutinitialize_424',['Socket_outInitialize',['../Socket_8c.html#a573a6eea727016f3e8770f60e5eed958',1,'Socket.c']]], - ['socket_5foutterminate_425',['Socket_outTerminate',['../Socket_8c.html#af365aa1d5a29ffcb83bb15edaf3401e6',1,'Socket.c']]], - ['socket_5fputdatas_426',['Socket_putdatas',['../Socket_8c.html#a601ba77d9b01e908dbd0653f6efa3be0',1,'Socket.c']]], - ['socket_5fqueue_427',['socket_queue',['../structsocket__queue.html',1,'']]], - ['socket_5fsetnonblocking_428',['Socket_setnonblocking',['../Socket_8c.html#a90f49db5a5763c6874f27facfe9e60a3',1,'Socket.c']]], - ['socket_5fwritev_429',['Socket_writev',['../Socket_8c.html#aec4ee8ecb248d29d315d2624a88ed1c3',1,'Socket.c']]], - ['socketbuffer_2ec_430',['SocketBuffer.c',['../SocketBuffer_8c.html',1,'']]], - ['socketbuffer_5fcleanup_431',['SocketBuffer_cleanup',['../SocketBuffer_8c.html#a0601e12cab5b7c4777df10ca6d38a41b',1,'SocketBuffer.c']]], - ['socketbuffer_5fcomplete_432',['SocketBuffer_complete',['../SocketBuffer_8c.html#a0d007b15408ae802c78bc69f115cf91e',1,'SocketBuffer.c']]], - ['socketbuffer_5ffreedefq_433',['SocketBuffer_freeDefQ',['../SocketBuffer_8c.html#acb4511a3a4767187a2607027aff718b8',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetqueuedchar_434',['SocketBuffer_getQueuedChar',['../SocketBuffer_8c.html#a08102e2e43746ccd1ab26739b5841a7c',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetqueueddata_435',['SocketBuffer_getQueuedData',['../SocketBuffer_8c.html#a8a2e0c916232521098ff734d556c3b68',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetwrite_436',['SocketBuffer_getWrite',['../SocketBuffer_8c.html#a5f22a1ac450cb1805e2ab8f2ae3da80e',1,'SocketBuffer.c']]], - ['socketbuffer_5finitialize_437',['SocketBuffer_initialize',['../SocketBuffer_8c.html#abc8599ffc6f7ad91a7748e5d78bbd926',1,'SocketBuffer.c']]], - ['socketbuffer_5finterrupted_438',['SocketBuffer_interrupted',['../SocketBuffer_8c.html#aaac8b43c1ab5d20eb8e6b95de6e80671',1,'SocketBuffer.c']]], - ['socketbuffer_5fnewdefq_439',['SocketBuffer_newDefQ',['../SocketBuffer_8c.html#a9293d4ef45aa2a51baab9be4eb73091b',1,'SocketBuffer.c']]], - ['socketbuffer_5fpendingwrite_440',['SocketBuffer_pendingWrite',['../SocketBuffer_8c.html#a9a92acaaec423c44227e3dd978223529',1,'SocketBuffer.c']]], - ['socketbuffer_5fqueuechar_441',['SocketBuffer_queueChar',['../SocketBuffer_8c.html#a8a94cbb0db8ba0834a7f1c6e2eb938b4',1,'SocketBuffer.c']]], - ['socketbuffer_5fterminate_442',['SocketBuffer_terminate',['../SocketBuffer_8c.html#a4a8d6188b4775789810a44396d05cf19',1,'SocketBuffer.c']]], - ['socketbuffer_5fupdatewrite_443',['SocketBuffer_updateWrite',['../SocketBuffer_8c.html#a2b11bdc6ca61051b8edaed5620735602',1,'SocketBuffer.c']]], - ['socketbuffer_5fwritecomplete_444',['SocketBuffer_writeComplete',['../SocketBuffer_8c.html#a893ce45cf77f7d66c3f27c831ccf8124',1,'SocketBuffer.c']]], - ['socketcompare_445',['socketcompare',['../SocketBuffer_8c.html#acebc1cbb93be4588f33b04ed404f6dbf',1,'SocketBuffer.c']]], - ['sockets_446',['Sockets',['../structSockets.html',1,'']]], - ['ssl_447',['ssl',['../structMQTTAsync__connectOptions.html#a04c88f4a4aba7ca2cfbd9ee5455f0850',1,'MQTTAsync_connectOptions::ssl()'],['../structMQTTClient__connectOptions.html#a4e6be3b2292800db30c65dd66af85976',1,'MQTTClient_connectOptions::ssl()']]], - ['ssl_5ferror_5fcb_448',['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_449',['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_450',['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_451',['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_452',['SSLSocket.c',['../SSLSocket_8c.html',1,'']]], - ['sslversion_453',['sslVersion',['../structMQTTAsync__SSLOptions.html#ad14df49c90828d0d0efd93e707c3a4a6',1,'MQTTAsync_SSLOptions::sslVersion()'],['../structMQTTClient__SSLOptions.html#ace536bef1f2e763f28e761c0e3e3bdbe',1,'MQTTClient_SSLOptions::sslVersion()']]], - ['stackentry_454',['stackEntry',['../structstackEntry.html',1,'']]], - ['state_455',['state',['../Heap_8c.html#a20b83c8e52be131ca41d22b8bf2c3b38',1,'Heap.c']]], - ['storageelement_456',['storageElement',['../structstorageElement.html',1,'']]], - ['stringcompare_457',['stringcompare',['../LinkedList_8c.html#a936806c4b6f6c10d91cc128b63ab110c',1,'LinkedList.c']]], - ['struct_5fid_458',['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_459',['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_460',['sub',['../structMQTTAsync__successData5.html#ab3131c77b8bf772ea06ee580816ebc32',1,'MQTTAsync_successData5']]], - ['suback_461',['Suback',['../structSuback.html',1,'']]] + ['sendwhiledisconnected_401',['sendWhileDisconnected',['../structMQTTAsync__createOptions.html#a7142a01ee58f39a950f8627c4bb05318',1,'MQTTAsync_createOptions']]], + ['serveruri_402',['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_403',['serverURIcount',['../structMQTTAsync__connectOptions.html#ae772aa4b3707c5c11d6be39f51ec4551',1,'MQTTAsync_connectOptions::serverURIcount()'],['../structMQTTClient__connectOptions.html#a71667cbc2aa857db5b831a1e6a4a1ec9',1,'MQTTClient_connectOptions::serverURIcount()']]], + ['serveruris_404',['serverURIs',['../structMQTTAsync__connectOptions.html#a50f0a294c8f7311ccd7f7803b432bb69',1,'MQTTAsync_connectOptions::serverURIs()'],['../structMQTTClient__connectOptions.html#aec63485af96db24d26868d3a19a83504',1,'MQTTClient_connectOptions::serverURIs()']]], + ['sessionexpiry_405',['sessionExpiry',['../structClients.html#a3ead27f8653d4866faed5d7b711159d1',1,'Clients']]], + ['sessionpresent_406',['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_407',['SHA_CTX_S',['../structSHA__CTX__S.html',1,'']]], + ['size_408',['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_409',['Socket.c',['../Socket_8c.html',1,'']]], + ['socket_5fabortwrite_410',['Socket_abortWrite',['../Socket_8c.html#ad246851be3980fd316d16864a786c808',1,'Socket.c']]], + ['socket_5faddpendingwrite_411',['Socket_addPendingWrite',['../Socket_8c.html#a8ba07ed0157d93bde9db6483b4bb4d67',1,'Socket.c']]], + ['socket_5faddsocket_412',['Socket_addSocket',['../Socket_8c.html#a3c690a1d23a55ccf1ea52cdea9b56432',1,'Socket.c']]], + ['socket_5fclearpendingwrite_413',['Socket_clearPendingWrite',['../Socket_8c.html#a0cf9d34480e63e2d6eaaaff09e3fddf7',1,'Socket.c']]], + ['socket_5fclose_414',['Socket_close',['../Socket_8c.html#a6bdb051c5944e1a0fd16ba18544ab5df',1,'Socket.c']]], + ['socket_5fclose_5fonly_415',['Socket_close_only',['../Socket_8c.html#a2e7c21836cd061947d6d6e28446c4a59',1,'Socket.c']]], + ['socket_5fcontinuewrite_416',['Socket_continueWrite',['../Socket_8c.html#a5ce31969f49786ef8452e2b547527578',1,'Socket.c']]], + ['socket_5fcontinuewrites_417',['Socket_continueWrites',['../Socket_8c.html#a40f45b094eb70875e06f96164afc4a49',1,'Socket.c']]], + ['socket_5ferror_418',['Socket_error',['../Socket_8c.html#a47824ad5afba267b9488150e1f7e8610',1,'Socket.c']]], + ['socket_5fgetaddrname_419',['Socket_getaddrname',['../Socket_8c.html#a22feda106732e755b6f9e44e026bd261',1,'Socket.c']]], + ['socket_5fgetch_420',['Socket_getch',['../Socket_8c.html#a9af02601f6b5ef066ba99d9498a024b8',1,'Socket.c']]], + ['socket_5fgetdata_421',['Socket_getdata',['../Socket_8c.html#a6e05161f70e828e8bd06ead38e0be6c8',1,'Socket.c']]], + ['socket_5fgetpeer_422',['Socket_getpeer',['../Socket_8c.html#a27952bf5cd133a873da9a218c7207059',1,'Socket.c']]], + ['socket_5fgetreadysocket_423',['Socket_getReadySocket',['../Socket_8c.html#a2c082b4e794c0a7835a0700f0bc7b3a1',1,'Socket.c']]], + ['socket_5fnew_424',['Socket_new',['../Socket_8c.html#acb965ef2124fa6736477c9286f7599b2',1,'Socket.c']]], + ['socket_5fnopendingwrites_425',['Socket_noPendingWrites',['../Socket_8c.html#ae95673b434f2c489ecefe4688c80be2d',1,'Socket.c']]], + ['socket_5foutinitialize_426',['Socket_outInitialize',['../Socket_8c.html#a573a6eea727016f3e8770f60e5eed958',1,'Socket.c']]], + ['socket_5foutterminate_427',['Socket_outTerminate',['../Socket_8c.html#af365aa1d5a29ffcb83bb15edaf3401e6',1,'Socket.c']]], + ['socket_5fputdatas_428',['Socket_putdatas',['../Socket_8c.html#a601ba77d9b01e908dbd0653f6efa3be0',1,'Socket.c']]], + ['socket_5fqueue_429',['socket_queue',['../structsocket__queue.html',1,'']]], + ['socket_5fsetnonblocking_430',['Socket_setnonblocking',['../Socket_8c.html#a90f49db5a5763c6874f27facfe9e60a3',1,'Socket.c']]], + ['socket_5fwritev_431',['Socket_writev',['../Socket_8c.html#aec4ee8ecb248d29d315d2624a88ed1c3',1,'Socket.c']]], + ['socketbuffer_2ec_432',['SocketBuffer.c',['../SocketBuffer_8c.html',1,'']]], + ['socketbuffer_5fcleanup_433',['SocketBuffer_cleanup',['../SocketBuffer_8c.html#a0601e12cab5b7c4777df10ca6d38a41b',1,'SocketBuffer.c']]], + ['socketbuffer_5fcomplete_434',['SocketBuffer_complete',['../SocketBuffer_8c.html#a0d007b15408ae802c78bc69f115cf91e',1,'SocketBuffer.c']]], + ['socketbuffer_5ffreedefq_435',['SocketBuffer_freeDefQ',['../SocketBuffer_8c.html#acb4511a3a4767187a2607027aff718b8',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetqueuedchar_436',['SocketBuffer_getQueuedChar',['../SocketBuffer_8c.html#a08102e2e43746ccd1ab26739b5841a7c',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetqueueddata_437',['SocketBuffer_getQueuedData',['../SocketBuffer_8c.html#a8a2e0c916232521098ff734d556c3b68',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetwrite_438',['SocketBuffer_getWrite',['../SocketBuffer_8c.html#a5f22a1ac450cb1805e2ab8f2ae3da80e',1,'SocketBuffer.c']]], + ['socketbuffer_5finitialize_439',['SocketBuffer_initialize',['../SocketBuffer_8c.html#abc8599ffc6f7ad91a7748e5d78bbd926',1,'SocketBuffer.c']]], + ['socketbuffer_5finterrupted_440',['SocketBuffer_interrupted',['../SocketBuffer_8c.html#aaac8b43c1ab5d20eb8e6b95de6e80671',1,'SocketBuffer.c']]], + ['socketbuffer_5fnewdefq_441',['SocketBuffer_newDefQ',['../SocketBuffer_8c.html#a9293d4ef45aa2a51baab9be4eb73091b',1,'SocketBuffer.c']]], + ['socketbuffer_5fpendingwrite_442',['SocketBuffer_pendingWrite',['../SocketBuffer_8c.html#a9a92acaaec423c44227e3dd978223529',1,'SocketBuffer.c']]], + ['socketbuffer_5fqueuechar_443',['SocketBuffer_queueChar',['../SocketBuffer_8c.html#a8a94cbb0db8ba0834a7f1c6e2eb938b4',1,'SocketBuffer.c']]], + ['socketbuffer_5fterminate_444',['SocketBuffer_terminate',['../SocketBuffer_8c.html#a4a8d6188b4775789810a44396d05cf19',1,'SocketBuffer.c']]], + ['socketbuffer_5fupdatewrite_445',['SocketBuffer_updateWrite',['../SocketBuffer_8c.html#a2b11bdc6ca61051b8edaed5620735602',1,'SocketBuffer.c']]], + ['socketbuffer_5fwritecomplete_446',['SocketBuffer_writeComplete',['../SocketBuffer_8c.html#a893ce45cf77f7d66c3f27c831ccf8124',1,'SocketBuffer.c']]], + ['socketcompare_447',['socketcompare',['../SocketBuffer_8c.html#acebc1cbb93be4588f33b04ed404f6dbf',1,'SocketBuffer.c']]], + ['sockets_448',['Sockets',['../structSockets.html',1,'']]], + ['ssl_449',['ssl',['../structMQTTAsync__connectOptions.html#a04c88f4a4aba7ca2cfbd9ee5455f0850',1,'MQTTAsync_connectOptions::ssl()'],['../structMQTTClient__connectOptions.html#a4e6be3b2292800db30c65dd66af85976',1,'MQTTClient_connectOptions::ssl()']]], + ['ssl_5ferror_5fcb_450',['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_451',['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_452',['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_453',['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_454',['SSLSocket.c',['../SSLSocket_8c.html',1,'']]], + ['sslversion_455',['sslVersion',['../structMQTTAsync__SSLOptions.html#ad14df49c90828d0d0efd93e707c3a4a6',1,'MQTTAsync_SSLOptions::sslVersion()'],['../structMQTTClient__SSLOptions.html#ace536bef1f2e763f28e761c0e3e3bdbe',1,'MQTTClient_SSLOptions::sslVersion()']]], + ['stackentry_456',['stackEntry',['../structstackEntry.html',1,'']]], + ['state_457',['state',['../Heap_8c.html#a20b83c8e52be131ca41d22b8bf2c3b38',1,'Heap.c']]], + ['storageelement_458',['storageElement',['../structstorageElement.html',1,'']]], + ['stringcompare_459',['stringcompare',['../LinkedList_8c.html#a936806c4b6f6c10d91cc128b63ab110c',1,'LinkedList.c']]], + ['struct_5fid_460',['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_461',['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_462',['sub',['../structMQTTAsync__successData5.html#ab3131c77b8bf772ea06ee580816ebc32',1,'MQTTAsync_successData5']]], + ['suback_463',['Suback',['../structSuback.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_13.js b/docs/MQTTClient_internal/html/search/all_13.js index 6bfb5830..8c89358e 100644 --- a/docs/MQTTClient_internal/html/search/all_13.js +++ b/docs/MQTTClient_internal/html/search/all_13.js @@ -1,39 +1,39 @@ var searchData= [ - ['thread_2ec_462',['Thread.c',['../Thread_8c.html',1,'']]], - ['thread_5fcheck_5fsem_463',['Thread_check_sem',['../Thread_8c.html#ad327c467c568b27be4c3676fc698e129',1,'Thread.c']]], - ['thread_5fcreate_5fcond_464',['Thread_create_cond',['../Thread_8c.html#afdd152c518f968c777012d7dfb20ef96',1,'Thread.c']]], - ['thread_5fcreate_5fmutex_465',['Thread_create_mutex',['../Thread_8c.html#a6c1b6aaeb2f7e1d5b4a4936f0568b868',1,'Thread.c']]], - ['thread_5fcreate_5fsem_466',['Thread_create_sem',['../Thread_8c.html#a3b9b6cb543ee55442d2037a971f651db',1,'Thread.c']]], - ['thread_5fdestroy_5fcond_467',['Thread_destroy_cond',['../Thread_8c.html#a95309628f2c15de1f3ea8047b086a707',1,'Thread.c']]], - ['thread_5fdestroy_5fmutex_468',['Thread_destroy_mutex',['../Thread_8c.html#ab586558bf9d7030f479ca574ea7e55a4',1,'Thread.c']]], - ['thread_5fdestroy_5fsem_469',['Thread_destroy_sem',['../Thread_8c.html#ad075ec07f801ac1a2a7dee7097048182',1,'Thread.c']]], - ['thread_5fgetid_470',['Thread_getid',['../Thread_8c.html#a216e79bc196440343aa802dfad8dc38b',1,'Thread.c']]], - ['thread_5flock_5fmutex_471',['Thread_lock_mutex',['../Thread_8c.html#a7e92185eb22775c76e1b6b8865468f17',1,'Thread.c']]], - ['thread_5fpost_5fsem_472',['Thread_post_sem',['../Thread_8c.html#ac023f527bed9c6c3a20244fa7efe272c',1,'Thread.c']]], - ['thread_5fsignal_5fcond_473',['Thread_signal_cond',['../Thread_8c.html#a7b0d40dc1603a6e93db0ee970bb6750f',1,'Thread.c']]], - ['thread_5fstart_474',['Thread_start',['../Thread_8c.html#a2e22778d99253b899d19a5c92826b4e1',1,'Thread.c']]], - ['thread_5funlock_5fmutex_475',['Thread_unlock_mutex',['../Thread_8c.html#a5faf758226199e7cf93f6b489aca07f7',1,'Thread.c']]], - ['thread_5fwait_5fcond_476',['Thread_wait_cond',['../Thread_8c.html#ae8209c766c45f3c150db2c6735378936',1,'Thread.c']]], - ['thread_5fwait_5fsem_477',['Thread_wait_sem',['../Thread_8c.html#a4d0bbfc059da3cd10626244d3468d319',1,'Thread.c']]], - ['threadentry_478',['threadEntry',['../structthreadEntry.html',1,'']]], - ['timeout_479',['timeout',['../structMQTTAsync__disconnectOptions.html#a71f6175d58e01af30b064c19967d42ca',1,'MQTTAsync_disconnectOptions']]], - ['token_480',['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_481',['topic',['../structPublish.html#af25a32a9a9bccf70af72fa5a19fa7864',1,'Publish']]], - ['topicname_482',['topicName',['../structMQTTAsync__willOptions.html#a19983de96d2ae2df35c588e36200374e',1,'MQTTAsync_willOptions::topicName()'],['../structMQTTClient__willOptions.html#a9273da2e77ed9b60b018b43c8d868d47',1,'MQTTClient_willOptions::topicName()']]], - ['trace_5fdestination_483',['trace_destination',['../Log_8c.html#a29606f1185cb957cd23842125d7d8ecd',1,'Log.c']]], - ['trace_5fdestination_5fbackup_5fname_484',['trace_destination_backup_name',['../Log_8c.html#a6e2c5a6602ec82079f7b7c3c1a622f8a',1,'Log.c']]], - ['trace_5fdestination_5fname_485',['trace_destination_name',['../Log_8c.html#aa46cc371a2f34c92be9e5df8ac162566',1,'Log.c']]], - ['trace_5flevel_486',['trace_level',['../structtrace__settings__type.html#a169138f5e03c0408ca30820418dcf186',1,'trace_settings_type']]], - ['trace_5foutput_5flevel_487',['trace_output_level',['../structtrace__settings__type.html#af861eec94e990b63af949f50d630ee0d',1,'trace_settings_type']]], - ['trace_5fsettings_5ftype_488',['trace_settings_type',['../structtrace__settings__type.html',1,'']]], - ['traceentry_489',['traceEntry',['../structtraceEntry.html',1,'']]], - ['tree_490',['Tree',['../structTree.html',1,'']]], - ['tree_2ec_491',['Tree.c',['../Tree_8c.html',1,'']]], - ['treeaddbyindex_492',['TreeAddByIndex',['../Tree_8c.html#afa8473167abb71831644bf8a322bc3b6',1,'Tree.c']]], - ['treeinitialize_493',['TreeInitialize',['../Tree_8c.html#aa5ee1e466d266b289dc45cbd97116b83',1,'Tree.c']]], - ['treeremoveindex_494',['TreeRemoveIndex',['../Tree_8c.html#a1263bdfc6a906db3023ca1a6ad5302a4',1,'Tree.c']]], - ['treeremovenodeindex_495',['TreeRemoveNodeIndex',['../Tree_8c.html#a9c3b81e7e63498e3a8f7bd28c4caec10',1,'Tree.c']]], - ['truststore_496',['trustStore',['../structMQTTAsync__SSLOptions.html#a90760033b5ae9962126770c3527603fd',1,'MQTTAsync_SSLOptions::trustStore()'],['../structMQTTClient__SSLOptions.html#a4583779998f6b3b51c7c1d3226701a4c',1,'MQTTClient_SSLOptions::trustStore()']]], - ['type_497',['type',['../unionHeader.html#a05b7c9c6b02e41c54899caee9fdd50d6',1,'Header']]] + ['thread_2ec_464',['Thread.c',['../Thread_8c.html',1,'']]], + ['thread_5fcheck_5fsem_465',['Thread_check_sem',['../Thread_8c.html#ad327c467c568b27be4c3676fc698e129',1,'Thread.c']]], + ['thread_5fcreate_5fcond_466',['Thread_create_cond',['../Thread_8c.html#afdd152c518f968c777012d7dfb20ef96',1,'Thread.c']]], + ['thread_5fcreate_5fmutex_467',['Thread_create_mutex',['../Thread_8c.html#a6c1b6aaeb2f7e1d5b4a4936f0568b868',1,'Thread.c']]], + ['thread_5fcreate_5fsem_468',['Thread_create_sem',['../Thread_8c.html#a3b9b6cb543ee55442d2037a971f651db',1,'Thread.c']]], + ['thread_5fdestroy_5fcond_469',['Thread_destroy_cond',['../Thread_8c.html#a95309628f2c15de1f3ea8047b086a707',1,'Thread.c']]], + ['thread_5fdestroy_5fmutex_470',['Thread_destroy_mutex',['../Thread_8c.html#ab586558bf9d7030f479ca574ea7e55a4',1,'Thread.c']]], + ['thread_5fdestroy_5fsem_471',['Thread_destroy_sem',['../Thread_8c.html#ad075ec07f801ac1a2a7dee7097048182',1,'Thread.c']]], + ['thread_5fgetid_472',['Thread_getid',['../Thread_8c.html#a216e79bc196440343aa802dfad8dc38b',1,'Thread.c']]], + ['thread_5flock_5fmutex_473',['Thread_lock_mutex',['../Thread_8c.html#a7e92185eb22775c76e1b6b8865468f17',1,'Thread.c']]], + ['thread_5fpost_5fsem_474',['Thread_post_sem',['../Thread_8c.html#ac023f527bed9c6c3a20244fa7efe272c',1,'Thread.c']]], + ['thread_5fsignal_5fcond_475',['Thread_signal_cond',['../Thread_8c.html#a7b0d40dc1603a6e93db0ee970bb6750f',1,'Thread.c']]], + ['thread_5fstart_476',['Thread_start',['../Thread_8c.html#a25288643d5e1a2ab1369132a80c58ce4',1,'Thread.c']]], + ['thread_5funlock_5fmutex_477',['Thread_unlock_mutex',['../Thread_8c.html#a5faf758226199e7cf93f6b489aca07f7',1,'Thread.c']]], + ['thread_5fwait_5fcond_478',['Thread_wait_cond',['../Thread_8c.html#ae8209c766c45f3c150db2c6735378936',1,'Thread.c']]], + ['thread_5fwait_5fsem_479',['Thread_wait_sem',['../Thread_8c.html#a4d0bbfc059da3cd10626244d3468d319',1,'Thread.c']]], + ['threadentry_480',['threadEntry',['../structthreadEntry.html',1,'']]], + ['timeout_481',['timeout',['../structMQTTAsync__disconnectOptions.html#a71f6175d58e01af30b064c19967d42ca',1,'MQTTAsync_disconnectOptions']]], + ['token_482',['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_483',['topic',['../structPublish.html#af25a32a9a9bccf70af72fa5a19fa7864',1,'Publish']]], + ['topicname_484',['topicName',['../structMQTTAsync__willOptions.html#a19983de96d2ae2df35c588e36200374e',1,'MQTTAsync_willOptions::topicName()'],['../structMQTTClient__willOptions.html#a9273da2e77ed9b60b018b43c8d868d47',1,'MQTTClient_willOptions::topicName()']]], + ['trace_5fdestination_485',['trace_destination',['../Log_8c.html#a29606f1185cb957cd23842125d7d8ecd',1,'Log.c']]], + ['trace_5fdestination_5fbackup_5fname_486',['trace_destination_backup_name',['../Log_8c.html#a6e2c5a6602ec82079f7b7c3c1a622f8a',1,'Log.c']]], + ['trace_5fdestination_5fname_487',['trace_destination_name',['../Log_8c.html#aa46cc371a2f34c92be9e5df8ac162566',1,'Log.c']]], + ['trace_5flevel_488',['trace_level',['../structtrace__settings__type.html#a169138f5e03c0408ca30820418dcf186',1,'trace_settings_type']]], + ['trace_5foutput_5flevel_489',['trace_output_level',['../structtrace__settings__type.html#af861eec94e990b63af949f50d630ee0d',1,'trace_settings_type']]], + ['trace_5fsettings_5ftype_490',['trace_settings_type',['../structtrace__settings__type.html',1,'']]], + ['traceentry_491',['traceEntry',['../structtraceEntry.html',1,'']]], + ['tree_492',['Tree',['../structTree.html',1,'']]], + ['tree_2ec_493',['Tree.c',['../Tree_8c.html',1,'']]], + ['treeaddbyindex_494',['TreeAddByIndex',['../Tree_8c.html#afa8473167abb71831644bf8a322bc3b6',1,'Tree.c']]], + ['treeinitialize_495',['TreeInitialize',['../Tree_8c.html#aa5ee1e466d266b289dc45cbd97116b83',1,'Tree.c']]], + ['treeremoveindex_496',['TreeRemoveIndex',['../Tree_8c.html#a1263bdfc6a906db3023ca1a6ad5302a4',1,'Tree.c']]], + ['treeremovenodeindex_497',['TreeRemoveNodeIndex',['../Tree_8c.html#a9c3b81e7e63498e3a8f7bd28c4caec10',1,'Tree.c']]], + ['truststore_498',['trustStore',['../structMQTTAsync__SSLOptions.html#a90760033b5ae9962126770c3527603fd',1,'MQTTAsync_SSLOptions::trustStore()'],['../structMQTTClient__SSLOptions.html#a4583779998f6b3b51c7c1d3226701a4c',1,'MQTTClient_SSLOptions::trustStore()']]], + ['type_499',['type',['../unionHeader.html#a05b7c9c6b02e41c54899caee9fdd50d6',1,'Header']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_14.js b/docs/MQTTClient_internal/html/search/all_14.js index 01046d01..4f3282d4 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_498',['unsub',['../structMQTTAsync__successData5.html#a8f6209416359018b215c22008f08bc9c',1,'MQTTAsync_successData5']]], - ['unsuback_499',['Unsuback',['../structUnsuback.html',1,'']]], - ['upper_500',['upper',['../utf-8_8c.html#a716463de5d02ad40678f2376abcdd90a',1,'utf-8.c']]], - ['username_501',['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_502',['utf-8.c',['../utf-8_8c.html',1,'']]], - ['utf8_5fchar_5fvalidate_503',['UTF8_char_validate',['../utf-8_8c.html#a9727caa7417e6bed8cfad4121a22628d',1,'utf-8.c']]], - ['utf8_5fvalidate_504',['UTF8_validate',['../utf-8_8c.html#ad2012627fca4b4bdd9f67bde49b0d1cb',1,'utf-8.c']]], - ['utf8_5fvalidatestring_505',['UTF8_validateString',['../utf-8_8c.html#a4f3cf77538d867bb5b421bcb687dccdf',1,'utf-8.c']]] + ['unsub_500',['unsub',['../structMQTTAsync__successData5.html#a8f6209416359018b215c22008f08bc9c',1,'MQTTAsync_successData5']]], + ['unsuback_501',['Unsuback',['../structUnsuback.html',1,'']]], + ['upper_502',['upper',['../utf-8_8c.html#a716463de5d02ad40678f2376abcdd90a',1,'utf-8.c']]], + ['username_503',['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_504',['utf-8.c',['../utf-8_8c.html',1,'']]], + ['utf8_5fchar_5fvalidate_505',['UTF8_char_validate',['../utf-8_8c.html#a9727caa7417e6bed8cfad4121a22628d',1,'utf-8.c']]], + ['utf8_5fvalidate_506',['UTF8_validate',['../utf-8_8c.html#ad2012627fca4b4bdd9f67bde49b0d1cb',1,'utf-8.c']]], + ['utf8_5fvalidatestring_507',['UTF8_validateString',['../utf-8_8c.html#a4f3cf77538d867bb5b421bcb687dccdf',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_15.js b/docs/MQTTClient_internal/html/search/all_15.js index 41e1b3a8..a9f36092 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_506',['valid_ranges',['../utf-8_8c.html#ab7e6b7547aa4cd0fd122f222d1a9ba65',1,'utf-8.c']]], - ['value_507',['value',['../structMQTTAsync__nameValue.html#abbedbc0cab6677016451fe6c62553f35',1,'MQTTAsync_nameValue::value()'],['../structMQTTProperty.html#a43389d2bd2814580edc9ea59933cbe25',1,'MQTTProperty::value()'],['../structMQTTProperty.html#a1d54fb750a1783debd04c57ecb907332',1,'MQTTProperty::value()']]], - ['verify_508',['verify',['../structMQTTAsync__SSLOptions.html#af3a54c718001dc76eb77d2f35fc31301',1,'MQTTAsync_SSLOptions::verify()'],['../structMQTTClient__SSLOptions.html#a61dd2a56858da45451f45640b056189d',1,'MQTTClient_SSLOptions::verify()']]], - ['version_509',['version',['../structConnect.html#a35cba4252092877e572c5c74b41be6e2',1,'Connect']]] + ['valid_5franges_508',['valid_ranges',['../utf-8_8c.html#ab7e6b7547aa4cd0fd122f222d1a9ba65',1,'utf-8.c']]], + ['value_509',['value',['../structMQTTAsync__nameValue.html#abbedbc0cab6677016451fe6c62553f35',1,'MQTTAsync_nameValue::value()'],['../structMQTTProperty.html#a43389d2bd2814580edc9ea59933cbe25',1,'MQTTProperty::value()'],['../structMQTTProperty.html#a1d54fb750a1783debd04c57ecb907332',1,'MQTTProperty::value()']]], + ['verify_510',['verify',['../structMQTTAsync__SSLOptions.html#af3a54c718001dc76eb77d2f35fc31301',1,'MQTTAsync_SSLOptions::verify()'],['../structMQTTClient__SSLOptions.html#a61dd2a56858da45451f45640b056189d',1,'MQTTClient_SSLOptions::verify()']]], + ['version_511',['version',['../structConnect.html#a35cba4252092877e572c5c74b41be6e2',1,'Connect']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_16.js b/docs/MQTTClient_internal/html/search/all_16.js index 29b2baee..2c478b29 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_510',['websocket',['../structnetworkHandles.html#a01839c3f477c9f737c13f7e2c994e5cc',1,'networkHandles']]], - ['will_511',['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_512',['willMessages',['../structwillMessages.html',1,'']]], - ['willmsg_513',['willMsg',['../structConnect.html#a525eb0974d4e5b3158808e0bb23f03e6',1,'Connect']]], - ['willproperties_514',['willProperties',['../structMQTTAsync__connectOptions.html#ab72dbcdcff60e5dd79ac8fcea0e31478',1,'MQTTAsync_connectOptions']]], - ['willqos_515',['willQoS',['../structConnect.html#a91e5dd7084da0e9a40397c5532de5ef9',1,'Connect']]], - ['willretain_516',['willRetain',['../structConnect.html#a0810709a016db0b8be49fc6f859bab39',1,'Connect']]], - ['willtopic_517',['willTopic',['../structConnect.html#a8e0ff745f3800cf1a56a0cd467b5138e',1,'Connect']]], - ['write_5fpending_518',['write_pending',['../structSockets.html#a852db7c3edf654d8ee451be18b3f5743',1,'Sockets']]], - ['writechar_519',['writeChar',['../MQTTPacket_8c.html#ad29ec8b2fbf0ec0195621b44f8945923',1,'MQTTPacket.c']]], - ['writedata_520',['writeData',['../MQTTPacket_8c.html#a8886398fbf89872f8e593444d351a5aa',1,'MQTTPacket.c']]], - ['writeint_521',['writeInt',['../MQTTPacket_8c.html#a07aa0146eda3d32979142e7df8ad5fc3',1,'MQTTPacket.c']]], - ['writeint4_522',['writeInt4',['../MQTTPacket_8c.html#aefc0aa52c1cb13fa7bfcd77810d6a617',1,'MQTTPacket.c']]], - ['writes_523',['writes',['../SocketBuffer_8c.html#a913f78789f0cbfb26a5dcf6618d51d87',1,'SocketBuffer.c']]], - ['writeutf_524',['writeUTF',['../MQTTPacket_8c.html#af0fcaa11ac05ce448a433a53f9cae420',1,'MQTTPacket.c']]], - ['ws_5fframe_525',['ws_frame',['../structws__frame.html',1,'']]] + ['websocket_512',['websocket',['../structnetworkHandles.html#a01839c3f477c9f737c13f7e2c994e5cc',1,'networkHandles']]], + ['will_513',['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_514',['willMessages',['../structwillMessages.html',1,'']]], + ['willmsg_515',['willMsg',['../structConnect.html#a525eb0974d4e5b3158808e0bb23f03e6',1,'Connect']]], + ['willproperties_516',['willProperties',['../structMQTTAsync__connectOptions.html#ab72dbcdcff60e5dd79ac8fcea0e31478',1,'MQTTAsync_connectOptions']]], + ['willqos_517',['willQoS',['../structConnect.html#a91e5dd7084da0e9a40397c5532de5ef9',1,'Connect']]], + ['willretain_518',['willRetain',['../structConnect.html#a0810709a016db0b8be49fc6f859bab39',1,'Connect']]], + ['willtopic_519',['willTopic',['../structConnect.html#a8e0ff745f3800cf1a56a0cd467b5138e',1,'Connect']]], + ['write_5fpending_520',['write_pending',['../structSockets.html#a852db7c3edf654d8ee451be18b3f5743',1,'Sockets']]], + ['writechar_521',['writeChar',['../MQTTPacket_8c.html#ad29ec8b2fbf0ec0195621b44f8945923',1,'MQTTPacket.c']]], + ['writedata_522',['writeData',['../MQTTPacket_8c.html#a8886398fbf89872f8e593444d351a5aa',1,'MQTTPacket.c']]], + ['writeint_523',['writeInt',['../MQTTPacket_8c.html#a07aa0146eda3d32979142e7df8ad5fc3',1,'MQTTPacket.c']]], + ['writeint4_524',['writeInt4',['../MQTTPacket_8c.html#aefc0aa52c1cb13fa7bfcd77810d6a617',1,'MQTTPacket.c']]], + ['writes_525',['writes',['../SocketBuffer_8c.html#a913f78789f0cbfb26a5dcf6618d51d87',1,'SocketBuffer.c']]], + ['writeutf_526',['writeUTF',['../MQTTPacket_8c.html#af0fcaa11ac05ce448a433a53f9cae420',1,'MQTTPacket.c']]], + ['ws_5fframe_527',['ws_frame',['../structws__frame.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/all_c.js b/docs/MQTTClient_internal/html/search/all_c.js index 0fda252a..f3e20193 100644 --- a/docs/MQTTClient_internal/html/search/all_c.js +++ b/docs/MQTTClient_internal/html/search/all_c.js @@ -176,7 +176,7 @@ var searchData= ['mqttsubscribe_5foptions_300',['MQTTSubscribe_options',['../structMQTTSubscribe__options.html',1,'']]], ['mqttversion_301',['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_302',['MQTTVersion.c',['../MQTTVersion_8c.html',1,'']]], - ['msgid_303',['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()']]], + ['msgid_303',['msgID',['../structClients.html#ad0aaa6d9fce1f8196ff859df00716055',1,'Clients::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()'],['../structMQTTAsync__message.html#a2c8572ec595842768848982321835bfe',1,'MQTTAsync_message::msgid()'],['../structMQTTClient__message.html#a3be81df63644606036c0a139564a1d92',1,'MQTTClient_message::msgid()']]], ['myfree_304',['myfree',['../Heap_8c.html#a25214c297c998eba3cfc8282b1162c69',1,'Heap.c']]], ['mymalloc_305',['mymalloc',['../Heap_8c.html#a59e53a989d69c3da767487596d9bfa1f',1,'Heap.c']]], ['myrealloc_306',['myrealloc',['../Heap_8c.html#a699e6722cc8f195f853f09ac274413a3',1,'Heap.c']]] diff --git a/docs/MQTTClient_internal/html/search/all_f.js b/docs/MQTTClient_internal/html/search/all_f.js index dbe74f5c..f56dc0ea 100644 --- a/docs/MQTTClient_internal/html/search/all_f.js +++ b/docs/MQTTClient_internal/html/search/all_f.js @@ -26,31 +26,33 @@ var searchData= ['persistence_5fremove_344',['Persistence_remove',['../MQTTClientPersistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]], ['pget_345',['pget',['../structMQTTClient__persistence.html#a0f9fe9edd3946f0647862de7904e4098',1,'MQTTClient_persistence']]], ['phandle_346',['phandle',['../structClients.html#a1a0ca8e87f5d963ea3ab5c2e7748aaa5',1,'Clients']]], - ['pkeys_347',['pkeys',['../structMQTTClient__persistence.html#a36a69926a618f7e0f5098db61ece101b',1,'MQTTClient_persistence']]], - ['popen_348',['popen',['../structMQTTClient__persistence.html#ae58084438624ad267f7c050debd1b2ff',1,'MQTTClient_persistence']]], - ['pos_349',['pos',['../structws__frame.html#a03099256dd943b73f0558039b6ff4c6b',1,'ws_frame']]], - ['pput_350',['pput',['../structMQTTClient__persistence.html#a0f7846e9b4118a7a63702c504f4c8e9d',1,'MQTTClient_persistence']]], - ['premove_351',['premove',['../structMQTTClient__persistence.html#a815d4110bfd7f2678a60f9264b13e075',1,'MQTTClient_persistence']]], - ['prev_352',['prev',['../structListElementStruct.html#a988db5828265edf844721e841e71fffe',1,'ListElementStruct']]], - ['privatekey_353',['privateKey',['../structMQTTAsync__SSLOptions.html#a8b56d6075568072840f02abc8c642f6a',1,'MQTTAsync_SSLOptions::privateKey()'],['../structMQTTClient__SSLOptions.html#a5f3cc2c0f36991db85aae88ccd4985f9',1,'MQTTClient_SSLOptions::privateKey()']]], - ['privatekeypassword_354',['privateKeyPassword',['../structMQTTAsync__SSLOptions.html#a498e4dfcb65894bfc04290ace6b9a4cd',1,'MQTTAsync_SSLOptions::privateKeyPassword()'],['../structMQTTClient__SSLOptions.html#a183af235478d93a6b14c204e9e291bab',1,'MQTTClient_SSLOptions::privateKeyPassword()']]], - ['properties_355',['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_356',['props_rc_parms',['../structprops__rc__parms.html',1,'']]], - ['protocol_357',['Protocol',['../structConnect.html#ab87417598de200c235ce28e8947f8804',1,'Connect']]], - ['protos_358',['protos',['../structMQTTAsync__SSLOptions.html#a9947024802d3fb16fc050f4741a46e04',1,'MQTTAsync_SSLOptions::protos()'],['../structMQTTClient__SSLOptions.html#ad3db47e7874990570d03758a3fa28dad',1,'MQTTClient_SSLOptions::protos()']]], - ['protos_5flen_359',['protos_len',['../structMQTTAsync__SSLOptions.html#ad9e390b02afbf856c5a9267d30f09208',1,'MQTTAsync_SSLOptions::protos_len()'],['../structMQTTClient__SSLOptions.html#ac2df368c72cfaa432f90e3b657bd0883',1,'MQTTClient_SSLOptions::protos_len()']]], - ['pstclear_360',['pstclear',['../MQTTPersistenceDefault_8c.html#a15b1457f7fd20dde1fd51ed434321e1a',1,'MQTTPersistenceDefault.c']]], - ['pstclose_361',['pstclose',['../MQTTPersistenceDefault_8c.html#a24f38d19ff3db61292d7b463e59174ef',1,'MQTTPersistenceDefault.c']]], - ['pstcontainskey_362',['pstcontainskey',['../MQTTPersistenceDefault_8c.html#a2a55461def3359a2b0aff6b3bb0644ad',1,'MQTTPersistenceDefault.c']]], - ['pstget_363',['pstget',['../MQTTPersistenceDefault_8c.html#a3aef9f9af29882fac9e76984e4c2954c',1,'MQTTPersistenceDefault.c']]], - ['pstkeys_364',['pstkeys',['../MQTTPersistenceDefault_8c.html#a9f358375b8e254983d00f8b057e97dd6',1,'MQTTPersistenceDefault.c']]], - ['pstmkdir_365',['pstmkdir',['../MQTTPersistenceDefault_8c.html#aecfbfa761dfca1b551d9ade325f480b1',1,'MQTTPersistenceDefault.c']]], - ['pstopen_366',['pstopen',['../MQTTPersistenceDefault_8c.html#a919cf4710a1f7d7ce0878599e9aa4700',1,'MQTTPersistenceDefault.c']]], - ['pstput_367',['pstput',['../MQTTPersistenceDefault_8c.html#a64e0c1a2fd06375b975d6643175572d8',1,'MQTTPersistenceDefault.c']]], - ['pstremove_368',['pstremove',['../MQTTPersistenceDefault_8c.html#a64b106b9a2778f97d271af7c9a7940f2',1,'MQTTPersistenceDefault.c']]], - ['ptr_369',['ptr',['../structstorageElement.html#a0d617635e796eaa92ace8cb5cd6d0925',1,'storageElement']]], - ['ptrcompare_370',['ptrCompare',['../Heap_8c.html#a45db32d4f454f94d7f4574deced5ee33',1,'Heap.c']]], - ['pub_371',['pub',['../structMQTTAsync__successData.html#a61d994959ff1350ab2a0986d33ecd204',1,'MQTTAsync_successData::pub()'],['../structMQTTAsync__successData5.html#a7e75879a42ba01477a3c921487e3c564',1,'MQTTAsync_successData5::pub()']]], - ['publications_372',['Publications',['../structPublications.html',1,'']]], - ['publish_373',['Publish',['../structPublish.html',1,'']]] + ['ping_5fdue_347',['ping_due',['../structClients.html#a121c64145977cb25dfd05a3297a4d6f1',1,'Clients']]], + ['ping_5fdue_5ftime_348',['ping_due_time',['../structClients.html#a4e6f0b2b23c1a2b86899c9ca7b06b29b',1,'Clients']]], + ['pkeys_349',['pkeys',['../structMQTTClient__persistence.html#a36a69926a618f7e0f5098db61ece101b',1,'MQTTClient_persistence']]], + ['popen_350',['popen',['../structMQTTClient__persistence.html#ae58084438624ad267f7c050debd1b2ff',1,'MQTTClient_persistence']]], + ['pos_351',['pos',['../structws__frame.html#a03099256dd943b73f0558039b6ff4c6b',1,'ws_frame']]], + ['pput_352',['pput',['../structMQTTClient__persistence.html#a0f7846e9b4118a7a63702c504f4c8e9d',1,'MQTTClient_persistence']]], + ['premove_353',['premove',['../structMQTTClient__persistence.html#a815d4110bfd7f2678a60f9264b13e075',1,'MQTTClient_persistence']]], + ['prev_354',['prev',['../structListElementStruct.html#a988db5828265edf844721e841e71fffe',1,'ListElementStruct']]], + ['privatekey_355',['privateKey',['../structMQTTAsync__SSLOptions.html#a8b56d6075568072840f02abc8c642f6a',1,'MQTTAsync_SSLOptions::privateKey()'],['../structMQTTClient__SSLOptions.html#a5f3cc2c0f36991db85aae88ccd4985f9',1,'MQTTClient_SSLOptions::privateKey()']]], + ['privatekeypassword_356',['privateKeyPassword',['../structMQTTAsync__SSLOptions.html#a498e4dfcb65894bfc04290ace6b9a4cd',1,'MQTTAsync_SSLOptions::privateKeyPassword()'],['../structMQTTClient__SSLOptions.html#a183af235478d93a6b14c204e9e291bab',1,'MQTTClient_SSLOptions::privateKeyPassword()']]], + ['properties_357',['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_358',['props_rc_parms',['../structprops__rc__parms.html',1,'']]], + ['protocol_359',['Protocol',['../structConnect.html#ab87417598de200c235ce28e8947f8804',1,'Connect']]], + ['protos_360',['protos',['../structMQTTAsync__SSLOptions.html#a9947024802d3fb16fc050f4741a46e04',1,'MQTTAsync_SSLOptions::protos()'],['../structMQTTClient__SSLOptions.html#ad3db47e7874990570d03758a3fa28dad',1,'MQTTClient_SSLOptions::protos()']]], + ['protos_5flen_361',['protos_len',['../structMQTTAsync__SSLOptions.html#ad9e390b02afbf856c5a9267d30f09208',1,'MQTTAsync_SSLOptions::protos_len()'],['../structMQTTClient__SSLOptions.html#ac2df368c72cfaa432f90e3b657bd0883',1,'MQTTClient_SSLOptions::protos_len()']]], + ['pstclear_362',['pstclear',['../MQTTPersistenceDefault_8c.html#a15b1457f7fd20dde1fd51ed434321e1a',1,'MQTTPersistenceDefault.c']]], + ['pstclose_363',['pstclose',['../MQTTPersistenceDefault_8c.html#a24f38d19ff3db61292d7b463e59174ef',1,'MQTTPersistenceDefault.c']]], + ['pstcontainskey_364',['pstcontainskey',['../MQTTPersistenceDefault_8c.html#a2a55461def3359a2b0aff6b3bb0644ad',1,'MQTTPersistenceDefault.c']]], + ['pstget_365',['pstget',['../MQTTPersistenceDefault_8c.html#a3aef9f9af29882fac9e76984e4c2954c',1,'MQTTPersistenceDefault.c']]], + ['pstkeys_366',['pstkeys',['../MQTTPersistenceDefault_8c.html#a9f358375b8e254983d00f8b057e97dd6',1,'MQTTPersistenceDefault.c']]], + ['pstmkdir_367',['pstmkdir',['../MQTTPersistenceDefault_8c.html#aecfbfa761dfca1b551d9ade325f480b1',1,'MQTTPersistenceDefault.c']]], + ['pstopen_368',['pstopen',['../MQTTPersistenceDefault_8c.html#a919cf4710a1f7d7ce0878599e9aa4700',1,'MQTTPersistenceDefault.c']]], + ['pstput_369',['pstput',['../MQTTPersistenceDefault_8c.html#a64e0c1a2fd06375b975d6643175572d8',1,'MQTTPersistenceDefault.c']]], + ['pstremove_370',['pstremove',['../MQTTPersistenceDefault_8c.html#a64b106b9a2778f97d271af7c9a7940f2',1,'MQTTPersistenceDefault.c']]], + ['ptr_371',['ptr',['../structstorageElement.html#a0d617635e796eaa92ace8cb5cd6d0925',1,'storageElement']]], + ['ptrcompare_372',['ptrCompare',['../Heap_8c.html#a45db32d4f454f94d7f4574deced5ee33',1,'Heap.c']]], + ['pub_373',['pub',['../structMQTTAsync__successData.html#a61d994959ff1350ab2a0986d33ecd204',1,'MQTTAsync_successData::pub()'],['../structMQTTAsync__successData5.html#a7e75879a42ba01477a3c921487e3c564',1,'MQTTAsync_successData5::pub()']]], + ['publications_374',['Publications',['../structPublications.html',1,'']]], + ['publish_375',['Publish',['../structPublish.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_0.js b/docs/MQTTClient_internal/html/search/classes_0.js index 5e08a117..7cb09cb9 100644 --- a/docs/MQTTClient_internal/html/search/classes_0.js +++ b/docs/MQTTClient_internal/html/search/classes_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['ack_526',['Ack',['../structAck.html',1,'']]] + ['ack_528',['Ack',['../structAck.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_1.js b/docs/MQTTClient_internal/html/search/classes_1.js index 7266b1d1..0a67fe7c 100644 --- a/docs/MQTTClient_internal/html/search/classes_1.js +++ b/docs/MQTTClient_internal/html/search/classes_1.js @@ -1,8 +1,8 @@ var searchData= [ - ['clients_527',['Clients',['../structClients.html',1,'']]], - ['clientstates_528',['ClientStates',['../structClientStates.html',1,'']]], - ['cond_5ftype_5fstruct_529',['cond_type_struct',['../structcond__type__struct.html',1,'']]], - ['connack_530',['Connack',['../structConnack.html',1,'']]], - ['connect_531',['Connect',['../structConnect.html',1,'']]] + ['clients_529',['Clients',['../structClients.html',1,'']]], + ['clientstates_530',['ClientStates',['../structClientStates.html',1,'']]], + ['cond_5ftype_5fstruct_531',['cond_type_struct',['../structcond__type__struct.html',1,'']]], + ['connack_532',['Connack',['../structConnack.html',1,'']]], + ['connect_533',['Connect',['../structConnect.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_2.js b/docs/MQTTClient_internal/html/search/classes_2.js index 37abe461..3826a386 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_532',['frameData',['../structframeData.html',1,'']]] + ['framedata_534',['frameData',['../structframeData.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_3.js b/docs/MQTTClient_internal/html/search/classes_3.js index a760ec8e..0bffbbab 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_533',['Header',['../unionHeader.html',1,'']]], - ['heap_5finfo_534',['heap_info',['../structheap__info.html',1,'']]] + ['header_535',['Header',['../unionHeader.html',1,'']]], + ['heap_5finfo_536',['heap_info',['../structheap__info.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_4.js b/docs/MQTTClient_internal/html/search/classes_4.js index 457e3a3a..5affc6a6 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_535',['List',['../structList.html',1,'']]], - ['listelementstruct_536',['ListElementStruct',['../structListElementStruct.html',1,'']]], - ['log_5fnamevalue_537',['Log_nameValue',['../structLog__nameValue.html',1,'']]] + ['list_537',['List',['../structList.html',1,'']]], + ['listelementstruct_538',['ListElementStruct',['../structListElementStruct.html',1,'']]], + ['log_5fnamevalue_539',['Log_nameValue',['../structLog__nameValue.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_5.js b/docs/MQTTClient_internal/html/search/classes_5.js index 145ae2e2..5433f21d 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_538',['Messages',['../structMessages.html',1,'']]], - ['mqttasync_5fcommand_539',['MQTTAsync_command',['../structMQTTAsync__command.html',1,'']]], - ['mqttasync_5fconnectdata_540',['MQTTAsync_connectData',['../structMQTTAsync__connectData.html',1,'']]], - ['mqttasync_5fconnectoptions_541',['MQTTAsync_connectOptions',['../structMQTTAsync__connectOptions.html',1,'']]], - ['mqttasync_5fcreateoptions_542',['MQTTAsync_createOptions',['../structMQTTAsync__createOptions.html',1,'']]], - ['mqttasync_5fdisconnectoptions_543',['MQTTAsync_disconnectOptions',['../structMQTTAsync__disconnectOptions.html',1,'']]], - ['mqttasync_5ffailuredata_544',['MQTTAsync_failureData',['../structMQTTAsync__failureData.html',1,'']]], - ['mqttasync_5ffailuredata5_545',['MQTTAsync_failureData5',['../structMQTTAsync__failureData5.html',1,'']]], - ['mqttasync_5finit_5foptions_546',['MQTTAsync_init_options',['../structMQTTAsync__init__options.html',1,'']]], - ['mqttasync_5fmessage_547',['MQTTAsync_message',['../structMQTTAsync__message.html',1,'']]], - ['mqttasync_5fnamevalue_548',['MQTTAsync_nameValue',['../structMQTTAsync__nameValue.html',1,'']]], - ['mqttasync_5fqueuedcommand_549',['MQTTAsync_queuedCommand',['../structMQTTAsync__queuedCommand.html',1,'']]], - ['mqttasync_5fresponseoptions_550',['MQTTAsync_responseOptions',['../structMQTTAsync__responseOptions.html',1,'']]], - ['mqttasync_5fssloptions_551',['MQTTAsync_SSLOptions',['../structMQTTAsync__SSLOptions.html',1,'']]], - ['mqttasync_5fstruct_552',['MQTTAsync_struct',['../structMQTTAsync__struct.html',1,'']]], - ['mqttasync_5fsuccessdata_553',['MQTTAsync_successData',['../structMQTTAsync__successData.html',1,'']]], - ['mqttasync_5fsuccessdata5_554',['MQTTAsync_successData5',['../structMQTTAsync__successData5.html',1,'']]], - ['mqttasync_5fwilloptions_555',['MQTTAsync_willOptions',['../structMQTTAsync__willOptions.html',1,'']]], - ['mqttclient_5fconnectoptions_556',['MQTTClient_connectOptions',['../structMQTTClient__connectOptions.html',1,'']]], - ['mqttclient_5fcreateoptions_557',['MQTTClient_createOptions',['../structMQTTClient__createOptions.html',1,'']]], - ['mqttclient_5finit_5foptions_558',['MQTTClient_init_options',['../structMQTTClient__init__options.html',1,'']]], - ['mqttclient_5fmessage_559',['MQTTClient_message',['../structMQTTClient__message.html',1,'']]], - ['mqttclient_5fnamevalue_560',['MQTTClient_nameValue',['../structMQTTClient__nameValue.html',1,'']]], - ['mqttclient_5fpersistence_561',['MQTTClient_persistence',['../structMQTTClient__persistence.html',1,'']]], - ['mqttclient_5fssloptions_562',['MQTTClient_SSLOptions',['../structMQTTClient__SSLOptions.html',1,'']]], - ['mqttclient_5fwilloptions_563',['MQTTClient_willOptions',['../structMQTTClient__willOptions.html',1,'']]], - ['mqttclients_564',['MQTTClients',['../structMQTTClients.html',1,'']]], - ['mqttlenstring_565',['MQTTLenString',['../structMQTTLenString.html',1,'']]], - ['mqttpacket_566',['MQTTPacket',['../structMQTTPacket.html',1,'']]], - ['mqttpersistence_5fmessage_567',['MQTTPersistence_message',['../structMQTTPersistence__message.html',1,'']]], - ['mqttpersistence_5fqentry_568',['MQTTPersistence_qEntry',['../structMQTTPersistence__qEntry.html',1,'']]], - ['mqttproperties_569',['MQTTProperties',['../structMQTTProperties.html',1,'']]], - ['mqttproperty_570',['MQTTProperty',['../structMQTTProperty.html',1,'']]], - ['mqttprotocol_571',['MQTTProtocol',['../structMQTTProtocol.html',1,'']]], - ['mqttresponse_572',['MQTTResponse',['../structMQTTResponse.html',1,'']]], - ['mqttsubscribe_5foptions_573',['MQTTSubscribe_options',['../structMQTTSubscribe__options.html',1,'']]] + ['messages_540',['Messages',['../structMessages.html',1,'']]], + ['mqttasync_5fcommand_541',['MQTTAsync_command',['../structMQTTAsync__command.html',1,'']]], + ['mqttasync_5fconnectdata_542',['MQTTAsync_connectData',['../structMQTTAsync__connectData.html',1,'']]], + ['mqttasync_5fconnectoptions_543',['MQTTAsync_connectOptions',['../structMQTTAsync__connectOptions.html',1,'']]], + ['mqttasync_5fcreateoptions_544',['MQTTAsync_createOptions',['../structMQTTAsync__createOptions.html',1,'']]], + ['mqttasync_5fdisconnectoptions_545',['MQTTAsync_disconnectOptions',['../structMQTTAsync__disconnectOptions.html',1,'']]], + ['mqttasync_5ffailuredata_546',['MQTTAsync_failureData',['../structMQTTAsync__failureData.html',1,'']]], + ['mqttasync_5ffailuredata5_547',['MQTTAsync_failureData5',['../structMQTTAsync__failureData5.html',1,'']]], + ['mqttasync_5finit_5foptions_548',['MQTTAsync_init_options',['../structMQTTAsync__init__options.html',1,'']]], + ['mqttasync_5fmessage_549',['MQTTAsync_message',['../structMQTTAsync__message.html',1,'']]], + ['mqttasync_5fnamevalue_550',['MQTTAsync_nameValue',['../structMQTTAsync__nameValue.html',1,'']]], + ['mqttasync_5fqueuedcommand_551',['MQTTAsync_queuedCommand',['../structMQTTAsync__queuedCommand.html',1,'']]], + ['mqttasync_5fresponseoptions_552',['MQTTAsync_responseOptions',['../structMQTTAsync__responseOptions.html',1,'']]], + ['mqttasync_5fssloptions_553',['MQTTAsync_SSLOptions',['../structMQTTAsync__SSLOptions.html',1,'']]], + ['mqttasync_5fstruct_554',['MQTTAsync_struct',['../structMQTTAsync__struct.html',1,'']]], + ['mqttasync_5fsuccessdata_555',['MQTTAsync_successData',['../structMQTTAsync__successData.html',1,'']]], + ['mqttasync_5fsuccessdata5_556',['MQTTAsync_successData5',['../structMQTTAsync__successData5.html',1,'']]], + ['mqttasync_5fwilloptions_557',['MQTTAsync_willOptions',['../structMQTTAsync__willOptions.html',1,'']]], + ['mqttclient_5fconnectoptions_558',['MQTTClient_connectOptions',['../structMQTTClient__connectOptions.html',1,'']]], + ['mqttclient_5fcreateoptions_559',['MQTTClient_createOptions',['../structMQTTClient__createOptions.html',1,'']]], + ['mqttclient_5finit_5foptions_560',['MQTTClient_init_options',['../structMQTTClient__init__options.html',1,'']]], + ['mqttclient_5fmessage_561',['MQTTClient_message',['../structMQTTClient__message.html',1,'']]], + ['mqttclient_5fnamevalue_562',['MQTTClient_nameValue',['../structMQTTClient__nameValue.html',1,'']]], + ['mqttclient_5fpersistence_563',['MQTTClient_persistence',['../structMQTTClient__persistence.html',1,'']]], + ['mqttclient_5fssloptions_564',['MQTTClient_SSLOptions',['../structMQTTClient__SSLOptions.html',1,'']]], + ['mqttclient_5fwilloptions_565',['MQTTClient_willOptions',['../structMQTTClient__willOptions.html',1,'']]], + ['mqttclients_566',['MQTTClients',['../structMQTTClients.html',1,'']]], + ['mqttlenstring_567',['MQTTLenString',['../structMQTTLenString.html',1,'']]], + ['mqttpacket_568',['MQTTPacket',['../structMQTTPacket.html',1,'']]], + ['mqttpersistence_5fmessage_569',['MQTTPersistence_message',['../structMQTTPersistence__message.html',1,'']]], + ['mqttpersistence_5fqentry_570',['MQTTPersistence_qEntry',['../structMQTTPersistence__qEntry.html',1,'']]], + ['mqttproperties_571',['MQTTProperties',['../structMQTTProperties.html',1,'']]], + ['mqttproperty_572',['MQTTProperty',['../structMQTTProperty.html',1,'']]], + ['mqttprotocol_573',['MQTTProtocol',['../structMQTTProtocol.html',1,'']]], + ['mqttresponse_574',['MQTTResponse',['../structMQTTResponse.html',1,'']]], + ['mqttsubscribe_5foptions_575',['MQTTSubscribe_options',['../structMQTTSubscribe__options.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_6.js b/docs/MQTTClient_internal/html/search/classes_6.js index 33b33e4a..8b1ced2b 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_574',['nameToType',['../structnameToType.html',1,'']]], - ['networkhandles_575',['networkHandles',['../structnetworkHandles.html',1,'']]], - ['nodestruct_576',['NodeStruct',['../structNodeStruct.html',1,'']]] + ['nametotype_576',['nameToType',['../structnameToType.html',1,'']]], + ['networkhandles_577',['networkHandles',['../structnetworkHandles.html',1,'']]], + ['nodestruct_578',['NodeStruct',['../structNodeStruct.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_7.js b/docs/MQTTClient_internal/html/search/classes_7.js index 1b5f36d2..78b3d929 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_577',['PacketBuffers',['../structPacketBuffers.html',1,'']]], - ['pending_5fwrite_578',['pending_write',['../structpending__write.html',1,'']]], - ['pending_5fwrites_579',['pending_writes',['../structpending__writes.html',1,'']]], - ['props_5frc_5fparms_580',['props_rc_parms',['../structprops__rc__parms.html',1,'']]], - ['publications_581',['Publications',['../structPublications.html',1,'']]], - ['publish_582',['Publish',['../structPublish.html',1,'']]] + ['packetbuffers_579',['PacketBuffers',['../structPacketBuffers.html',1,'']]], + ['pending_5fwrite_580',['pending_write',['../structpending__write.html',1,'']]], + ['pending_5fwrites_581',['pending_writes',['../structpending__writes.html',1,'']]], + ['props_5frc_5fparms_582',['props_rc_parms',['../structprops__rc__parms.html',1,'']]], + ['publications_583',['Publications',['../structPublications.html',1,'']]], + ['publish_584',['Publish',['../structPublish.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_8.js b/docs/MQTTClient_internal/html/search/classes_8.js index f53e35e9..32e6451e 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_583',['qEntry',['../structqEntry.html',1,'']]] + ['qentry_585',['qEntry',['../structqEntry.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_9.js b/docs/MQTTClient_internal/html/search/classes_9.js index 33f96c2f..5d98c64c 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_584',['SHA_CTX_S',['../structSHA__CTX__S.html',1,'']]], - ['socket_5fqueue_585',['socket_queue',['../structsocket__queue.html',1,'']]], - ['sockets_586',['Sockets',['../structSockets.html',1,'']]], - ['stackentry_587',['stackEntry',['../structstackEntry.html',1,'']]], - ['storageelement_588',['storageElement',['../structstorageElement.html',1,'']]], - ['suback_589',['Suback',['../structSuback.html',1,'']]] + ['sha_5fctx_5fs_586',['SHA_CTX_S',['../structSHA__CTX__S.html',1,'']]], + ['socket_5fqueue_587',['socket_queue',['../structsocket__queue.html',1,'']]], + ['sockets_588',['Sockets',['../structSockets.html',1,'']]], + ['stackentry_589',['stackEntry',['../structstackEntry.html',1,'']]], + ['storageelement_590',['storageElement',['../structstorageElement.html',1,'']]], + ['suback_591',['Suback',['../structSuback.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_a.js b/docs/MQTTClient_internal/html/search/classes_a.js index 541a8936..a34833c8 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_590',['threadEntry',['../structthreadEntry.html',1,'']]], - ['trace_5fsettings_5ftype_591',['trace_settings_type',['../structtrace__settings__type.html',1,'']]], - ['traceentry_592',['traceEntry',['../structtraceEntry.html',1,'']]], - ['tree_593',['Tree',['../structTree.html',1,'']]] + ['threadentry_592',['threadEntry',['../structthreadEntry.html',1,'']]], + ['trace_5fsettings_5ftype_593',['trace_settings_type',['../structtrace__settings__type.html',1,'']]], + ['traceentry_594',['traceEntry',['../structtraceEntry.html',1,'']]], + ['tree_595',['Tree',['../structTree.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_b.js b/docs/MQTTClient_internal/html/search/classes_b.js index 2193eba7..c9ca0aa7 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_594',['Unsuback',['../structUnsuback.html',1,'']]] + ['unsuback_596',['Unsuback',['../structUnsuback.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/classes_c.js b/docs/MQTTClient_internal/html/search/classes_c.js index 1a43176d..545ff3f9 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_595',['willMessages',['../structwillMessages.html',1,'']]], - ['ws_5fframe_596',['ws_frame',['../structws__frame.html',1,'']]] + ['willmessages_597',['willMessages',['../structwillMessages.html',1,'']]], + ['ws_5fframe_598',['ws_frame',['../structws__frame.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/defines_0.js b/docs/MQTTClient_internal/html/search/defines_0.js index 20d76fea..6fcb15a3 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_1046',['_unlink',['../Log_8c.html#a411530253569ea29a964f13204da8848',1,'Log.c']]] + ['_5funlink_1050',['_unlink',['../Log_8c.html#a411530253569ea29a964f13204da8848',1,'Log.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/defines_1.js b/docs/MQTTClient_internal/html/search/defines_1.js index bf672386..c32b60db 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_1047',['ARRAY_SIZE',['../utf-8_8c.html#a25f003de16c08a4888b69f619d70f427',1,'utf-8.c']]] + ['array_5fsize_1051',['ARRAY_SIZE',['../utf-8_8c.html#a25f003de16c08a4888b69f619d70f427',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/defines_2.js b/docs/MQTTClient_internal/html/search/defines_2.js index 96ecd6af..83095429 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_1048',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../MQTTClientPersistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5ferror_1049',['MQTTCLIENT_PERSISTENCE_ERROR',['../MQTTClientPersistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fnone_1050',['MQTTCLIENT_PERSISTENCE_NONE',['../MQTTClientPersistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], - ['mqttclient_5fpersistence_5fuser_1051',['MQTTCLIENT_PERSISTENCE_USER',['../MQTTClientPersistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]] + ['mqttclient_5fpersistence_5fdefault_1052',['MQTTCLIENT_PERSISTENCE_DEFAULT',['../MQTTClientPersistence_8h.html#aaa948291718a9c06369b854b0f64bc32',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5ferror_1053',['MQTTCLIENT_PERSISTENCE_ERROR',['../MQTTClientPersistence_8h.html#ab716e21e53c84a5ad62aa962a2a8f7db',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fnone_1054',['MQTTCLIENT_PERSISTENCE_NONE',['../MQTTClientPersistence_8h.html#ae01e089313a65ac4661ed216b6ac00fa',1,'MQTTClientPersistence.h']]], + ['mqttclient_5fpersistence_5fuser_1055',['MQTTCLIENT_PERSISTENCE_USER',['../MQTTClientPersistence_8h.html#a5dc68b8616e4041e037bad94ce07681b',1,'MQTTClientPersistence.h']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_0.js b/docs/MQTTClient_internal/html/search/files_0.js index 0c29959c..390befc8 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_597',['Clients.c',['../Clients_8c.html',1,'']]] + ['clients_2ec_599',['Clients.c',['../Clients_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_1.js b/docs/MQTTClient_internal/html/search/files_1.js index 2466d6f3..2cf26990 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_598',['Heap.c',['../Heap_8c.html',1,'']]] + ['heap_2ec_600',['Heap.c',['../Heap_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_2.js b/docs/MQTTClient_internal/html/search/files_2.js index 1b03be7c..8aa1bc77 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_599',['LinkedList.c',['../LinkedList_8c.html',1,'']]], - ['log_2ec_600',['Log.c',['../Log_8c.html',1,'']]] + ['linkedlist_2ec_601',['LinkedList.c',['../LinkedList_8c.html',1,'']]], + ['log_2ec_602',['Log.c',['../Log_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_3.js b/docs/MQTTClient_internal/html/search/files_3.js index cd7e58a8..3763af41 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_601',['Messages.c',['../Messages_8c.html',1,'']]], - ['mqttclient_2ec_602',['MQTTClient.c',['../MQTTClient_8c.html',1,'']]], - ['mqttclientpersistence_2eh_603',['MQTTClientPersistence.h',['../MQTTClientPersistence_8h.html',1,'']]], - ['mqttpacket_2ec_604',['MQTTPacket.c',['../MQTTPacket_8c.html',1,'']]], - ['mqttpacketout_2ec_605',['MQTTPacketOut.c',['../MQTTPacketOut_8c.html',1,'']]], - ['mqttpersistence_2ec_606',['MQTTPersistence.c',['../MQTTPersistence_8c.html',1,'']]], - ['mqttpersistencedefault_2ec_607',['MQTTPersistenceDefault.c',['../MQTTPersistenceDefault_8c.html',1,'']]], - ['mqttprotocolclient_2ec_608',['MQTTProtocolClient.c',['../MQTTProtocolClient_8c.html',1,'']]], - ['mqttprotocolout_2ec_609',['MQTTProtocolOut.c',['../MQTTProtocolOut_8c.html',1,'']]], - ['mqttversion_2ec_610',['MQTTVersion.c',['../MQTTVersion_8c.html',1,'']]] + ['messages_2ec_603',['Messages.c',['../Messages_8c.html',1,'']]], + ['mqttclient_2ec_604',['MQTTClient.c',['../MQTTClient_8c.html',1,'']]], + ['mqttclientpersistence_2eh_605',['MQTTClientPersistence.h',['../MQTTClientPersistence_8h.html',1,'']]], + ['mqttpacket_2ec_606',['MQTTPacket.c',['../MQTTPacket_8c.html',1,'']]], + ['mqttpacketout_2ec_607',['MQTTPacketOut.c',['../MQTTPacketOut_8c.html',1,'']]], + ['mqttpersistence_2ec_608',['MQTTPersistence.c',['../MQTTPersistence_8c.html',1,'']]], + ['mqttpersistencedefault_2ec_609',['MQTTPersistenceDefault.c',['../MQTTPersistenceDefault_8c.html',1,'']]], + ['mqttprotocolclient_2ec_610',['MQTTProtocolClient.c',['../MQTTProtocolClient_8c.html',1,'']]], + ['mqttprotocolout_2ec_611',['MQTTProtocolOut.c',['../MQTTProtocolOut_8c.html',1,'']]], + ['mqttversion_2ec_612',['MQTTVersion.c',['../MQTTVersion_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_4.js b/docs/MQTTClient_internal/html/search/files_4.js index efab3852..00a767d6 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_611',['Socket.c',['../Socket_8c.html',1,'']]], - ['socketbuffer_2ec_612',['SocketBuffer.c',['../SocketBuffer_8c.html',1,'']]], - ['sslsocket_2ec_613',['SSLSocket.c',['../SSLSocket_8c.html',1,'']]] + ['socket_2ec_613',['Socket.c',['../Socket_8c.html',1,'']]], + ['socketbuffer_2ec_614',['SocketBuffer.c',['../SocketBuffer_8c.html',1,'']]], + ['sslsocket_2ec_615',['SSLSocket.c',['../SSLSocket_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_5.js b/docs/MQTTClient_internal/html/search/files_5.js index 3f393014..042cbd55 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_614',['Thread.c',['../Thread_8c.html',1,'']]], - ['tree_2ec_615',['Tree.c',['../Tree_8c.html',1,'']]] + ['thread_2ec_616',['Thread.c',['../Thread_8c.html',1,'']]], + ['tree_2ec_617',['Tree.c',['../Tree_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/files_6.js b/docs/MQTTClient_internal/html/search/files_6.js index 890a0518..bb635c89 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_616',['utf-8.c',['../utf-8_8c.html',1,'']]] + ['utf_2d8_2ec_618',['utf-8.c',['../utf-8_8c.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_0.js b/docs/MQTTClient_internal/html/search/functions_0.js index a7825f9b..cadec74b 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_617',['call_disconnected',['../MQTTClient_8c.html#adbcf69dbaf0a0dcbcc87d23f99e73fca',1,'MQTTClient.c']]], - ['clientidcompare_618',['clientIDCompare',['../Clients_8c.html#a961b1c46020c65b7ffd662500d1c849d',1,'Clients.c']]], - ['clientsockcompare_619',['clientSockCompare',['../MQTTClient_8c.html#ac35494adea1f11d3480b50b8a7f0c17d',1,'MQTTClient.c']]], - ['clientsocketcompare_620',['clientSocketCompare',['../Clients_8c.html#a82dc4e265fecdaea2810ccdeab0abf52',1,'Clients.c']]], - ['connectionlost_5fcall_621',['connectionLost_call',['../MQTTClient_8c.html#a0c0d8194bf8a449928881cf83276728e',1,'MQTTClient.c']]] + ['call_5fdisconnected_619',['call_disconnected',['../MQTTClient_8c.html#adbcf69dbaf0a0dcbcc87d23f99e73fca',1,'MQTTClient.c']]], + ['clientidcompare_620',['clientIDCompare',['../Clients_8c.html#a961b1c46020c65b7ffd662500d1c849d',1,'Clients.c']]], + ['clientsockcompare_621',['clientSockCompare',['../MQTTClient_8c.html#ac35494adea1f11d3480b50b8a7f0c17d',1,'MQTTClient.c']]], + ['clientsocketcompare_622',['clientSocketCompare',['../Clients_8c.html#a82dc4e265fecdaea2810ccdeab0abf52',1,'Clients.c']]], + ['connectionlost_5fcall_623',['connectionLost_call',['../MQTTClient_8c.html#a0c0d8194bf8a449928881cf83276728e',1,'MQTTClient.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_1.js b/docs/MQTTClient_internal/html/search/functions_1.js index a54983d4..a2a27bb6 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_622',['FindString',['../MQTTVersion_8c.html#a60231c316988ddb6d3ecf20a3195fe8d',1,'MQTTVersion.c']]] + ['findstring_624',['FindString',['../MQTTVersion_8c.html#a60231c316988ddb6d3ecf20a3195fe8d',1,'MQTTVersion.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_2.js b/docs/MQTTClient_internal/html/search/functions_2.js index d6f8e84c..96ddab88 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_623',['Heap_findItem',['../Heap_8c.html#a0f10ff94faca02a6f81953c889802954',1,'Heap.c']]], - ['heap_5fget_5finfo_624',['Heap_get_info',['../Heap_8c.html#a20faecf28cdd9d2fbf7d975c5b0863ef',1,'Heap.c']]], - ['heap_5finitialize_625',['Heap_initialize',['../Heap_8c.html#a7fb8bd5f7469fc9c1e48c3a1f17de88a',1,'Heap.c']]], - ['heap_5froundup_626',['Heap_roundup',['../Heap_8c.html#ae75b06db0cdfce5c281f8672e8577854',1,'Heap.c']]], - ['heap_5fterminate_627',['Heap_terminate',['../Heap_8c.html#a669dfefa789daec52dd8ddc03ff1f9f9',1,'Heap.c']]], - ['heap_5funlink_628',['Heap_unlink',['../Heap_8c.html#a5f453bffe39551109e282c904a6f2902',1,'Heap.c']]], - ['heapdump_629',['HeapDump',['../Heap_8c.html#aea7ea58998f69f14e16a3237c1d02d8a',1,'Heap.c']]], - ['heapdumpstring_630',['HeapDumpString',['../Heap_8c.html#a6cdadd76da21b7269cf5d9fc92dedb68',1,'Heap.c']]], - ['heapscan_631',['HeapScan',['../Heap_8c.html#aafff91620a02cc5f8160ee55dc1d7bf4',1,'Heap.c']]] + ['heap_5ffinditem_625',['Heap_findItem',['../Heap_8c.html#a0f10ff94faca02a6f81953c889802954',1,'Heap.c']]], + ['heap_5fget_5finfo_626',['Heap_get_info',['../Heap_8c.html#a20faecf28cdd9d2fbf7d975c5b0863ef',1,'Heap.c']]], + ['heap_5finitialize_627',['Heap_initialize',['../Heap_8c.html#a7fb8bd5f7469fc9c1e48c3a1f17de88a',1,'Heap.c']]], + ['heap_5froundup_628',['Heap_roundup',['../Heap_8c.html#ae75b06db0cdfce5c281f8672e8577854',1,'Heap.c']]], + ['heap_5fterminate_629',['Heap_terminate',['../Heap_8c.html#a669dfefa789daec52dd8ddc03ff1f9f9',1,'Heap.c']]], + ['heap_5funlink_630',['Heap_unlink',['../Heap_8c.html#a5f453bffe39551109e282c904a6f2902',1,'Heap.c']]], + ['heapdump_631',['HeapDump',['../Heap_8c.html#aea7ea58998f69f14e16a3237c1d02d8a',1,'Heap.c']]], + ['heapdumpstring_632',['HeapDumpString',['../Heap_8c.html#a6cdadd76da21b7269cf5d9fc92dedb68',1,'Heap.c']]], + ['heapscan_633',['HeapScan',['../Heap_8c.html#aafff91620a02cc5f8160ee55dc1d7bf4',1,'Heap.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_3.js b/docs/MQTTClient_internal/html/search/functions_3.js index fdbe3eb1..daeb9738 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_632',['intcompare',['../LinkedList_8c.html#a1738915a6d6f10022e9ee1481c0ae452',1,'LinkedList.c']]], - ['internal_5fheap_5funlink_633',['Internal_heap_unlink',['../Heap_8c.html#ac23c370399a3c7b9aa9fa9d0672be122',1,'Heap.c']]], - ['isready_634',['isReady',['../Socket_8c.html#aeec7592039c180d20ef7c6e8f50d5667',1,'Socket.c']]] + ['intcompare_634',['intcompare',['../LinkedList_8c.html#a1738915a6d6f10022e9ee1481c0ae452',1,'LinkedList.c']]], + ['internal_5fheap_5funlink_635',['Internal_heap_unlink',['../Heap_8c.html#ac23c370399a3c7b9aa9fa9d0672be122',1,'Heap.c']]], + ['isready_636',['isReady',['../Socket_8c.html#aeec7592039c180d20ef7c6e8f50d5667',1,'Socket.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_4.js b/docs/MQTTClient_internal/html/search/functions_4.js index cea93b89..e5a4ff7a 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_635',['ListAppend',['../LinkedList_8c.html#abc7a28449893dfa775c2f709349968b4',1,'LinkedList.c']]], - ['listappendnomalloc_636',['ListAppendNoMalloc',['../LinkedList_8c.html#a321a3598d6979c7af3f995b77ea2cec3',1,'LinkedList.c']]], - ['listdetach_637',['ListDetach',['../LinkedList_8c.html#ab2bcc1897abf1d98490ea81c474dba52',1,'LinkedList.c']]], - ['listdetachhead_638',['ListDetachHead',['../LinkedList_8c.html#ab0f3597d344e09ad6636c8bc72029337',1,'LinkedList.c']]], - ['listdetachitem_639',['ListDetachItem',['../LinkedList_8c.html#a9ed745f7ba486d16d009e86433fece7b',1,'LinkedList.c']]], - ['listempty_640',['ListEmpty',['../LinkedList_8c.html#a3cf8578dba23f97dd0411e85fe3b7ff2',1,'LinkedList.c']]], - ['listfind_641',['ListFind',['../LinkedList_8c.html#ad2879a10b723fb7c1f95c0ad0abdbc50',1,'LinkedList.c']]], - ['listfinditem_642',['ListFindItem',['../LinkedList_8c.html#acad319e9ce896ff1fff30ddbeb06d22d',1,'LinkedList.c']]], - ['listfree_643',['ListFree',['../LinkedList_8c.html#a276950531b3f54e0dda27d597572c192',1,'LinkedList.c']]], - ['listfreenocontent_644',['ListFreeNoContent',['../LinkedList_8c.html#a8b3e61bc873a90ad2ea43a15e6c001f4',1,'LinkedList.c']]], - ['listinitialize_645',['ListInitialize',['../LinkedList_8c.html#a27e2cccab9752618ead91eafbe2a9a46',1,'LinkedList.c']]], - ['listinsert_646',['ListInsert',['../LinkedList_8c.html#aabca387fa4b86475bc9e4da40c3977fc',1,'LinkedList.c']]], - ['listnextelement_647',['ListNextElement',['../LinkedList_8c.html#a7c6fba7f4b569c69829676bed2852ee9',1,'LinkedList.c']]], - ['listpoptail_648',['ListPopTail',['../LinkedList_8c.html#a84b0ad14e7cebcd7b9ebab89a8d48321',1,'LinkedList.c']]], - ['listprevelement_649',['ListPrevElement',['../LinkedList_8c.html#a371f4a5021e6aa639bab6ab1457fc1d2',1,'LinkedList.c']]], - ['listremove_650',['ListRemove',['../LinkedList_8c.html#a8430370b2b15c56ec95bb8e7e36753a5',1,'LinkedList.c']]], - ['listremovehead_651',['ListRemoveHead',['../LinkedList_8c.html#a5ee7cd1d29fd9299231d40c011174fcd',1,'LinkedList.c']]], - ['listremoveitem_652',['ListRemoveItem',['../LinkedList_8c.html#a4bb7c34fe9a5832d65f530091e0fad0d',1,'LinkedList.c']]], - ['listunlink_653',['ListUnlink',['../LinkedList_8c.html#ab82181e0c1d96954f82dee67cee41296',1,'LinkedList.c']]], - ['listzero_654',['ListZero',['../LinkedList_8c.html#aa254fb1eab8e30d0e03859b333dc22ed',1,'LinkedList.c']]], - ['log_655',['Log',['../Log_8c.html#a669722e3f57811871f97c12392aba85d',1,'Log.c']]], - ['log_5fstacktrace_656',['Log_stackTrace',['../Log_8c.html#a1824e9ab9e5d2f2cc5f27da6e7ea3d4a',1,'Log.c']]] + ['listappend_637',['ListAppend',['../LinkedList_8c.html#abc7a28449893dfa775c2f709349968b4',1,'LinkedList.c']]], + ['listappendnomalloc_638',['ListAppendNoMalloc',['../LinkedList_8c.html#a321a3598d6979c7af3f995b77ea2cec3',1,'LinkedList.c']]], + ['listdetach_639',['ListDetach',['../LinkedList_8c.html#ab2bcc1897abf1d98490ea81c474dba52',1,'LinkedList.c']]], + ['listdetachhead_640',['ListDetachHead',['../LinkedList_8c.html#ab0f3597d344e09ad6636c8bc72029337',1,'LinkedList.c']]], + ['listdetachitem_641',['ListDetachItem',['../LinkedList_8c.html#a9ed745f7ba486d16d009e86433fece7b',1,'LinkedList.c']]], + ['listempty_642',['ListEmpty',['../LinkedList_8c.html#a3cf8578dba23f97dd0411e85fe3b7ff2',1,'LinkedList.c']]], + ['listfind_643',['ListFind',['../LinkedList_8c.html#ad2879a10b723fb7c1f95c0ad0abdbc50',1,'LinkedList.c']]], + ['listfinditem_644',['ListFindItem',['../LinkedList_8c.html#acad319e9ce896ff1fff30ddbeb06d22d',1,'LinkedList.c']]], + ['listfree_645',['ListFree',['../LinkedList_8c.html#a276950531b3f54e0dda27d597572c192',1,'LinkedList.c']]], + ['listfreenocontent_646',['ListFreeNoContent',['../LinkedList_8c.html#a8b3e61bc873a90ad2ea43a15e6c001f4',1,'LinkedList.c']]], + ['listinitialize_647',['ListInitialize',['../LinkedList_8c.html#a27e2cccab9752618ead91eafbe2a9a46',1,'LinkedList.c']]], + ['listinsert_648',['ListInsert',['../LinkedList_8c.html#aabca387fa4b86475bc9e4da40c3977fc',1,'LinkedList.c']]], + ['listnextelement_649',['ListNextElement',['../LinkedList_8c.html#a7c6fba7f4b569c69829676bed2852ee9',1,'LinkedList.c']]], + ['listpoptail_650',['ListPopTail',['../LinkedList_8c.html#a84b0ad14e7cebcd7b9ebab89a8d48321',1,'LinkedList.c']]], + ['listprevelement_651',['ListPrevElement',['../LinkedList_8c.html#a371f4a5021e6aa639bab6ab1457fc1d2',1,'LinkedList.c']]], + ['listremove_652',['ListRemove',['../LinkedList_8c.html#a8430370b2b15c56ec95bb8e7e36753a5',1,'LinkedList.c']]], + ['listremovehead_653',['ListRemoveHead',['../LinkedList_8c.html#a5ee7cd1d29fd9299231d40c011174fcd',1,'LinkedList.c']]], + ['listremoveitem_654',['ListRemoveItem',['../LinkedList_8c.html#a4bb7c34fe9a5832d65f530091e0fad0d',1,'LinkedList.c']]], + ['listunlink_655',['ListUnlink',['../LinkedList_8c.html#ab82181e0c1d96954f82dee67cee41296',1,'LinkedList.c']]], + ['listzero_656',['ListZero',['../LinkedList_8c.html#aa254fb1eab8e30d0e03859b333dc22ed',1,'LinkedList.c']]], + ['log_657',['Log',['../Log_8c.html#a669722e3f57811871f97c12392aba85d',1,'Log.c']]], + ['log_5fstacktrace_658',['Log_stackTrace',['../Log_8c.html#a1824e9ab9e5d2f2cc5f27da6e7ea3d4a',1,'Log.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_5.js b/docs/MQTTClient_internal/html/search/functions_5.js index 74585d96..1fa5d9a5 100644 --- a/docs/MQTTClient_internal/html/search/functions_5.js +++ b/docs/MQTTClient_internal/html/search/functions_5.js @@ -1,114 +1,114 @@ var searchData= [ - ['messageidcompare_657',['messageIDCompare',['../MQTTProtocolClient_8c.html#a286c2ef2904b5eb4a0ffa5b598961c67',1,'MQTTProtocolClient.c']]], - ['messages_5fget_658',['Messages_get',['../Messages_8c.html#ab0c342273f8f7d3c206314ae8215a14c',1,'Messages.c']]], - ['mqttclient_5fconnect_659',['MQTTClient_connect',['../MQTTClient_8c.html#aaa8ae61cd65c9dc0846df10122d7bd4e',1,'MQTTClient.c']]], - ['mqttclient_5fconnect5_660',['MQTTClient_connect5',['../MQTTClient_8c.html#aa777f80cb3eec5610f976aff30b8c0d6',1,'MQTTClient.c']]], - ['mqttclient_5fcreate_661',['MQTTClient_create',['../MQTTClient_8c.html#a9a0518d9ca924d12c1329dbe3de5f2b6',1,'MQTTClient.c']]], - ['mqttclient_5fcreatewithoptions_662',['MQTTClient_createWithOptions',['../MQTTClient_8c.html#ade24f717a9b39d38b081e1d5e0db1661',1,'MQTTClient.c']]], - ['mqttclient_5fdestroy_663',['MQTTClient_destroy',['../MQTTClient_8c.html#ae700c3f5cfea3813264ce95e7c8cf498',1,'MQTTClient.c']]], - ['mqttclient_5fdisconnect_664',['MQTTClient_disconnect',['../MQTTClient_8c.html#a1e4d90c13a3c0705bc4a13bfe64e6525',1,'MQTTClient.c']]], - ['mqttclient_5fdisconnect1_665',['MQTTClient_disconnect1',['../MQTTClient_8c.html#a2eeb63b405d9aed880a79b38addf6df7',1,'MQTTClient.c']]], - ['mqttclient_5fdisconnect_5finternal_666',['MQTTClient_disconnect_internal',['../MQTTClient_8c.html#a6a08562ce9b763bf79c71029b94cd9f5',1,'MQTTClient.c']]], - ['mqttclient_5ffree_667',['MQTTClient_free',['../MQTTClient_8c.html#ab217acbfaf47603355ca430983f93095',1,'MQTTClient.c']]], - ['mqttclient_5ffreemessage_668',['MQTTClient_freeMessage',['../MQTTClient_8c.html#a2bc00ce11e0cac5dbc0938c512b4ab31',1,'MQTTClient.c']]], - ['mqttclient_5fgetpendingdeliverytokens_669',['MQTTClient_getPendingDeliveryTokens',['../MQTTClient_8c.html#a2a617c6b0492c04a4ddea592f5e53604',1,'MQTTClient.c']]], - ['mqttclient_5fgetversioninfo_670',['MQTTClient_getVersionInfo',['../MQTTClient_8c.html#abe842456c914ce9201d277a972cc085e',1,'MQTTClient.c']]], - ['mqttclient_5fglobal_5finit_671',['MQTTClient_global_init',['../MQTTClient_8c.html#a21804ede1a506d1d69a472bc30acc8ba',1,'MQTTClient.c']]], - ['mqttclient_5fisconnected_672',['MQTTClient_isConnected',['../MQTTClient_8c.html#a6e8231e8c47f6f67f7ebbb5dcb4c69c0',1,'MQTTClient.c']]], - ['mqttclient_5fpublish_673',['MQTTClient_publish',['../MQTTClient_8c.html#a3cd7a94b48d1d9c6b8af4b9203d69d37',1,'MQTTClient.c']]], - ['mqttclient_5fpublish5_674',['MQTTClient_publish5',['../MQTTClient_8c.html#a3c0ca97b393eee10d4f441ba68830e83',1,'MQTTClient.c']]], - ['mqttclient_5fpublishmessage_675',['MQTTClient_publishMessage',['../MQTTClient_8c.html#a5e0cfa14237d7557bee2a59747ecadd3',1,'MQTTClient.c']]], - ['mqttclient_5fpublishmessage5_676',['MQTTClient_publishMessage5',['../MQTTClient_8c.html#ae54936bf7680dcde353e6fc785a44461',1,'MQTTClient.c']]], - ['mqttclient_5freceive_677',['MQTTClient_receive',['../MQTTClient_8c.html#a4c2df88d00a3dadd510a8cb774739366',1,'MQTTClient.c']]], - ['mqttclient_5fsetcallbacks_678',['MQTTClient_setCallbacks',['../MQTTClient_8c.html#aad27d07782991a4937ebf2f39a021f83',1,'MQTTClient.c']]], - ['mqttclient_5fsetcommandtimeout_679',['MQTTClient_setCommandTimeout',['../MQTTClient_8c.html#a96067a2fb74d2a61c7e93015629548e0',1,'MQTTClient.c']]], - ['mqttclient_5fsetdisconnected_680',['MQTTClient_setDisconnected',['../MQTTClient_8c.html#adc7d708419664670063a0e7fd9c27bca',1,'MQTTClient.c']]], - ['mqttclient_5fsettracecallback_681',['MQTTClient_setTraceCallback',['../MQTTClient_8c.html#a22870f94aa4cb1827626612f1ded7c69',1,'MQTTClient.c']]], - ['mqttclient_5fsettracelevel_682',['MQTTClient_setTraceLevel',['../MQTTClient_8c.html#a4dfa35d29db54b10b15b8ac2d9a778be',1,'MQTTClient.c']]], - ['mqttclient_5fstrerror_683',['MQTTClient_strerror',['../MQTTClient_8c.html#a9defda2979f6fedaae64fd85f5c2f617',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribe_684',['MQTTClient_subscribe',['../MQTTClient_8c.html#a9c1c28258f0d5c6a44ff53a98618f5f3',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribe5_685',['MQTTClient_subscribe5',['../MQTTClient_8c.html#af35ab7375435f7b6388c5ff4610dad3d',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribemany_686',['MQTTClient_subscribeMany',['../MQTTClient_8c.html#a92fa1c13f3db8399e042fbdbdfb692b3',1,'MQTTClient.c']]], - ['mqttclient_5fsubscribemany5_687',['MQTTClient_subscribeMany5',['../MQTTClient_8c.html#a5390c2402f135c12826ffbf6fc261f7c',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribe_688',['MQTTClient_unsubscribe',['../MQTTClient_8c.html#aa8731be3dbc6a25f41f037f8bbbb054b',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribe5_689',['MQTTClient_unsubscribe5',['../MQTTClient_8c.html#a58356c13867f18df60fd4c7ec9457c48',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribemany_690',['MQTTClient_unsubscribeMany',['../MQTTClient_8c.html#a50abbce720d50b9f84b97ff9fa1f546d',1,'MQTTClient.c']]], - ['mqttclient_5funsubscribemany5_691',['MQTTClient_unsubscribeMany5',['../MQTTClient_8c.html#a46bdb532d2153110ccffb2f0748d1ba5',1,'MQTTClient.c']]], - ['mqttclient_5fwaitforcompletion_692',['MQTTClient_waitForCompletion',['../MQTTClient_8c.html#ab8786efdd6c3a50c6ca33cfb5d8fc283',1,'MQTTClient.c']]], - ['mqttclient_5fyield_693',['MQTTClient_yield',['../MQTTClient_8c.html#a8ad3d29864a9ca08202b0832e0f6678e',1,'MQTTClient.c']]], - ['mqttpacket_5fack_694',['MQTTPacket_ack',['../MQTTPacket_8c.html#a93c155059c80bd01b4a1561d9bec1d13',1,'MQTTPacket.c']]], - ['mqttpacket_5fconnack_695',['MQTTPacket_connack',['../MQTTPacketOut_8c.html#ad05dd32a547e82e0741d9d8279568a65',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fdecode_696',['MQTTPacket_decode',['../MQTTPacket_8c.html#ac1f61e571640513a9785b3164141dfbc',1,'MQTTPacket.c']]], - ['mqttpacket_5fencode_697',['MQTTPacket_encode',['../MQTTPacket_8c.html#aadd77a4fa1b2d5c7791e3542c56af856',1,'MQTTPacket.c']]], - ['mqttpacket_5ffactory_698',['MQTTPacket_Factory',['../MQTTPacket_8c.html#af922033c495b05fe4242afc54211f20d',1,'MQTTPacket.c']]], - ['mqttpacket_5ffree_5fpacket_699',['MQTTPacket_free_packet',['../MQTTPacket_8c.html#a28f1754fe1f090d54bc3b5687fb2dd8c',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreeack_700',['MQTTPacket_freeAck',['../MQTTPacket_8c.html#a0ef92fb0207ed6272de9ebc749745d0c',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreeconnack_701',['MQTTPacket_freeConnack',['../MQTTPacketOut_8c.html#a49e8e6789e17a29f5a448b8fab0a4137',1,'MQTTPacketOut.c']]], - ['mqttpacket_5ffreepublish_702',['MQTTPacket_freePublish',['../MQTTPacket_8c.html#a642e5f62d21f14e81f8fc70b491d89c8',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreesuback_703',['MQTTPacket_freeSuback',['../MQTTPacket_8c.html#a4262b8f35885dc123f59268fb74cec3d',1,'MQTTPacket.c']]], - ['mqttpacket_5ffreeunsuback_704',['MQTTPacket_freeUnsuback',['../MQTTPacket_8c.html#a9dd0446112e7bc982f8e3bb8bbb6b409',1,'MQTTPacket.c']]], - ['mqttpacket_5fheader_5fonly_705',['MQTTPacket_header_only',['../MQTTPacket_8c.html#af3ddd9c1a35d51bf70f44a1aa6fa0bba',1,'MQTTPacket.c']]], - ['mqttpacket_5fname_706',['MQTTPacket_name',['../MQTTPacket_8c.html#a9f9e58aba3ed5d513862d76bc5e29743',1,'MQTTPacket.c']]], - ['mqttpacket_5fpublish_707',['MQTTPacket_publish',['../MQTTPacket_8c.html#a58feb89ee5616f2ea6d222bbbef927bb',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_708',['MQTTPacket_send',['../MQTTPacket_8c.html#a51f58f1c7864f9fe87b55cc6ccb10129',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fack_709',['MQTTPacket_send_ack',['../MQTTPacket_8c.html#ad89e627a37f7f7eb4355b076cd46e0b0',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fconnect_710',['MQTTPacket_send_connect',['../MQTTPacketOut_8c.html#ad3c3f0919760286998e9b9eafaa47a36',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsend_5fdisconnect_711',['MQTTPacket_send_disconnect',['../MQTTPacket_8c.html#aa9e17261b4d09d802dba6a65bcdc44fa',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpingreq_712',['MQTTPacket_send_pingreq',['../MQTTPacketOut_8c.html#acf4b3402e224ac22ffbe74731f374fe0',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsend_5fpuback_713',['MQTTPacket_send_puback',['../MQTTPacket_8c.html#a8b93325a6a336406497b20b489d6c46a',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpubcomp_714',['MQTTPacket_send_pubcomp',['../MQTTPacket_8c.html#a908f81381b1720e4a53d15c1c4690f5c',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpublish_715',['MQTTPacket_send_publish',['../MQTTPacket_8c.html#a9ebcf93ff2ba3bd103f016c975e9c9c4',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpubrec_716',['MQTTPacket_send_pubrec',['../MQTTPacket_8c.html#a8167e3188a4bdcfb30c10e0d76c82afe',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fpubrel_717',['MQTTPacket_send_pubrel',['../MQTTPacket_8c.html#adec2c812b12255dab78f75163a4f1960',1,'MQTTPacket.c']]], - ['mqttpacket_5fsend_5fsubscribe_718',['MQTTPacket_send_subscribe',['../MQTTPacketOut_8c.html#a90212ed29c311f52a1dce0617133b1a7',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsend_5funsubscribe_719',['MQTTPacket_send_unsubscribe',['../MQTTPacketOut_8c.html#a1ad4c9b76c6ab88c394ee925eb4dcd44',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fsends_720',['MQTTPacket_sends',['../MQTTPacket_8c.html#a3635fd8035177b20c478daea6bad9328',1,'MQTTPacket.c']]], - ['mqttpacket_5fsuback_721',['MQTTPacket_suback',['../MQTTPacketOut_8c.html#aee4b3e106128629671828ae7bfa70850',1,'MQTTPacketOut.c']]], - ['mqttpacket_5funsuback_722',['MQTTPacket_unsuback',['../MQTTPacketOut_8c.html#a93f6aa4b23d30f6c8c5be87b0b58e37c',1,'MQTTPacketOut.c']]], - ['mqttpacket_5fvbidecode_723',['MQTTPacket_VBIdecode',['../MQTTPacket_8c.html#a4fc1ee4d2cf8fd9bd59d89aadab222df',1,'MQTTPacket.c']]], - ['mqttpersistence_5fclear_724',['MQTTPersistence_clear',['../MQTTPersistence_8c.html#a6f6056b7418b66a3786a5028b2357a86',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fclose_725',['MQTTPersistence_close',['../MQTTPersistence_8c.html#a385b6c191dbf51652d3e3a81813848f1',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fcreate_726',['MQTTPersistence_create',['../MQTTPersistence_8c.html#a75e756280e499db530896c5b74b8d3b5',1,'MQTTPersistence.c']]], - ['mqttpersistence_5finitialize_727',['MQTTPersistence_initialize',['../MQTTPersistence_8c.html#a65b64467da967b6930966b98f249406e',1,'MQTTPersistence.c']]], - ['mqttpersistence_5finsertinorder_728',['MQTTPersistence_insertInOrder',['../MQTTPersistence_8c.html#a568adcd6ad3542d6f631a7f7a2e682e5',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fputpacket_729',['MQTTPersistence_putPacket',['../MQTTPersistence_8c.html#a879b91862bb099e16ca81e57ba36e3fe',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fremove_730',['MQTTPersistence_remove',['../MQTTPersistence_8c.html#aba48f1a44c540fa37bca207cae3cbbd3',1,'MQTTPersistence.c']]], - ['mqttpersistence_5frestoremessagequeue_731',['MQTTPersistence_restoreMessageQueue',['../MQTTPersistence_8c.html#ab4f6437946ac80d5f9e882e92e59cc5c',1,'MQTTPersistence.c']]], - ['mqttpersistence_5frestorepacket_732',['MQTTPersistence_restorePacket',['../MQTTPersistence_8c.html#a6bc55eebf10d7a7f7e2849b3e33716d1',1,'MQTTPersistence.c']]], - ['mqttpersistence_5frestorepackets_733',['MQTTPersistence_restorePackets',['../MQTTPersistence_8c.html#a3e607d17e088a493097af07e9c7b0006',1,'MQTTPersistence.c']]], - ['mqttpersistence_5fwrapmsgid_734',['MQTTPersistence_wrapMsgID',['../MQTTPersistence_8c.html#adbf5881a3c6ce9bd7062182dfffe27fa',1,'MQTTPersistence.c']]], - ['mqttprotocol_5faddressport_735',['MQTTProtocol_addressPort',['../MQTTProtocolOut_8c.html#ae9a2970a33893540e42ff5a8d95411dc',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fassignmsgid_736',['MQTTProtocol_assignMsgId',['../MQTTProtocolClient_8c.html#a0fa824f9702cb6b0d7c800fd65198fce',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fcheckpendingwrites_737',['MQTTProtocol_checkPendingWrites',['../MQTTClient_8c.html#acdcf1aefca1dbb3d1b3d36c9bbaf3760',1,'MQTTClient.c']]], - ['mqttprotocol_5fclosesession_738',['MQTTProtocol_closeSession',['../MQTTClient_8c.html#a9f7b0789ff9ca9ded72dbad2e747b333',1,'MQTTClient.c']]], - ['mqttprotocol_5fconnect_739',['MQTTProtocol_connect',['../MQTTProtocolOut_8c.html#ad9baf307647cbe6516eadbbe975cda8c',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fcreatemessage_740',['MQTTProtocol_createMessage',['../MQTTProtocolClient_8c.html#afbf121be11a48fcda3e0d639bc47472b',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5femptymessagelist_741',['MQTTProtocol_emptyMessageList',['../MQTTProtocolClient_8c.html#ab9c5a22f0cbd4fa648663de7ae7118ab',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5ffreeclient_742',['MQTTProtocol_freeClient',['../MQTTProtocolClient_8c.html#a52e062f52e5a42275471eeb23040fc0e',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5ffreemessagelist_743',['MQTTProtocol_freeMessageList',['../MQTTProtocolClient_8c.html#a8514ddc8d0f346c0da19ab4d59b4062f',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepingresps_744',['MQTTProtocol_handlePingresps',['../MQTTProtocolOut_8c.html#ad18afa4a9025c7b84ac23450cdbd0976',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fhandlepubacks_745',['MQTTProtocol_handlePubacks',['../MQTTProtocolClient_8c.html#a30c60f9b4ddc352fb24345d3453aa7f0',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepubcomps_746',['MQTTProtocol_handlePubcomps',['../MQTTProtocolClient_8c.html#aafbc4b72c8d17fe9d8a09cfd467e1990',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepublishes_747',['MQTTProtocol_handlePublishes',['../MQTTProtocolClient_8c.html#ac5311f51f14364c3fdd3798c5a662ae4',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepubrecs_748',['MQTTProtocol_handlePubrecs',['../MQTTProtocolClient_8c.html#a1ae7eec0137c440b015425e28a515c78',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlepubrels_749',['MQTTProtocol_handlePubrels',['../MQTTProtocolClient_8c.html#a09fb9a1dce174d6ecd61b8bc5e15b21f',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fhandlesubacks_750',['MQTTProtocol_handleSubacks',['../MQTTProtocolOut_8c.html#a662c001eb1105428b5cf8474ae4c0456',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fhandleunsubacks_751',['MQTTProtocol_handleUnsubacks',['../MQTTProtocolOut_8c.html#acefb6038412bccf253bdc3f18fbfaf47',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fkeepalive_752',['MQTTProtocol_keepalive',['../MQTTProtocolClient_8c.html#a218a69c333badc4a61b321bc830ac1e0',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fremovepublication_753',['MQTTProtocol_removePublication',['../MQTTProtocolClient_8c.html#a900fa28a8774ad6f5535104bb62e7abf',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fretries_754',['MQTTProtocol_retries',['../MQTTProtocolClient_8c.html#ad2f52c0fff61c891b174d69b95bcd173',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fretry_755',['MQTTProtocol_retry',['../MQTTProtocolClient_8c.html#a3a1acc3bd7b09ab9d52e15e4a97c4cb2',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fspecialchars_756',['MQTTProtocol_specialChars',['../MQTTProtocolOut_8c.html#a6b8949d7db9299fa5fd940e8e58f31b6',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5fstartpublish_757',['MQTTProtocol_startPublish',['../MQTTProtocolClient_8c.html#a0f86c2cc2debfa39e275d3c76d5d0073',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fstartpublishcommon_758',['MQTTProtocol_startPublishCommon',['../MQTTProtocolClient_8c.html#a4502a4b9257b32508fac87e42fb1d85a',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fstorepublication_759',['MQTTProtocol_storePublication',['../MQTTProtocolClient_8c.html#ac753a3ad12292a0a9c2f4343bd33817e',1,'MQTTProtocolClient.c']]], - ['mqttprotocol_5fsubscribe_760',['MQTTProtocol_subscribe',['../MQTTProtocolOut_8c.html#a460d021d06dd24cf975dfe20e17ab1ba',1,'MQTTProtocolOut.c']]], - ['mqttprotocol_5funsubscribe_761',['MQTTProtocol_unsubscribe',['../MQTTProtocolOut_8c.html#a69083f5a059d129d1030140ec1cd3d58',1,'MQTTProtocolOut.c']]], - ['mqttresponse_5ffree_762',['MQTTResponse_free',['../MQTTClient_8c.html#a01bd2c5f98ec5c0636a106db33f2b01b',1,'MQTTClient.c']]], - ['mqttstrdup_763',['MQTTStrdup',['../MQTTProtocolClient_8c.html#a89588f085edc5cee4eb650e8ad114df4',1,'MQTTProtocolClient.c']]], - ['mqttstrncpy_764',['MQTTStrncpy',['../MQTTProtocolClient_8c.html#a447b65c664ebedef8fecb70e29dc1767',1,'MQTTProtocolClient.c']]], - ['myfree_765',['myfree',['../Heap_8c.html#a25214c297c998eba3cfc8282b1162c69',1,'Heap.c']]], - ['mymalloc_766',['mymalloc',['../Heap_8c.html#a59e53a989d69c3da767487596d9bfa1f',1,'Heap.c']]], - ['myrealloc_767',['myrealloc',['../Heap_8c.html#a699e6722cc8f195f853f09ac274413a3',1,'Heap.c']]] + ['messageidcompare_659',['messageIDCompare',['../MQTTProtocolClient_8c.html#a286c2ef2904b5eb4a0ffa5b598961c67',1,'MQTTProtocolClient.c']]], + ['messages_5fget_660',['Messages_get',['../Messages_8c.html#ab0c342273f8f7d3c206314ae8215a14c',1,'Messages.c']]], + ['mqttclient_5fconnect_661',['MQTTClient_connect',['../MQTTClient_8c.html#aaa8ae61cd65c9dc0846df10122d7bd4e',1,'MQTTClient.c']]], + ['mqttclient_5fconnect5_662',['MQTTClient_connect5',['../MQTTClient_8c.html#aa777f80cb3eec5610f976aff30b8c0d6',1,'MQTTClient.c']]], + ['mqttclient_5fcreate_663',['MQTTClient_create',['../MQTTClient_8c.html#a9a0518d9ca924d12c1329dbe3de5f2b6',1,'MQTTClient.c']]], + ['mqttclient_5fcreatewithoptions_664',['MQTTClient_createWithOptions',['../MQTTClient_8c.html#ade24f717a9b39d38b081e1d5e0db1661',1,'MQTTClient.c']]], + ['mqttclient_5fdestroy_665',['MQTTClient_destroy',['../MQTTClient_8c.html#ae700c3f5cfea3813264ce95e7c8cf498',1,'MQTTClient.c']]], + ['mqttclient_5fdisconnect_666',['MQTTClient_disconnect',['../MQTTClient_8c.html#a1e4d90c13a3c0705bc4a13bfe64e6525',1,'MQTTClient.c']]], + ['mqttclient_5fdisconnect1_667',['MQTTClient_disconnect1',['../MQTTClient_8c.html#a2eeb63b405d9aed880a79b38addf6df7',1,'MQTTClient.c']]], + ['mqttclient_5fdisconnect_5finternal_668',['MQTTClient_disconnect_internal',['../MQTTClient_8c.html#a6a08562ce9b763bf79c71029b94cd9f5',1,'MQTTClient.c']]], + ['mqttclient_5ffree_669',['MQTTClient_free',['../MQTTClient_8c.html#ab217acbfaf47603355ca430983f93095',1,'MQTTClient.c']]], + ['mqttclient_5ffreemessage_670',['MQTTClient_freeMessage',['../MQTTClient_8c.html#a2bc00ce11e0cac5dbc0938c512b4ab31',1,'MQTTClient.c']]], + ['mqttclient_5fgetpendingdeliverytokens_671',['MQTTClient_getPendingDeliveryTokens',['../MQTTClient_8c.html#a2a617c6b0492c04a4ddea592f5e53604',1,'MQTTClient.c']]], + ['mqttclient_5fgetversioninfo_672',['MQTTClient_getVersionInfo',['../MQTTClient_8c.html#abe842456c914ce9201d277a972cc085e',1,'MQTTClient.c']]], + ['mqttclient_5fglobal_5finit_673',['MQTTClient_global_init',['../MQTTClient_8c.html#a21804ede1a506d1d69a472bc30acc8ba',1,'MQTTClient.c']]], + ['mqttclient_5fisconnected_674',['MQTTClient_isConnected',['../MQTTClient_8c.html#a6e8231e8c47f6f67f7ebbb5dcb4c69c0',1,'MQTTClient.c']]], + ['mqttclient_5fpublish_675',['MQTTClient_publish',['../MQTTClient_8c.html#a3cd7a94b48d1d9c6b8af4b9203d69d37',1,'MQTTClient.c']]], + ['mqttclient_5fpublish5_676',['MQTTClient_publish5',['../MQTTClient_8c.html#a3c0ca97b393eee10d4f441ba68830e83',1,'MQTTClient.c']]], + ['mqttclient_5fpublishmessage_677',['MQTTClient_publishMessage',['../MQTTClient_8c.html#a5e0cfa14237d7557bee2a59747ecadd3',1,'MQTTClient.c']]], + ['mqttclient_5fpublishmessage5_678',['MQTTClient_publishMessage5',['../MQTTClient_8c.html#ae54936bf7680dcde353e6fc785a44461',1,'MQTTClient.c']]], + ['mqttclient_5freceive_679',['MQTTClient_receive',['../MQTTClient_8c.html#a4c2df88d00a3dadd510a8cb774739366',1,'MQTTClient.c']]], + ['mqttclient_5fsetcallbacks_680',['MQTTClient_setCallbacks',['../MQTTClient_8c.html#aad27d07782991a4937ebf2f39a021f83',1,'MQTTClient.c']]], + ['mqttclient_5fsetcommandtimeout_681',['MQTTClient_setCommandTimeout',['../MQTTClient_8c.html#a96067a2fb74d2a61c7e93015629548e0',1,'MQTTClient.c']]], + ['mqttclient_5fsetdisconnected_682',['MQTTClient_setDisconnected',['../MQTTClient_8c.html#adc7d708419664670063a0e7fd9c27bca',1,'MQTTClient.c']]], + ['mqttclient_5fsettracecallback_683',['MQTTClient_setTraceCallback',['../MQTTClient_8c.html#a22870f94aa4cb1827626612f1ded7c69',1,'MQTTClient.c']]], + ['mqttclient_5fsettracelevel_684',['MQTTClient_setTraceLevel',['../MQTTClient_8c.html#a4dfa35d29db54b10b15b8ac2d9a778be',1,'MQTTClient.c']]], + ['mqttclient_5fstrerror_685',['MQTTClient_strerror',['../MQTTClient_8c.html#a9defda2979f6fedaae64fd85f5c2f617',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribe_686',['MQTTClient_subscribe',['../MQTTClient_8c.html#a9c1c28258f0d5c6a44ff53a98618f5f3',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribe5_687',['MQTTClient_subscribe5',['../MQTTClient_8c.html#af35ab7375435f7b6388c5ff4610dad3d',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribemany_688',['MQTTClient_subscribeMany',['../MQTTClient_8c.html#a92fa1c13f3db8399e042fbdbdfb692b3',1,'MQTTClient.c']]], + ['mqttclient_5fsubscribemany5_689',['MQTTClient_subscribeMany5',['../MQTTClient_8c.html#a5390c2402f135c12826ffbf6fc261f7c',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribe_690',['MQTTClient_unsubscribe',['../MQTTClient_8c.html#aa8731be3dbc6a25f41f037f8bbbb054b',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribe5_691',['MQTTClient_unsubscribe5',['../MQTTClient_8c.html#a58356c13867f18df60fd4c7ec9457c48',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribemany_692',['MQTTClient_unsubscribeMany',['../MQTTClient_8c.html#a50abbce720d50b9f84b97ff9fa1f546d',1,'MQTTClient.c']]], + ['mqttclient_5funsubscribemany5_693',['MQTTClient_unsubscribeMany5',['../MQTTClient_8c.html#a46bdb532d2153110ccffb2f0748d1ba5',1,'MQTTClient.c']]], + ['mqttclient_5fwaitforcompletion_694',['MQTTClient_waitForCompletion',['../MQTTClient_8c.html#ab8786efdd6c3a50c6ca33cfb5d8fc283',1,'MQTTClient.c']]], + ['mqttclient_5fyield_695',['MQTTClient_yield',['../MQTTClient_8c.html#a8ad3d29864a9ca08202b0832e0f6678e',1,'MQTTClient.c']]], + ['mqttpacket_5fack_696',['MQTTPacket_ack',['../MQTTPacket_8c.html#a93c155059c80bd01b4a1561d9bec1d13',1,'MQTTPacket.c']]], + ['mqttpacket_5fconnack_697',['MQTTPacket_connack',['../MQTTPacketOut_8c.html#ad05dd32a547e82e0741d9d8279568a65',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fdecode_698',['MQTTPacket_decode',['../MQTTPacket_8c.html#ac1f61e571640513a9785b3164141dfbc',1,'MQTTPacket.c']]], + ['mqttpacket_5fencode_699',['MQTTPacket_encode',['../MQTTPacket_8c.html#aadd77a4fa1b2d5c7791e3542c56af856',1,'MQTTPacket.c']]], + ['mqttpacket_5ffactory_700',['MQTTPacket_Factory',['../MQTTPacket_8c.html#af922033c495b05fe4242afc54211f20d',1,'MQTTPacket.c']]], + ['mqttpacket_5ffree_5fpacket_701',['MQTTPacket_free_packet',['../MQTTPacket_8c.html#a28f1754fe1f090d54bc3b5687fb2dd8c',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreeack_702',['MQTTPacket_freeAck',['../MQTTPacket_8c.html#a0ef92fb0207ed6272de9ebc749745d0c',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreeconnack_703',['MQTTPacket_freeConnack',['../MQTTPacketOut_8c.html#a49e8e6789e17a29f5a448b8fab0a4137',1,'MQTTPacketOut.c']]], + ['mqttpacket_5ffreepublish_704',['MQTTPacket_freePublish',['../MQTTPacket_8c.html#a642e5f62d21f14e81f8fc70b491d89c8',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreesuback_705',['MQTTPacket_freeSuback',['../MQTTPacket_8c.html#a4262b8f35885dc123f59268fb74cec3d',1,'MQTTPacket.c']]], + ['mqttpacket_5ffreeunsuback_706',['MQTTPacket_freeUnsuback',['../MQTTPacket_8c.html#a9dd0446112e7bc982f8e3bb8bbb6b409',1,'MQTTPacket.c']]], + ['mqttpacket_5fheader_5fonly_707',['MQTTPacket_header_only',['../MQTTPacket_8c.html#af3ddd9c1a35d51bf70f44a1aa6fa0bba',1,'MQTTPacket.c']]], + ['mqttpacket_5fname_708',['MQTTPacket_name',['../MQTTPacket_8c.html#a9f9e58aba3ed5d513862d76bc5e29743',1,'MQTTPacket.c']]], + ['mqttpacket_5fpublish_709',['MQTTPacket_publish',['../MQTTPacket_8c.html#a58feb89ee5616f2ea6d222bbbef927bb',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_710',['MQTTPacket_send',['../MQTTPacket_8c.html#a51f58f1c7864f9fe87b55cc6ccb10129',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fack_711',['MQTTPacket_send_ack',['../MQTTPacket_8c.html#ad89e627a37f7f7eb4355b076cd46e0b0',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fconnect_712',['MQTTPacket_send_connect',['../MQTTPacketOut_8c.html#ad3c3f0919760286998e9b9eafaa47a36',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsend_5fdisconnect_713',['MQTTPacket_send_disconnect',['../MQTTPacket_8c.html#aa9e17261b4d09d802dba6a65bcdc44fa',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpingreq_714',['MQTTPacket_send_pingreq',['../MQTTPacketOut_8c.html#acf4b3402e224ac22ffbe74731f374fe0',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsend_5fpuback_715',['MQTTPacket_send_puback',['../MQTTPacket_8c.html#a8b93325a6a336406497b20b489d6c46a',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpubcomp_716',['MQTTPacket_send_pubcomp',['../MQTTPacket_8c.html#a908f81381b1720e4a53d15c1c4690f5c',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpublish_717',['MQTTPacket_send_publish',['../MQTTPacket_8c.html#a9ebcf93ff2ba3bd103f016c975e9c9c4',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpubrec_718',['MQTTPacket_send_pubrec',['../MQTTPacket_8c.html#a8167e3188a4bdcfb30c10e0d76c82afe',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fpubrel_719',['MQTTPacket_send_pubrel',['../MQTTPacket_8c.html#adec2c812b12255dab78f75163a4f1960',1,'MQTTPacket.c']]], + ['mqttpacket_5fsend_5fsubscribe_720',['MQTTPacket_send_subscribe',['../MQTTPacketOut_8c.html#a90212ed29c311f52a1dce0617133b1a7',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsend_5funsubscribe_721',['MQTTPacket_send_unsubscribe',['../MQTTPacketOut_8c.html#a1ad4c9b76c6ab88c394ee925eb4dcd44',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fsends_722',['MQTTPacket_sends',['../MQTTPacket_8c.html#a3635fd8035177b20c478daea6bad9328',1,'MQTTPacket.c']]], + ['mqttpacket_5fsuback_723',['MQTTPacket_suback',['../MQTTPacketOut_8c.html#aee4b3e106128629671828ae7bfa70850',1,'MQTTPacketOut.c']]], + ['mqttpacket_5funsuback_724',['MQTTPacket_unsuback',['../MQTTPacketOut_8c.html#a93f6aa4b23d30f6c8c5be87b0b58e37c',1,'MQTTPacketOut.c']]], + ['mqttpacket_5fvbidecode_725',['MQTTPacket_VBIdecode',['../MQTTPacket_8c.html#a4fc1ee4d2cf8fd9bd59d89aadab222df',1,'MQTTPacket.c']]], + ['mqttpersistence_5fclear_726',['MQTTPersistence_clear',['../MQTTPersistence_8c.html#a6f6056b7418b66a3786a5028b2357a86',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fclose_727',['MQTTPersistence_close',['../MQTTPersistence_8c.html#a385b6c191dbf51652d3e3a81813848f1',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fcreate_728',['MQTTPersistence_create',['../MQTTPersistence_8c.html#a75e756280e499db530896c5b74b8d3b5',1,'MQTTPersistence.c']]], + ['mqttpersistence_5finitialize_729',['MQTTPersistence_initialize',['../MQTTPersistence_8c.html#a65b64467da967b6930966b98f249406e',1,'MQTTPersistence.c']]], + ['mqttpersistence_5finsertinorder_730',['MQTTPersistence_insertInOrder',['../MQTTPersistence_8c.html#a568adcd6ad3542d6f631a7f7a2e682e5',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fputpacket_731',['MQTTPersistence_putPacket',['../MQTTPersistence_8c.html#a879b91862bb099e16ca81e57ba36e3fe',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fremove_732',['MQTTPersistence_remove',['../MQTTPersistence_8c.html#aba48f1a44c540fa37bca207cae3cbbd3',1,'MQTTPersistence.c']]], + ['mqttpersistence_5frestoremessagequeue_733',['MQTTPersistence_restoreMessageQueue',['../MQTTPersistence_8c.html#ab4f6437946ac80d5f9e882e92e59cc5c',1,'MQTTPersistence.c']]], + ['mqttpersistence_5frestorepacket_734',['MQTTPersistence_restorePacket',['../MQTTPersistence_8c.html#a6bc55eebf10d7a7f7e2849b3e33716d1',1,'MQTTPersistence.c']]], + ['mqttpersistence_5frestorepackets_735',['MQTTPersistence_restorePackets',['../MQTTPersistence_8c.html#a3e607d17e088a493097af07e9c7b0006',1,'MQTTPersistence.c']]], + ['mqttpersistence_5fwrapmsgid_736',['MQTTPersistence_wrapMsgID',['../MQTTPersistence_8c.html#adbf5881a3c6ce9bd7062182dfffe27fa',1,'MQTTPersistence.c']]], + ['mqttprotocol_5faddressport_737',['MQTTProtocol_addressPort',['../MQTTProtocolOut_8c.html#ae9a2970a33893540e42ff5a8d95411dc',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fassignmsgid_738',['MQTTProtocol_assignMsgId',['../MQTTProtocolClient_8c.html#a0fa824f9702cb6b0d7c800fd65198fce',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fcheckpendingwrites_739',['MQTTProtocol_checkPendingWrites',['../MQTTClient_8c.html#acdcf1aefca1dbb3d1b3d36c9bbaf3760',1,'MQTTClient.c']]], + ['mqttprotocol_5fclosesession_740',['MQTTProtocol_closeSession',['../MQTTClient_8c.html#a9f7b0789ff9ca9ded72dbad2e747b333',1,'MQTTClient.c']]], + ['mqttprotocol_5fconnect_741',['MQTTProtocol_connect',['../MQTTProtocolOut_8c.html#ad9baf307647cbe6516eadbbe975cda8c',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fcreatemessage_742',['MQTTProtocol_createMessage',['../MQTTProtocolClient_8c.html#afbf121be11a48fcda3e0d639bc47472b',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5femptymessagelist_743',['MQTTProtocol_emptyMessageList',['../MQTTProtocolClient_8c.html#ab9c5a22f0cbd4fa648663de7ae7118ab',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5ffreeclient_744',['MQTTProtocol_freeClient',['../MQTTProtocolClient_8c.html#a52e062f52e5a42275471eeb23040fc0e',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5ffreemessagelist_745',['MQTTProtocol_freeMessageList',['../MQTTProtocolClient_8c.html#a8514ddc8d0f346c0da19ab4d59b4062f',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepingresps_746',['MQTTProtocol_handlePingresps',['../MQTTProtocolOut_8c.html#ad18afa4a9025c7b84ac23450cdbd0976',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fhandlepubacks_747',['MQTTProtocol_handlePubacks',['../MQTTProtocolClient_8c.html#a30c60f9b4ddc352fb24345d3453aa7f0',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepubcomps_748',['MQTTProtocol_handlePubcomps',['../MQTTProtocolClient_8c.html#aafbc4b72c8d17fe9d8a09cfd467e1990',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepublishes_749',['MQTTProtocol_handlePublishes',['../MQTTProtocolClient_8c.html#ac5311f51f14364c3fdd3798c5a662ae4',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepubrecs_750',['MQTTProtocol_handlePubrecs',['../MQTTProtocolClient_8c.html#a1ae7eec0137c440b015425e28a515c78',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlepubrels_751',['MQTTProtocol_handlePubrels',['../MQTTProtocolClient_8c.html#a09fb9a1dce174d6ecd61b8bc5e15b21f',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fhandlesubacks_752',['MQTTProtocol_handleSubacks',['../MQTTProtocolOut_8c.html#a662c001eb1105428b5cf8474ae4c0456',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fhandleunsubacks_753',['MQTTProtocol_handleUnsubacks',['../MQTTProtocolOut_8c.html#acefb6038412bccf253bdc3f18fbfaf47',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fkeepalive_754',['MQTTProtocol_keepalive',['../MQTTProtocolClient_8c.html#a218a69c333badc4a61b321bc830ac1e0',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fremovepublication_755',['MQTTProtocol_removePublication',['../MQTTProtocolClient_8c.html#a900fa28a8774ad6f5535104bb62e7abf',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fretries_756',['MQTTProtocol_retries',['../MQTTProtocolClient_8c.html#ad2f52c0fff61c891b174d69b95bcd173',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fretry_757',['MQTTProtocol_retry',['../MQTTProtocolClient_8c.html#a3a1acc3bd7b09ab9d52e15e4a97c4cb2',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fspecialchars_758',['MQTTProtocol_specialChars',['../MQTTProtocolOut_8c.html#a6b8949d7db9299fa5fd940e8e58f31b6',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5fstartpublish_759',['MQTTProtocol_startPublish',['../MQTTProtocolClient_8c.html#a0f86c2cc2debfa39e275d3c76d5d0073',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fstartpublishcommon_760',['MQTTProtocol_startPublishCommon',['../MQTTProtocolClient_8c.html#a4502a4b9257b32508fac87e42fb1d85a',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fstorepublication_761',['MQTTProtocol_storePublication',['../MQTTProtocolClient_8c.html#ac753a3ad12292a0a9c2f4343bd33817e',1,'MQTTProtocolClient.c']]], + ['mqttprotocol_5fsubscribe_762',['MQTTProtocol_subscribe',['../MQTTProtocolOut_8c.html#a460d021d06dd24cf975dfe20e17ab1ba',1,'MQTTProtocolOut.c']]], + ['mqttprotocol_5funsubscribe_763',['MQTTProtocol_unsubscribe',['../MQTTProtocolOut_8c.html#a69083f5a059d129d1030140ec1cd3d58',1,'MQTTProtocolOut.c']]], + ['mqttresponse_5ffree_764',['MQTTResponse_free',['../MQTTClient_8c.html#a01bd2c5f98ec5c0636a106db33f2b01b',1,'MQTTClient.c']]], + ['mqttstrdup_765',['MQTTStrdup',['../MQTTProtocolClient_8c.html#a89588f085edc5cee4eb650e8ad114df4',1,'MQTTProtocolClient.c']]], + ['mqttstrncpy_766',['MQTTStrncpy',['../MQTTProtocolClient_8c.html#a447b65c664ebedef8fecb70e29dc1767',1,'MQTTProtocolClient.c']]], + ['myfree_767',['myfree',['../Heap_8c.html#a25214c297c998eba3cfc8282b1162c69',1,'Heap.c']]], + ['mymalloc_768',['mymalloc',['../Heap_8c.html#a59e53a989d69c3da767487596d9bfa1f',1,'Heap.c']]], + ['myrealloc_769',['myrealloc',['../Heap_8c.html#a699e6722cc8f195f853f09ac274413a3',1,'Heap.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_6.js b/docs/MQTTClient_internal/html/search/functions_6.js index 062d91f9..54398a55 100644 --- a/docs/MQTTClient_internal/html/search/functions_6.js +++ b/docs/MQTTClient_internal/html/search/functions_6.js @@ -1,14 +1,14 @@ var searchData= [ - ['pending_5fsocketcompare_768',['pending_socketcompare',['../SocketBuffer_8c.html#a39f1ee9c98bc12a7be4d7a40b03550d5',1,'SocketBuffer.c']]], - ['pstclear_769',['pstclear',['../MQTTPersistenceDefault_8c.html#a15b1457f7fd20dde1fd51ed434321e1a',1,'MQTTPersistenceDefault.c']]], - ['pstclose_770',['pstclose',['../MQTTPersistenceDefault_8c.html#a24f38d19ff3db61292d7b463e59174ef',1,'MQTTPersistenceDefault.c']]], - ['pstcontainskey_771',['pstcontainskey',['../MQTTPersistenceDefault_8c.html#a2a55461def3359a2b0aff6b3bb0644ad',1,'MQTTPersistenceDefault.c']]], - ['pstget_772',['pstget',['../MQTTPersistenceDefault_8c.html#a3aef9f9af29882fac9e76984e4c2954c',1,'MQTTPersistenceDefault.c']]], - ['pstkeys_773',['pstkeys',['../MQTTPersistenceDefault_8c.html#a9f358375b8e254983d00f8b057e97dd6',1,'MQTTPersistenceDefault.c']]], - ['pstmkdir_774',['pstmkdir',['../MQTTPersistenceDefault_8c.html#aecfbfa761dfca1b551d9ade325f480b1',1,'MQTTPersistenceDefault.c']]], - ['pstopen_775',['pstopen',['../MQTTPersistenceDefault_8c.html#a919cf4710a1f7d7ce0878599e9aa4700',1,'MQTTPersistenceDefault.c']]], - ['pstput_776',['pstput',['../MQTTPersistenceDefault_8c.html#a64e0c1a2fd06375b975d6643175572d8',1,'MQTTPersistenceDefault.c']]], - ['pstremove_777',['pstremove',['../MQTTPersistenceDefault_8c.html#a64b106b9a2778f97d271af7c9a7940f2',1,'MQTTPersistenceDefault.c']]], - ['ptrcompare_778',['ptrCompare',['../Heap_8c.html#a45db32d4f454f94d7f4574deced5ee33',1,'Heap.c']]] + ['pending_5fsocketcompare_770',['pending_socketcompare',['../SocketBuffer_8c.html#a39f1ee9c98bc12a7be4d7a40b03550d5',1,'SocketBuffer.c']]], + ['pstclear_771',['pstclear',['../MQTTPersistenceDefault_8c.html#a15b1457f7fd20dde1fd51ed434321e1a',1,'MQTTPersistenceDefault.c']]], + ['pstclose_772',['pstclose',['../MQTTPersistenceDefault_8c.html#a24f38d19ff3db61292d7b463e59174ef',1,'MQTTPersistenceDefault.c']]], + ['pstcontainskey_773',['pstcontainskey',['../MQTTPersistenceDefault_8c.html#a2a55461def3359a2b0aff6b3bb0644ad',1,'MQTTPersistenceDefault.c']]], + ['pstget_774',['pstget',['../MQTTPersistenceDefault_8c.html#a3aef9f9af29882fac9e76984e4c2954c',1,'MQTTPersistenceDefault.c']]], + ['pstkeys_775',['pstkeys',['../MQTTPersistenceDefault_8c.html#a9f358375b8e254983d00f8b057e97dd6',1,'MQTTPersistenceDefault.c']]], + ['pstmkdir_776',['pstmkdir',['../MQTTPersistenceDefault_8c.html#aecfbfa761dfca1b551d9ade325f480b1',1,'MQTTPersistenceDefault.c']]], + ['pstopen_777',['pstopen',['../MQTTPersistenceDefault_8c.html#a919cf4710a1f7d7ce0878599e9aa4700',1,'MQTTPersistenceDefault.c']]], + ['pstput_778',['pstput',['../MQTTPersistenceDefault_8c.html#a64e0c1a2fd06375b975d6643175572d8',1,'MQTTPersistenceDefault.c']]], + ['pstremove_779',['pstremove',['../MQTTPersistenceDefault_8c.html#a64b106b9a2778f97d271af7c9a7940f2',1,'MQTTPersistenceDefault.c']]], + ['ptrcompare_780',['ptrCompare',['../Heap_8c.html#a45db32d4f454f94d7f4574deced5ee33',1,'Heap.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_7.js b/docs/MQTTClient_internal/html/search/functions_7.js index fe5b8393..d77c9150 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_779',['readChar',['../MQTTPacket_8c.html#aff1d10b221f5b4ce421b4c2588cbe511',1,'MQTTPacket.c']]], - ['readint_780',['readInt',['../MQTTPacket_8c.html#a132d2d5b304d37cd2348a973f7b315de',1,'MQTTPacket.c']]], - ['readint4_781',['readInt4',['../MQTTPacket_8c.html#aa8fc559d3a1e58ab50e69146666f2f63',1,'MQTTPacket.c']]], - ['readutf_782',['readUTF',['../MQTTPacket_8c.html#adca3afbe588ae7e6f342c5a697e4ee45',1,'MQTTPacket.c']]], - ['readutflen_783',['readUTFlen',['../MQTTPacket_8c.html#ae1ec2d8714335c6ec88c93e957b644d2',1,'MQTTPacket.c']]] + ['readchar_781',['readChar',['../MQTTPacket_8c.html#aff1d10b221f5b4ce421b4c2588cbe511',1,'MQTTPacket.c']]], + ['readint_782',['readInt',['../MQTTPacket_8c.html#a132d2d5b304d37cd2348a973f7b315de',1,'MQTTPacket.c']]], + ['readint4_783',['readInt4',['../MQTTPacket_8c.html#aa8fc559d3a1e58ab50e69146666f2f63',1,'MQTTPacket.c']]], + ['readutf_784',['readUTF',['../MQTTPacket_8c.html#adca3afbe588ae7e6f342c5a697e4ee45',1,'MQTTPacket.c']]], + ['readutflen_785',['readUTFlen',['../MQTTPacket_8c.html#ae1ec2d8714335c6ec88c93e957b644d2',1,'MQTTPacket.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_8.js b/docs/MQTTClient_internal/html/search/functions_8.js index 050684fd..0f452dbf 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_784',['Socket_abortWrite',['../Socket_8c.html#ad246851be3980fd316d16864a786c808',1,'Socket.c']]], - ['socket_5faddpendingwrite_785',['Socket_addPendingWrite',['../Socket_8c.html#a8ba07ed0157d93bde9db6483b4bb4d67',1,'Socket.c']]], - ['socket_5faddsocket_786',['Socket_addSocket',['../Socket_8c.html#a3c690a1d23a55ccf1ea52cdea9b56432',1,'Socket.c']]], - ['socket_5fclearpendingwrite_787',['Socket_clearPendingWrite',['../Socket_8c.html#a0cf9d34480e63e2d6eaaaff09e3fddf7',1,'Socket.c']]], - ['socket_5fclose_788',['Socket_close',['../Socket_8c.html#a6bdb051c5944e1a0fd16ba18544ab5df',1,'Socket.c']]], - ['socket_5fclose_5fonly_789',['Socket_close_only',['../Socket_8c.html#a2e7c21836cd061947d6d6e28446c4a59',1,'Socket.c']]], - ['socket_5fcontinuewrite_790',['Socket_continueWrite',['../Socket_8c.html#a5ce31969f49786ef8452e2b547527578',1,'Socket.c']]], - ['socket_5fcontinuewrites_791',['Socket_continueWrites',['../Socket_8c.html#a40f45b094eb70875e06f96164afc4a49',1,'Socket.c']]], - ['socket_5ferror_792',['Socket_error',['../Socket_8c.html#a47824ad5afba267b9488150e1f7e8610',1,'Socket.c']]], - ['socket_5fgetaddrname_793',['Socket_getaddrname',['../Socket_8c.html#a22feda106732e755b6f9e44e026bd261',1,'Socket.c']]], - ['socket_5fgetch_794',['Socket_getch',['../Socket_8c.html#a9af02601f6b5ef066ba99d9498a024b8',1,'Socket.c']]], - ['socket_5fgetdata_795',['Socket_getdata',['../Socket_8c.html#a6e05161f70e828e8bd06ead38e0be6c8',1,'Socket.c']]], - ['socket_5fgetpeer_796',['Socket_getpeer',['../Socket_8c.html#a27952bf5cd133a873da9a218c7207059',1,'Socket.c']]], - ['socket_5fgetreadysocket_797',['Socket_getReadySocket',['../Socket_8c.html#a2c082b4e794c0a7835a0700f0bc7b3a1',1,'Socket.c']]], - ['socket_5fnew_798',['Socket_new',['../Socket_8c.html#acb965ef2124fa6736477c9286f7599b2',1,'Socket.c']]], - ['socket_5fnopendingwrites_799',['Socket_noPendingWrites',['../Socket_8c.html#ae95673b434f2c489ecefe4688c80be2d',1,'Socket.c']]], - ['socket_5foutinitialize_800',['Socket_outInitialize',['../Socket_8c.html#a573a6eea727016f3e8770f60e5eed958',1,'Socket.c']]], - ['socket_5foutterminate_801',['Socket_outTerminate',['../Socket_8c.html#af365aa1d5a29ffcb83bb15edaf3401e6',1,'Socket.c']]], - ['socket_5fputdatas_802',['Socket_putdatas',['../Socket_8c.html#a601ba77d9b01e908dbd0653f6efa3be0',1,'Socket.c']]], - ['socket_5fsetnonblocking_803',['Socket_setnonblocking',['../Socket_8c.html#a90f49db5a5763c6874f27facfe9e60a3',1,'Socket.c']]], - ['socket_5fwritev_804',['Socket_writev',['../Socket_8c.html#aec4ee8ecb248d29d315d2624a88ed1c3',1,'Socket.c']]], - ['socketbuffer_5fcleanup_805',['SocketBuffer_cleanup',['../SocketBuffer_8c.html#a0601e12cab5b7c4777df10ca6d38a41b',1,'SocketBuffer.c']]], - ['socketbuffer_5fcomplete_806',['SocketBuffer_complete',['../SocketBuffer_8c.html#a0d007b15408ae802c78bc69f115cf91e',1,'SocketBuffer.c']]], - ['socketbuffer_5ffreedefq_807',['SocketBuffer_freeDefQ',['../SocketBuffer_8c.html#acb4511a3a4767187a2607027aff718b8',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetqueuedchar_808',['SocketBuffer_getQueuedChar',['../SocketBuffer_8c.html#a08102e2e43746ccd1ab26739b5841a7c',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetqueueddata_809',['SocketBuffer_getQueuedData',['../SocketBuffer_8c.html#a8a2e0c916232521098ff734d556c3b68',1,'SocketBuffer.c']]], - ['socketbuffer_5fgetwrite_810',['SocketBuffer_getWrite',['../SocketBuffer_8c.html#a5f22a1ac450cb1805e2ab8f2ae3da80e',1,'SocketBuffer.c']]], - ['socketbuffer_5finitialize_811',['SocketBuffer_initialize',['../SocketBuffer_8c.html#abc8599ffc6f7ad91a7748e5d78bbd926',1,'SocketBuffer.c']]], - ['socketbuffer_5finterrupted_812',['SocketBuffer_interrupted',['../SocketBuffer_8c.html#aaac8b43c1ab5d20eb8e6b95de6e80671',1,'SocketBuffer.c']]], - ['socketbuffer_5fnewdefq_813',['SocketBuffer_newDefQ',['../SocketBuffer_8c.html#a9293d4ef45aa2a51baab9be4eb73091b',1,'SocketBuffer.c']]], - ['socketbuffer_5fpendingwrite_814',['SocketBuffer_pendingWrite',['../SocketBuffer_8c.html#a9a92acaaec423c44227e3dd978223529',1,'SocketBuffer.c']]], - ['socketbuffer_5fqueuechar_815',['SocketBuffer_queueChar',['../SocketBuffer_8c.html#a8a94cbb0db8ba0834a7f1c6e2eb938b4',1,'SocketBuffer.c']]], - ['socketbuffer_5fterminate_816',['SocketBuffer_terminate',['../SocketBuffer_8c.html#a4a8d6188b4775789810a44396d05cf19',1,'SocketBuffer.c']]], - ['socketbuffer_5fupdatewrite_817',['SocketBuffer_updateWrite',['../SocketBuffer_8c.html#a2b11bdc6ca61051b8edaed5620735602',1,'SocketBuffer.c']]], - ['socketbuffer_5fwritecomplete_818',['SocketBuffer_writeComplete',['../SocketBuffer_8c.html#a893ce45cf77f7d66c3f27c831ccf8124',1,'SocketBuffer.c']]], - ['socketcompare_819',['socketcompare',['../SocketBuffer_8c.html#acebc1cbb93be4588f33b04ed404f6dbf',1,'SocketBuffer.c']]], - ['stringcompare_820',['stringcompare',['../LinkedList_8c.html#a936806c4b6f6c10d91cc128b63ab110c',1,'LinkedList.c']]] + ['socket_5fabortwrite_786',['Socket_abortWrite',['../Socket_8c.html#ad246851be3980fd316d16864a786c808',1,'Socket.c']]], + ['socket_5faddpendingwrite_787',['Socket_addPendingWrite',['../Socket_8c.html#a8ba07ed0157d93bde9db6483b4bb4d67',1,'Socket.c']]], + ['socket_5faddsocket_788',['Socket_addSocket',['../Socket_8c.html#a3c690a1d23a55ccf1ea52cdea9b56432',1,'Socket.c']]], + ['socket_5fclearpendingwrite_789',['Socket_clearPendingWrite',['../Socket_8c.html#a0cf9d34480e63e2d6eaaaff09e3fddf7',1,'Socket.c']]], + ['socket_5fclose_790',['Socket_close',['../Socket_8c.html#a6bdb051c5944e1a0fd16ba18544ab5df',1,'Socket.c']]], + ['socket_5fclose_5fonly_791',['Socket_close_only',['../Socket_8c.html#a2e7c21836cd061947d6d6e28446c4a59',1,'Socket.c']]], + ['socket_5fcontinuewrite_792',['Socket_continueWrite',['../Socket_8c.html#a5ce31969f49786ef8452e2b547527578',1,'Socket.c']]], + ['socket_5fcontinuewrites_793',['Socket_continueWrites',['../Socket_8c.html#a40f45b094eb70875e06f96164afc4a49',1,'Socket.c']]], + ['socket_5ferror_794',['Socket_error',['../Socket_8c.html#a47824ad5afba267b9488150e1f7e8610',1,'Socket.c']]], + ['socket_5fgetaddrname_795',['Socket_getaddrname',['../Socket_8c.html#a22feda106732e755b6f9e44e026bd261',1,'Socket.c']]], + ['socket_5fgetch_796',['Socket_getch',['../Socket_8c.html#a9af02601f6b5ef066ba99d9498a024b8',1,'Socket.c']]], + ['socket_5fgetdata_797',['Socket_getdata',['../Socket_8c.html#a6e05161f70e828e8bd06ead38e0be6c8',1,'Socket.c']]], + ['socket_5fgetpeer_798',['Socket_getpeer',['../Socket_8c.html#a27952bf5cd133a873da9a218c7207059',1,'Socket.c']]], + ['socket_5fgetreadysocket_799',['Socket_getReadySocket',['../Socket_8c.html#a2c082b4e794c0a7835a0700f0bc7b3a1',1,'Socket.c']]], + ['socket_5fnew_800',['Socket_new',['../Socket_8c.html#acb965ef2124fa6736477c9286f7599b2',1,'Socket.c']]], + ['socket_5fnopendingwrites_801',['Socket_noPendingWrites',['../Socket_8c.html#ae95673b434f2c489ecefe4688c80be2d',1,'Socket.c']]], + ['socket_5foutinitialize_802',['Socket_outInitialize',['../Socket_8c.html#a573a6eea727016f3e8770f60e5eed958',1,'Socket.c']]], + ['socket_5foutterminate_803',['Socket_outTerminate',['../Socket_8c.html#af365aa1d5a29ffcb83bb15edaf3401e6',1,'Socket.c']]], + ['socket_5fputdatas_804',['Socket_putdatas',['../Socket_8c.html#a601ba77d9b01e908dbd0653f6efa3be0',1,'Socket.c']]], + ['socket_5fsetnonblocking_805',['Socket_setnonblocking',['../Socket_8c.html#a90f49db5a5763c6874f27facfe9e60a3',1,'Socket.c']]], + ['socket_5fwritev_806',['Socket_writev',['../Socket_8c.html#aec4ee8ecb248d29d315d2624a88ed1c3',1,'Socket.c']]], + ['socketbuffer_5fcleanup_807',['SocketBuffer_cleanup',['../SocketBuffer_8c.html#a0601e12cab5b7c4777df10ca6d38a41b',1,'SocketBuffer.c']]], + ['socketbuffer_5fcomplete_808',['SocketBuffer_complete',['../SocketBuffer_8c.html#a0d007b15408ae802c78bc69f115cf91e',1,'SocketBuffer.c']]], + ['socketbuffer_5ffreedefq_809',['SocketBuffer_freeDefQ',['../SocketBuffer_8c.html#acb4511a3a4767187a2607027aff718b8',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetqueuedchar_810',['SocketBuffer_getQueuedChar',['../SocketBuffer_8c.html#a08102e2e43746ccd1ab26739b5841a7c',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetqueueddata_811',['SocketBuffer_getQueuedData',['../SocketBuffer_8c.html#a8a2e0c916232521098ff734d556c3b68',1,'SocketBuffer.c']]], + ['socketbuffer_5fgetwrite_812',['SocketBuffer_getWrite',['../SocketBuffer_8c.html#a5f22a1ac450cb1805e2ab8f2ae3da80e',1,'SocketBuffer.c']]], + ['socketbuffer_5finitialize_813',['SocketBuffer_initialize',['../SocketBuffer_8c.html#abc8599ffc6f7ad91a7748e5d78bbd926',1,'SocketBuffer.c']]], + ['socketbuffer_5finterrupted_814',['SocketBuffer_interrupted',['../SocketBuffer_8c.html#aaac8b43c1ab5d20eb8e6b95de6e80671',1,'SocketBuffer.c']]], + ['socketbuffer_5fnewdefq_815',['SocketBuffer_newDefQ',['../SocketBuffer_8c.html#a9293d4ef45aa2a51baab9be4eb73091b',1,'SocketBuffer.c']]], + ['socketbuffer_5fpendingwrite_816',['SocketBuffer_pendingWrite',['../SocketBuffer_8c.html#a9a92acaaec423c44227e3dd978223529',1,'SocketBuffer.c']]], + ['socketbuffer_5fqueuechar_817',['SocketBuffer_queueChar',['../SocketBuffer_8c.html#a8a94cbb0db8ba0834a7f1c6e2eb938b4',1,'SocketBuffer.c']]], + ['socketbuffer_5fterminate_818',['SocketBuffer_terminate',['../SocketBuffer_8c.html#a4a8d6188b4775789810a44396d05cf19',1,'SocketBuffer.c']]], + ['socketbuffer_5fupdatewrite_819',['SocketBuffer_updateWrite',['../SocketBuffer_8c.html#a2b11bdc6ca61051b8edaed5620735602',1,'SocketBuffer.c']]], + ['socketbuffer_5fwritecomplete_820',['SocketBuffer_writeComplete',['../SocketBuffer_8c.html#a893ce45cf77f7d66c3f27c831ccf8124',1,'SocketBuffer.c']]], + ['socketcompare_821',['socketcompare',['../SocketBuffer_8c.html#acebc1cbb93be4588f33b04ed404f6dbf',1,'SocketBuffer.c']]], + ['stringcompare_822',['stringcompare',['../LinkedList_8c.html#a936806c4b6f6c10d91cc128b63ab110c',1,'LinkedList.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_9.js b/docs/MQTTClient_internal/html/search/functions_9.js index a40063f2..1ec80a38 100644 --- a/docs/MQTTClient_internal/html/search/functions_9.js +++ b/docs/MQTTClient_internal/html/search/functions_9.js @@ -1,22 +1,22 @@ var searchData= [ - ['thread_5fcheck_5fsem_821',['Thread_check_sem',['../Thread_8c.html#ad327c467c568b27be4c3676fc698e129',1,'Thread.c']]], - ['thread_5fcreate_5fcond_822',['Thread_create_cond',['../Thread_8c.html#afdd152c518f968c777012d7dfb20ef96',1,'Thread.c']]], - ['thread_5fcreate_5fmutex_823',['Thread_create_mutex',['../Thread_8c.html#a6c1b6aaeb2f7e1d5b4a4936f0568b868',1,'Thread.c']]], - ['thread_5fcreate_5fsem_824',['Thread_create_sem',['../Thread_8c.html#a3b9b6cb543ee55442d2037a971f651db',1,'Thread.c']]], - ['thread_5fdestroy_5fcond_825',['Thread_destroy_cond',['../Thread_8c.html#a95309628f2c15de1f3ea8047b086a707',1,'Thread.c']]], - ['thread_5fdestroy_5fmutex_826',['Thread_destroy_mutex',['../Thread_8c.html#ab586558bf9d7030f479ca574ea7e55a4',1,'Thread.c']]], - ['thread_5fdestroy_5fsem_827',['Thread_destroy_sem',['../Thread_8c.html#ad075ec07f801ac1a2a7dee7097048182',1,'Thread.c']]], - ['thread_5fgetid_828',['Thread_getid',['../Thread_8c.html#a216e79bc196440343aa802dfad8dc38b',1,'Thread.c']]], - ['thread_5flock_5fmutex_829',['Thread_lock_mutex',['../Thread_8c.html#a7e92185eb22775c76e1b6b8865468f17',1,'Thread.c']]], - ['thread_5fpost_5fsem_830',['Thread_post_sem',['../Thread_8c.html#ac023f527bed9c6c3a20244fa7efe272c',1,'Thread.c']]], - ['thread_5fsignal_5fcond_831',['Thread_signal_cond',['../Thread_8c.html#a7b0d40dc1603a6e93db0ee970bb6750f',1,'Thread.c']]], - ['thread_5fstart_832',['Thread_start',['../Thread_8c.html#a2e22778d99253b899d19a5c92826b4e1',1,'Thread.c']]], - ['thread_5funlock_5fmutex_833',['Thread_unlock_mutex',['../Thread_8c.html#a5faf758226199e7cf93f6b489aca07f7',1,'Thread.c']]], - ['thread_5fwait_5fcond_834',['Thread_wait_cond',['../Thread_8c.html#ae8209c766c45f3c150db2c6735378936',1,'Thread.c']]], - ['thread_5fwait_5fsem_835',['Thread_wait_sem',['../Thread_8c.html#a4d0bbfc059da3cd10626244d3468d319',1,'Thread.c']]], - ['treeaddbyindex_836',['TreeAddByIndex',['../Tree_8c.html#afa8473167abb71831644bf8a322bc3b6',1,'Tree.c']]], - ['treeinitialize_837',['TreeInitialize',['../Tree_8c.html#aa5ee1e466d266b289dc45cbd97116b83',1,'Tree.c']]], - ['treeremoveindex_838',['TreeRemoveIndex',['../Tree_8c.html#a1263bdfc6a906db3023ca1a6ad5302a4',1,'Tree.c']]], - ['treeremovenodeindex_839',['TreeRemoveNodeIndex',['../Tree_8c.html#a9c3b81e7e63498e3a8f7bd28c4caec10',1,'Tree.c']]] + ['thread_5fcheck_5fsem_823',['Thread_check_sem',['../Thread_8c.html#ad327c467c568b27be4c3676fc698e129',1,'Thread.c']]], + ['thread_5fcreate_5fcond_824',['Thread_create_cond',['../Thread_8c.html#afdd152c518f968c777012d7dfb20ef96',1,'Thread.c']]], + ['thread_5fcreate_5fmutex_825',['Thread_create_mutex',['../Thread_8c.html#a6c1b6aaeb2f7e1d5b4a4936f0568b868',1,'Thread.c']]], + ['thread_5fcreate_5fsem_826',['Thread_create_sem',['../Thread_8c.html#a3b9b6cb543ee55442d2037a971f651db',1,'Thread.c']]], + ['thread_5fdestroy_5fcond_827',['Thread_destroy_cond',['../Thread_8c.html#a95309628f2c15de1f3ea8047b086a707',1,'Thread.c']]], + ['thread_5fdestroy_5fmutex_828',['Thread_destroy_mutex',['../Thread_8c.html#ab586558bf9d7030f479ca574ea7e55a4',1,'Thread.c']]], + ['thread_5fdestroy_5fsem_829',['Thread_destroy_sem',['../Thread_8c.html#ad075ec07f801ac1a2a7dee7097048182',1,'Thread.c']]], + ['thread_5fgetid_830',['Thread_getid',['../Thread_8c.html#a216e79bc196440343aa802dfad8dc38b',1,'Thread.c']]], + ['thread_5flock_5fmutex_831',['Thread_lock_mutex',['../Thread_8c.html#a7e92185eb22775c76e1b6b8865468f17',1,'Thread.c']]], + ['thread_5fpost_5fsem_832',['Thread_post_sem',['../Thread_8c.html#ac023f527bed9c6c3a20244fa7efe272c',1,'Thread.c']]], + ['thread_5fsignal_5fcond_833',['Thread_signal_cond',['../Thread_8c.html#a7b0d40dc1603a6e93db0ee970bb6750f',1,'Thread.c']]], + ['thread_5fstart_834',['Thread_start',['../Thread_8c.html#a25288643d5e1a2ab1369132a80c58ce4',1,'Thread.c']]], + ['thread_5funlock_5fmutex_835',['Thread_unlock_mutex',['../Thread_8c.html#a5faf758226199e7cf93f6b489aca07f7',1,'Thread.c']]], + ['thread_5fwait_5fcond_836',['Thread_wait_cond',['../Thread_8c.html#ae8209c766c45f3c150db2c6735378936',1,'Thread.c']]], + ['thread_5fwait_5fsem_837',['Thread_wait_sem',['../Thread_8c.html#a4d0bbfc059da3cd10626244d3468d319',1,'Thread.c']]], + ['treeaddbyindex_838',['TreeAddByIndex',['../Tree_8c.html#afa8473167abb71831644bf8a322bc3b6',1,'Tree.c']]], + ['treeinitialize_839',['TreeInitialize',['../Tree_8c.html#aa5ee1e466d266b289dc45cbd97116b83',1,'Tree.c']]], + ['treeremoveindex_840',['TreeRemoveIndex',['../Tree_8c.html#a1263bdfc6a906db3023ca1a6ad5302a4',1,'Tree.c']]], + ['treeremovenodeindex_841',['TreeRemoveNodeIndex',['../Tree_8c.html#a9c3b81e7e63498e3a8f7bd28c4caec10',1,'Tree.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_a.js b/docs/MQTTClient_internal/html/search/functions_a.js index 971ac451..2ebffca3 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_840',['UTF8_char_validate',['../utf-8_8c.html#a9727caa7417e6bed8cfad4121a22628d',1,'utf-8.c']]], - ['utf8_5fvalidate_841',['UTF8_validate',['../utf-8_8c.html#ad2012627fca4b4bdd9f67bde49b0d1cb',1,'utf-8.c']]], - ['utf8_5fvalidatestring_842',['UTF8_validateString',['../utf-8_8c.html#a4f3cf77538d867bb5b421bcb687dccdf',1,'utf-8.c']]] + ['utf8_5fchar_5fvalidate_842',['UTF8_char_validate',['../utf-8_8c.html#a9727caa7417e6bed8cfad4121a22628d',1,'utf-8.c']]], + ['utf8_5fvalidate_843',['UTF8_validate',['../utf-8_8c.html#ad2012627fca4b4bdd9f67bde49b0d1cb',1,'utf-8.c']]], + ['utf8_5fvalidatestring_844',['UTF8_validateString',['../utf-8_8c.html#a4f3cf77538d867bb5b421bcb687dccdf',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/functions_b.js b/docs/MQTTClient_internal/html/search/functions_b.js index a78aca7c..4efd2851 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_843',['writeChar',['../MQTTPacket_8c.html#ad29ec8b2fbf0ec0195621b44f8945923',1,'MQTTPacket.c']]], - ['writedata_844',['writeData',['../MQTTPacket_8c.html#a8886398fbf89872f8e593444d351a5aa',1,'MQTTPacket.c']]], - ['writeint_845',['writeInt',['../MQTTPacket_8c.html#a07aa0146eda3d32979142e7df8ad5fc3',1,'MQTTPacket.c']]], - ['writeint4_846',['writeInt4',['../MQTTPacket_8c.html#aefc0aa52c1cb13fa7bfcd77810d6a617',1,'MQTTPacket.c']]], - ['writeutf_847',['writeUTF',['../MQTTPacket_8c.html#af0fcaa11ac05ce448a433a53f9cae420',1,'MQTTPacket.c']]] + ['writechar_845',['writeChar',['../MQTTPacket_8c.html#ad29ec8b2fbf0ec0195621b44f8945923',1,'MQTTPacket.c']]], + ['writedata_846',['writeData',['../MQTTPacket_8c.html#a8886398fbf89872f8e593444d351a5aa',1,'MQTTPacket.c']]], + ['writeint_847',['writeInt',['../MQTTPacket_8c.html#a07aa0146eda3d32979142e7df8ad5fc3',1,'MQTTPacket.c']]], + ['writeint4_848',['writeInt4',['../MQTTPacket_8c.html#aefc0aa52c1cb13fa7bfcd77810d6a617',1,'MQTTPacket.c']]], + ['writeutf_849',['writeUTF',['../MQTTPacket_8c.html#af0fcaa11ac05ce448a433a53f9cae420',1,'MQTTPacket.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/pages_0.js b/docs/MQTTClient_internal/html/search/pages_0.js index 5253d0dd..ec381cbf 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_1052',['MQTT Client Library Internals',['../index.html',1,'']]] + ['mqtt_20client_20library_20internals_1056',['MQTT Client Library Internals',['../index.html',1,'']]] ]; diff --git a/docs/MQTTClient_internal/html/search/typedefs_0.js b/docs/MQTTClient_internal/html/search/typedefs_0.js index 628c9ee7..e2c8650a 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_1036',['MQTTPersistence_afterRead',['../MQTTClientPersistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], - ['mqttpersistence_5fbeforewrite_1037',['MQTTPersistence_beforeWrite',['../MQTTClientPersistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]] + ['mqttpersistence_5fafterread_1040',['MQTTPersistence_afterRead',['../MQTTClientPersistence_8h.html#af5a966a574c6ad7a35f1ebb7edd5c1c4',1,'MQTTClientPersistence.h']]], + ['mqttpersistence_5fbeforewrite_1041',['MQTTPersistence_beforeWrite',['../MQTTClientPersistence_8h.html#ab865640a1cc53b68622004c5a2d29fae',1,'MQTTClientPersistence.h']]] ]; diff --git a/docs/MQTTClient_internal/html/search/typedefs_1.js b/docs/MQTTClient_internal/html/search/typedefs_1.js index 74d12b8f..7812d99d 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_1038',['Persistence_clear',['../MQTTClientPersistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], - ['persistence_5fclose_1039',['Persistence_close',['../MQTTClientPersistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], - ['persistence_5fcontainskey_1040',['Persistence_containskey',['../MQTTClientPersistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], - ['persistence_5fget_1041',['Persistence_get',['../MQTTClientPersistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], - ['persistence_5fkeys_1042',['Persistence_keys',['../MQTTClientPersistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], - ['persistence_5fopen_1043',['Persistence_open',['../MQTTClientPersistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], - ['persistence_5fput_1044',['Persistence_put',['../MQTTClientPersistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], - ['persistence_5fremove_1045',['Persistence_remove',['../MQTTClientPersistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]] + ['persistence_5fclear_1042',['Persistence_clear',['../MQTTClientPersistence_8h.html#acee7097c1a0ab44b98c870f533687887',1,'MQTTClientPersistence.h']]], + ['persistence_5fclose_1043',['Persistence_close',['../MQTTClientPersistence_8h.html#a3582de2c87e89f617e8e553b2a0e279a',1,'MQTTClientPersistence.h']]], + ['persistence_5fcontainskey_1044',['Persistence_containskey',['../MQTTClientPersistence_8h.html#a753a0f9a9c51284d63a907af19c7bbba',1,'MQTTClientPersistence.h']]], + ['persistence_5fget_1045',['Persistence_get',['../MQTTClientPersistence_8h.html#adc3aff3c570fa5509e9d6814a85ab867',1,'MQTTClientPersistence.h']]], + ['persistence_5fkeys_1046',['Persistence_keys',['../MQTTClientPersistence_8h.html#a2601cc91eeabdbf9578f8dd45e4997a8',1,'MQTTClientPersistence.h']]], + ['persistence_5fopen_1047',['Persistence_open',['../MQTTClientPersistence_8h.html#a4c7d332bb16907058ae3b375488b6008',1,'MQTTClientPersistence.h']]], + ['persistence_5fput_1048',['Persistence_put',['../MQTTClientPersistence_8h.html#a44679cab77cfbd6e2a4639cdd27ac80c',1,'MQTTClientPersistence.h']]], + ['persistence_5fremove_1049',['Persistence_remove',['../MQTTClientPersistence_8h.html#a73350bf7208658bf5434a59f7bdbae90',1,'MQTTClientPersistence.h']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_0.js b/docs/MQTTClient_internal/html/search/variables_0.js index 51bada37..b9ee7b73 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_848',['__pad0__',['../structConnect.html#a9a33c7cfd83c02e341a8326683fa84d8',1,'Connect']]] + ['_5f_5fpad0_5f_5f_850',['__pad0__',['../structConnect.html#a9a33c7cfd83c02e341a8326683fa84d8',1,'Connect']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_1.js b/docs/MQTTClient_internal/html/search/variables_1.js index 09e5fb8c..4eb1e032 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_849',['afterRead',['../structClients.html#a32899a8e944eef969c834833388fb91e',1,'Clients']]], - ['afterread_5fcontext_850',['afterRead_context',['../structClients.html#a429110f440ce0de51d60324fa8b8cc57',1,'Clients']]], - ['all_851',['all',['../structConnect.html#a7a4ee927261ade96ec6a800978f37970',1,'Connect::all()'],['../structConnack.html#aa2355d305cb311d356af339c44a852c7',1,'Connack::all()']]], - ['allow_5fduplicates_852',['allow_duplicates',['../structTree.html#a4098c257d75639b6775553b27e13bbfd',1,'Tree']]], - ['allowdisconnectedsendatanytime_853',['allowDisconnectedSendAtAnyTime',['../structMQTTAsync__createOptions.html#a8ab45ad21f70abfea24a248b7a83d9f7',1,'MQTTAsync_createOptions']]], - ['alt_854',['alt',['../structMQTTAsync__successData.html#af2b2a98191b00dbd7c592f2ef013ba87',1,'MQTTAsync_successData::alt()'],['../structMQTTAsync__successData5.html#ab8c810f026ac58874c1fd0b112bdda71',1,'MQTTAsync_successData5::alt()']]], - ['array_855',['array',['../structMQTTProperties.html#af2d57fd95f759ef758ff77b07e8683cd',1,'MQTTProperties']]], - ['automaticreconnect_856',['automaticReconnect',['../structMQTTAsync__connectOptions.html#acc2d253ca78b0c32813dbdc24b0c5f7a',1,'MQTTAsync_connectOptions']]] + ['afterread_851',['afterRead',['../structClients.html#a32899a8e944eef969c834833388fb91e',1,'Clients']]], + ['afterread_5fcontext_852',['afterRead_context',['../structClients.html#a429110f440ce0de51d60324fa8b8cc57',1,'Clients']]], + ['all_853',['all',['../structConnect.html#a7a4ee927261ade96ec6a800978f37970',1,'Connect::all()'],['../structConnack.html#aa2355d305cb311d356af339c44a852c7',1,'Connack::all()']]], + ['allow_5fduplicates_854',['allow_duplicates',['../structTree.html#a4098c257d75639b6775553b27e13bbfd',1,'Tree']]], + ['allowdisconnectedsendatanytime_855',['allowDisconnectedSendAtAnyTime',['../structMQTTAsync__createOptions.html#a8ab45ad21f70abfea24a248b7a83d9f7',1,'MQTTAsync_createOptions']]], + ['alt_856',['alt',['../structMQTTAsync__successData.html#af2b2a98191b00dbd7c592f2ef013ba87',1,'MQTTAsync_successData::alt()'],['../structMQTTAsync__successData5.html#ab8c810f026ac58874c1fd0b112bdda71',1,'MQTTAsync_successData5::alt()']]], + ['array_857',['array',['../structMQTTProperties.html#af2d57fd95f759ef758ff77b07e8683cd',1,'MQTTProperties']]], + ['automaticreconnect_858',['automaticReconnect',['../structMQTTAsync__connectOptions.html#acc2d253ca78b0c32813dbdc24b0c5f7a',1,'MQTTAsync_connectOptions']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_10.js b/docs/MQTTClient_internal/html/search/variables_10.js index 1ce32ad8..a62a659c 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_973',['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_974',['qosList',['../structMQTTAsync__successData.html#aa4ad4a4023c5b9796e44b9dfd0df53e7',1,'MQTTAsync_successData']]], - ['qoss_975',['qoss',['../structSuback.html#a7769bd0751e462641636354d36505c28',1,'Suback']]], - ['queues_976',['queues',['../SocketBuffer_8c.html#aa8b85db4dca13d13c2b7fc704420323a',1,'SocketBuffer.c']]] + ['qos_977',['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_978',['qosList',['../structMQTTAsync__successData.html#aa4ad4a4023c5b9796e44b9dfd0df53e7',1,'MQTTAsync_successData']]], + ['qoss_979',['qoss',['../structSuback.html#a7769bd0751e462641636354d36505c28',1,'Suback']]], + ['queues_980',['queues',['../SocketBuffer_8c.html#aa8b85db4dca13d13c2b7fc704420323a',1,'SocketBuffer.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_11.js b/docs/MQTTClient_internal/html/search/variables_11.js index 5cf32da0..79c8c4d2 100644 --- a/docs/MQTTClient_internal/html/search/variables_11.js +++ b/docs/MQTTClient_internal/html/search/variables_11.js @@ -1,18 +1,18 @@ var searchData= [ - ['rc_977',['rc',['../structConnack.html#a5a963839f48e7f1319af687621f6e3ec',1,'Connack::rc()'],['../structAck.html#a54d6ed9d045c38877e27bdf5802e3efe',1,'Ack::rc()']]], - ['reasoncode_978',['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_979',['reasonCodeCount',['../structMQTTAsync__successData5.html#a0bfa041c9ce783614786235c650a80aa',1,'MQTTAsync_successData5']]], - ['reasoncodes_980',['reasonCodes',['../structMQTTAsync__successData5.html#abe4fb1e0907a7a1e77fdb6851879b605',1,'MQTTAsync_successData5::reasonCodes()'],['../structUnsuback.html#ac5fabab5aa00869b6ef4901cb4849122',1,'Unsuback::reasonCodes()']]], - ['reliable_981',['reliable',['../structMQTTClient__connectOptions.html#acd6367d7a402e7b668f8ec9760cd42c8',1,'MQTTClient_connectOptions']]], - ['reserved_982',['reserved',['../structConnack.html#a455bf40d0da52ccfd9b546e7fa23b1d0',1,'Connack']]], - ['retain_983',['retain',['../unionHeader.html#afa52b52e4b84075cf31612a6ac3a0299',1,'Header']]], - ['retainaspublished_984',['retainAsPublished',['../structMQTTSubscribe__options.html#a9c66f0773c0484dde0e582b4c47d9bf7',1,'MQTTSubscribe_options']]], - ['retained_985',['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_986',['retainHandling',['../structMQTTSubscribe__options.html#a8375543f39c16e32698226db118076e6',1,'MQTTSubscribe_options']]], - ['retryinterval_987',['retryInterval',['../structMQTTAsync__connectOptions.html#a7f4026dad0479c6658aac68d719950a1',1,'MQTTAsync_connectOptions::retryInterval()'],['../structMQTTClient__connectOptions.html#aabeb07cc7a2aa18fc1fb365503185c62',1,'MQTTClient_connectOptions::retryInterval()']]], - ['returned_988',['returned',['../structMQTTClient__connectOptions.html#a198e91c4adb81b5851cbd5c2eb14424e',1,'MQTTClient_connectOptions']]], - ['root_989',['root',['../structTree.html#ad8e46ce0aead5778cbdd784d1e370d5f',1,'Tree']]], - ['rset_990',['rset',['../structSockets.html#aa56708bbaf392eb8d372d01f6bd2e7e8',1,'Sockets']]], - ['rset_5fsaved_991',['rset_saved',['../structSockets.html#a1e2c4da3be7756df304ed1aaef86b894',1,'Sockets']]] + ['rc_981',['rc',['../structConnack.html#a5a963839f48e7f1319af687621f6e3ec',1,'Connack::rc()'],['../structAck.html#a54d6ed9d045c38877e27bdf5802e3efe',1,'Ack::rc()']]], + ['reasoncode_982',['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_983',['reasonCodeCount',['../structMQTTAsync__successData5.html#a0bfa041c9ce783614786235c650a80aa',1,'MQTTAsync_successData5']]], + ['reasoncodes_984',['reasonCodes',['../structMQTTAsync__successData5.html#abe4fb1e0907a7a1e77fdb6851879b605',1,'MQTTAsync_successData5::reasonCodes()'],['../structUnsuback.html#ac5fabab5aa00869b6ef4901cb4849122',1,'Unsuback::reasonCodes()']]], + ['reliable_985',['reliable',['../structMQTTClient__connectOptions.html#acd6367d7a402e7b668f8ec9760cd42c8',1,'MQTTClient_connectOptions']]], + ['reserved_986',['reserved',['../structConnack.html#a455bf40d0da52ccfd9b546e7fa23b1d0',1,'Connack']]], + ['retain_987',['retain',['../unionHeader.html#afa52b52e4b84075cf31612a6ac3a0299',1,'Header']]], + ['retainaspublished_988',['retainAsPublished',['../structMQTTSubscribe__options.html#a9c66f0773c0484dde0e582b4c47d9bf7',1,'MQTTSubscribe_options']]], + ['retained_989',['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_990',['retainHandling',['../structMQTTSubscribe__options.html#a8375543f39c16e32698226db118076e6',1,'MQTTSubscribe_options']]], + ['retryinterval_991',['retryInterval',['../structMQTTAsync__connectOptions.html#a7f4026dad0479c6658aac68d719950a1',1,'MQTTAsync_connectOptions::retryInterval()'],['../structMQTTClient__connectOptions.html#aabeb07cc7a2aa18fc1fb365503185c62',1,'MQTTClient_connectOptions::retryInterval()']]], + ['returned_992',['returned',['../structMQTTClient__connectOptions.html#a198e91c4adb81b5851cbd5c2eb14424e',1,'MQTTClient_connectOptions']]], + ['root_993',['root',['../structTree.html#ad8e46ce0aead5778cbdd784d1e370d5f',1,'Tree']]], + ['rset_994',['rset',['../structSockets.html#aa56708bbaf392eb8d372d01f6bd2e7e8',1,'Sockets']]], + ['rset_5fsaved_995',['rset_saved',['../structSockets.html#a1e2c4da3be7756df304ed1aaef86b894',1,'Sockets']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_12.js b/docs/MQTTClient_internal/html/search/variables_12.js index 6c01a318..430c1303 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_992',['sendWhileDisconnected',['../structMQTTAsync__createOptions.html#a7142a01ee58f39a950f8627c4bb05318',1,'MQTTAsync_createOptions']]], - ['serveruri_993',['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_994',['serverURIcount',['../structMQTTAsync__connectOptions.html#ae772aa4b3707c5c11d6be39f51ec4551',1,'MQTTAsync_connectOptions::serverURIcount()'],['../structMQTTClient__connectOptions.html#a71667cbc2aa857db5b831a1e6a4a1ec9',1,'MQTTClient_connectOptions::serverURIcount()']]], - ['serveruris_995',['serverURIs',['../structMQTTAsync__connectOptions.html#a50f0a294c8f7311ccd7f7803b432bb69',1,'MQTTAsync_connectOptions::serverURIs()'],['../structMQTTClient__connectOptions.html#aec63485af96db24d26868d3a19a83504',1,'MQTTClient_connectOptions::serverURIs()']]], - ['sessionexpiry_996',['sessionExpiry',['../structClients.html#a3ead27f8653d4866faed5d7b711159d1',1,'Clients']]], - ['sessionpresent_997',['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_998',['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_999',['ssl',['../structMQTTAsync__connectOptions.html#a04c88f4a4aba7ca2cfbd9ee5455f0850',1,'MQTTAsync_connectOptions::ssl()'],['../structMQTTClient__connectOptions.html#a4e6be3b2292800db30c65dd66af85976',1,'MQTTClient_connectOptions::ssl()']]], - ['ssl_5ferror_5fcb_1000',['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_1001',['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_1002',['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_1003',['ssl_psk_context',['../structMQTTAsync__SSLOptions.html#a9cf93d98a2382b374b1e9bbf9a910d5e',1,'MQTTAsync_SSLOptions::ssl_psk_context()'],['../structMQTTClient__SSLOptions.html#ad459c7e3ab9f4558e9f239bf9b15f131',1,'MQTTClient_SSLOptions::ssl_psk_context()']]], - ['sslversion_1004',['sslVersion',['../structMQTTAsync__SSLOptions.html#ad14df49c90828d0d0efd93e707c3a4a6',1,'MQTTAsync_SSLOptions::sslVersion()'],['../structMQTTClient__SSLOptions.html#ace536bef1f2e763f28e761c0e3e3bdbe',1,'MQTTClient_SSLOptions::sslVersion()']]], - ['state_1005',['state',['../Heap_8c.html#a20b83c8e52be131ca41d22b8bf2c3b38',1,'Heap.c']]], - ['struct_5fid_1006',['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_1007',['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_1008',['sub',['../structMQTTAsync__successData5.html#ab3131c77b8bf772ea06ee580816ebc32',1,'MQTTAsync_successData5']]] + ['sendwhiledisconnected_996',['sendWhileDisconnected',['../structMQTTAsync__createOptions.html#a7142a01ee58f39a950f8627c4bb05318',1,'MQTTAsync_createOptions']]], + ['serveruri_997',['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_998',['serverURIcount',['../structMQTTAsync__connectOptions.html#ae772aa4b3707c5c11d6be39f51ec4551',1,'MQTTAsync_connectOptions::serverURIcount()'],['../structMQTTClient__connectOptions.html#a71667cbc2aa857db5b831a1e6a4a1ec9',1,'MQTTClient_connectOptions::serverURIcount()']]], + ['serveruris_999',['serverURIs',['../structMQTTAsync__connectOptions.html#a50f0a294c8f7311ccd7f7803b432bb69',1,'MQTTAsync_connectOptions::serverURIs()'],['../structMQTTClient__connectOptions.html#aec63485af96db24d26868d3a19a83504',1,'MQTTClient_connectOptions::serverURIs()']]], + ['sessionexpiry_1000',['sessionExpiry',['../structClients.html#a3ead27f8653d4866faed5d7b711159d1',1,'Clients']]], + ['sessionpresent_1001',['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_1002',['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_1003',['ssl',['../structMQTTAsync__connectOptions.html#a04c88f4a4aba7ca2cfbd9ee5455f0850',1,'MQTTAsync_connectOptions::ssl()'],['../structMQTTClient__connectOptions.html#a4e6be3b2292800db30c65dd66af85976',1,'MQTTClient_connectOptions::ssl()']]], + ['ssl_5ferror_5fcb_1004',['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_1005',['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_1006',['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_1007',['ssl_psk_context',['../structMQTTAsync__SSLOptions.html#a9cf93d98a2382b374b1e9bbf9a910d5e',1,'MQTTAsync_SSLOptions::ssl_psk_context()'],['../structMQTTClient__SSLOptions.html#ad459c7e3ab9f4558e9f239bf9b15f131',1,'MQTTClient_SSLOptions::ssl_psk_context()']]], + ['sslversion_1008',['sslVersion',['../structMQTTAsync__SSLOptions.html#ad14df49c90828d0d0efd93e707c3a4a6',1,'MQTTAsync_SSLOptions::sslVersion()'],['../structMQTTClient__SSLOptions.html#ace536bef1f2e763f28e761c0e3e3bdbe',1,'MQTTClient_SSLOptions::sslVersion()']]], + ['state_1009',['state',['../Heap_8c.html#a20b83c8e52be131ca41d22b8bf2c3b38',1,'Heap.c']]], + ['struct_5fid_1010',['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_1011',['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_1012',['sub',['../structMQTTAsync__successData5.html#ab3131c77b8bf772ea06ee580816ebc32',1,'MQTTAsync_successData5']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_13.js b/docs/MQTTClient_internal/html/search/variables_13.js index b7f09082..fc810424 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_1009',['timeout',['../structMQTTAsync__disconnectOptions.html#a71f6175d58e01af30b064c19967d42ca',1,'MQTTAsync_disconnectOptions']]], - ['token_1010',['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_1011',['topic',['../structPublish.html#af25a32a9a9bccf70af72fa5a19fa7864',1,'Publish']]], - ['topicname_1012',['topicName',['../structMQTTAsync__willOptions.html#a19983de96d2ae2df35c588e36200374e',1,'MQTTAsync_willOptions::topicName()'],['../structMQTTClient__willOptions.html#a9273da2e77ed9b60b018b43c8d868d47',1,'MQTTClient_willOptions::topicName()']]], - ['trace_5fdestination_1013',['trace_destination',['../Log_8c.html#a29606f1185cb957cd23842125d7d8ecd',1,'Log.c']]], - ['trace_5fdestination_5fbackup_5fname_1014',['trace_destination_backup_name',['../Log_8c.html#a6e2c5a6602ec82079f7b7c3c1a622f8a',1,'Log.c']]], - ['trace_5fdestination_5fname_1015',['trace_destination_name',['../Log_8c.html#aa46cc371a2f34c92be9e5df8ac162566',1,'Log.c']]], - ['trace_5flevel_1016',['trace_level',['../structtrace__settings__type.html#a169138f5e03c0408ca30820418dcf186',1,'trace_settings_type']]], - ['trace_5foutput_5flevel_1017',['trace_output_level',['../structtrace__settings__type.html#af861eec94e990b63af949f50d630ee0d',1,'trace_settings_type']]], - ['truststore_1018',['trustStore',['../structMQTTAsync__SSLOptions.html#a90760033b5ae9962126770c3527603fd',1,'MQTTAsync_SSLOptions::trustStore()'],['../structMQTTClient__SSLOptions.html#a4583779998f6b3b51c7c1d3226701a4c',1,'MQTTClient_SSLOptions::trustStore()']]], - ['type_1019',['type',['../unionHeader.html#a05b7c9c6b02e41c54899caee9fdd50d6',1,'Header']]] + ['timeout_1013',['timeout',['../structMQTTAsync__disconnectOptions.html#a71f6175d58e01af30b064c19967d42ca',1,'MQTTAsync_disconnectOptions']]], + ['token_1014',['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_1015',['topic',['../structPublish.html#af25a32a9a9bccf70af72fa5a19fa7864',1,'Publish']]], + ['topicname_1016',['topicName',['../structMQTTAsync__willOptions.html#a19983de96d2ae2df35c588e36200374e',1,'MQTTAsync_willOptions::topicName()'],['../structMQTTClient__willOptions.html#a9273da2e77ed9b60b018b43c8d868d47',1,'MQTTClient_willOptions::topicName()']]], + ['trace_5fdestination_1017',['trace_destination',['../Log_8c.html#a29606f1185cb957cd23842125d7d8ecd',1,'Log.c']]], + ['trace_5fdestination_5fbackup_5fname_1018',['trace_destination_backup_name',['../Log_8c.html#a6e2c5a6602ec82079f7b7c3c1a622f8a',1,'Log.c']]], + ['trace_5fdestination_5fname_1019',['trace_destination_name',['../Log_8c.html#aa46cc371a2f34c92be9e5df8ac162566',1,'Log.c']]], + ['trace_5flevel_1020',['trace_level',['../structtrace__settings__type.html#a169138f5e03c0408ca30820418dcf186',1,'trace_settings_type']]], + ['trace_5foutput_5flevel_1021',['trace_output_level',['../structtrace__settings__type.html#af861eec94e990b63af949f50d630ee0d',1,'trace_settings_type']]], + ['truststore_1022',['trustStore',['../structMQTTAsync__SSLOptions.html#a90760033b5ae9962126770c3527603fd',1,'MQTTAsync_SSLOptions::trustStore()'],['../structMQTTClient__SSLOptions.html#a4583779998f6b3b51c7c1d3226701a4c',1,'MQTTClient_SSLOptions::trustStore()']]], + ['type_1023',['type',['../unionHeader.html#a05b7c9c6b02e41c54899caee9fdd50d6',1,'Header']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_14.js b/docs/MQTTClient_internal/html/search/variables_14.js index ea24f545..e9cbf16c 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_1020',['unsub',['../structMQTTAsync__successData5.html#a8f6209416359018b215c22008f08bc9c',1,'MQTTAsync_successData5']]], - ['upper_1021',['upper',['../utf-8_8c.html#a716463de5d02ad40678f2376abcdd90a',1,'utf-8.c']]], - ['username_1022',['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_1024',['unsub',['../structMQTTAsync__successData5.html#a8f6209416359018b215c22008f08bc9c',1,'MQTTAsync_successData5']]], + ['upper_1025',['upper',['../utf-8_8c.html#a716463de5d02ad40678f2376abcdd90a',1,'utf-8.c']]], + ['username_1026',['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.js b/docs/MQTTClient_internal/html/search/variables_15.js index 332187c4..7914cc58 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_1023',['valid_ranges',['../utf-8_8c.html#ab7e6b7547aa4cd0fd122f222d1a9ba65',1,'utf-8.c']]], - ['value_1024',['value',['../structMQTTAsync__nameValue.html#abbedbc0cab6677016451fe6c62553f35',1,'MQTTAsync_nameValue::value()'],['../structMQTTProperty.html#a43389d2bd2814580edc9ea59933cbe25',1,'MQTTProperty::value()'],['../structMQTTProperty.html#a1d54fb750a1783debd04c57ecb907332',1,'MQTTProperty::value()']]], - ['verify_1025',['verify',['../structMQTTAsync__SSLOptions.html#af3a54c718001dc76eb77d2f35fc31301',1,'MQTTAsync_SSLOptions::verify()'],['../structMQTTClient__SSLOptions.html#a61dd2a56858da45451f45640b056189d',1,'MQTTClient_SSLOptions::verify()']]], - ['version_1026',['version',['../structConnect.html#a35cba4252092877e572c5c74b41be6e2',1,'Connect']]] + ['valid_5franges_1027',['valid_ranges',['../utf-8_8c.html#ab7e6b7547aa4cd0fd122f222d1a9ba65',1,'utf-8.c']]], + ['value_1028',['value',['../structMQTTAsync__nameValue.html#abbedbc0cab6677016451fe6c62553f35',1,'MQTTAsync_nameValue::value()'],['../structMQTTProperty.html#a43389d2bd2814580edc9ea59933cbe25',1,'MQTTProperty::value()'],['../structMQTTProperty.html#a1d54fb750a1783debd04c57ecb907332',1,'MQTTProperty::value()']]], + ['verify_1029',['verify',['../structMQTTAsync__SSLOptions.html#af3a54c718001dc76eb77d2f35fc31301',1,'MQTTAsync_SSLOptions::verify()'],['../structMQTTClient__SSLOptions.html#a61dd2a56858da45451f45640b056189d',1,'MQTTClient_SSLOptions::verify()']]], + ['version_1030',['version',['../structConnect.html#a35cba4252092877e572c5c74b41be6e2',1,'Connect']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_16.js b/docs/MQTTClient_internal/html/search/variables_16.js index 1fe71e0d..66398a7f 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_1027',['websocket',['../structnetworkHandles.html#a01839c3f477c9f737c13f7e2c994e5cc',1,'networkHandles']]], - ['will_1028',['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_1029',['willMsg',['../structConnect.html#a525eb0974d4e5b3158808e0bb23f03e6',1,'Connect']]], - ['willproperties_1030',['willProperties',['../structMQTTAsync__connectOptions.html#ab72dbcdcff60e5dd79ac8fcea0e31478',1,'MQTTAsync_connectOptions']]], - ['willqos_1031',['willQoS',['../structConnect.html#a91e5dd7084da0e9a40397c5532de5ef9',1,'Connect']]], - ['willretain_1032',['willRetain',['../structConnect.html#a0810709a016db0b8be49fc6f859bab39',1,'Connect']]], - ['willtopic_1033',['willTopic',['../structConnect.html#a8e0ff745f3800cf1a56a0cd467b5138e',1,'Connect']]], - ['write_5fpending_1034',['write_pending',['../structSockets.html#a852db7c3edf654d8ee451be18b3f5743',1,'Sockets']]], - ['writes_1035',['writes',['../SocketBuffer_8c.html#a913f78789f0cbfb26a5dcf6618d51d87',1,'SocketBuffer.c']]] + ['websocket_1031',['websocket',['../structnetworkHandles.html#a01839c3f477c9f737c13f7e2c994e5cc',1,'networkHandles']]], + ['will_1032',['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_1033',['willMsg',['../structConnect.html#a525eb0974d4e5b3158808e0bb23f03e6',1,'Connect']]], + ['willproperties_1034',['willProperties',['../structMQTTAsync__connectOptions.html#ab72dbcdcff60e5dd79ac8fcea0e31478',1,'MQTTAsync_connectOptions']]], + ['willqos_1035',['willQoS',['../structConnect.html#a91e5dd7084da0e9a40397c5532de5ef9',1,'Connect']]], + ['willretain_1036',['willRetain',['../structConnect.html#a0810709a016db0b8be49fc6f859bab39',1,'Connect']]], + ['willtopic_1037',['willTopic',['../structConnect.html#a8e0ff745f3800cf1a56a0cd467b5138e',1,'Connect']]], + ['write_5fpending_1038',['write_pending',['../structSockets.html#a852db7c3edf654d8ee451be18b3f5743',1,'Sockets']]], + ['writes_1039',['writes',['../SocketBuffer_8c.html#a913f78789f0cbfb26a5dcf6618d51d87',1,'SocketBuffer.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_2.js b/docs/MQTTClient_internal/html/search/variables_2.js index da19b963..2381b68c 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_857',['beforeWrite',['../structClients.html#acb5a2bdb04148e714a123b6a14b34cb9',1,'Clients']]], - ['beforewrite_5fcontext_858',['beforeWrite_context',['../structClients.html#a57ec2f443b8de574ede8a62a6a3212db',1,'Clients']]], - ['binarypwd_859',['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_860',['buffers',['../structPacketBuffers.html#a286d27793c957cc729d40272b31a1b53',1,'PacketBuffers']]], - ['buflen_861',['buflen',['../structsocket__queue.html#ab38f6d48de7c8905c3124ee1de4eac71',1,'socket_queue']]], - ['buflens_862',['buflens',['../structPacketBuffers.html#a359895b0df7be5369344eb2e6122c067',1,'PacketBuffers']]], - ['byte_863',['byte',['../unionHeader.html#a75d550e644fb0f4ae2be1a33d0d89ec6',1,'Header::byte()'],['../structMQTTProperty.html#acf819eac134fafe7e284598b4e6897e3',1,'MQTTProperty::byte()']]], - ['bytes_864',['bytes',['../utf-8_8c.html#acce1763ab1d2658c7e6593c128565303',1,'utf-8.c']]] + ['beforewrite_859',['beforeWrite',['../structClients.html#acb5a2bdb04148e714a123b6a14b34cb9',1,'Clients']]], + ['beforewrite_5fcontext_860',['beforeWrite_context',['../structClients.html#a57ec2f443b8de574ede8a62a6a3212db',1,'Clients']]], + ['binarypwd_861',['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_862',['buffers',['../structPacketBuffers.html#a286d27793c957cc729d40272b31a1b53',1,'PacketBuffers']]], + ['buflen_863',['buflen',['../structsocket__queue.html#ab38f6d48de7c8905c3124ee1de4eac71',1,'socket_queue']]], + ['buflens_864',['buflens',['../structPacketBuffers.html#a359895b0df7be5369344eb2e6122c067',1,'PacketBuffers']]], + ['byte_865',['byte',['../unionHeader.html#a75d550e644fb0f4ae2be1a33d0d89ec6',1,'Header::byte()'],['../structMQTTProperty.html#acf819eac134fafe7e284598b4e6897e3',1,'MQTTProperty::byte()']]], + ['bytes_866',['bytes',['../utf-8_8c.html#acce1763ab1d2658c7e6593c128565303',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_3.js b/docs/MQTTClient_internal/html/search/variables_3.js index d8b79f2c..dd07174b 100644 --- a/docs/MQTTClient_internal/html/search/variables_3.js +++ b/docs/MQTTClient_internal/html/search/variables_3.js @@ -1,21 +1,21 @@ var searchData= [ - ['capath_865',['CApath',['../structMQTTAsync__SSLOptions.html#a2c5cc887b0fd4a388b0bef9163d5b1ab',1,'MQTTAsync_SSLOptions::CApath()'],['../structMQTTClient__SSLOptions.html#a1901b5590afdc86db8e542c0d49f5106',1,'MQTTClient_SSLOptions::CApath()']]], - ['child_866',['child',['../structNodeStruct.html#a6f84842a1ac8bf4ea19a3bb6b4af9c4d',1,'NodeStruct']]], - ['cleansession_867',['cleansession',['../structClients.html#a9853b4a06c38478148ab09fe9ccff423',1,'Clients::cleansession()'],['../structMQTTAsync__connectOptions.html#ac4addd2c4614cfc12c9dd7e199a989ff',1,'MQTTAsync_connectOptions::cleansession()'],['../structMQTTClient__connectOptions.html#a03a2cfaf17483f1b0aab2a70f3ef30d9',1,'MQTTClient_connectOptions::cleansession()']]], - ['cleanstart_868',['cleanstart',['../structClients.html#a8e1ca3c305b51f86c29d246a60d0fec2',1,'Clients::cleanstart()'],['../structConnect.html#a1ecdff766bc9f572a2d1a3ae22bd0bca',1,'Connect::cleanstart()']]], - ['clientid_869',['clientID',['../structClients.html#aab6a37dbb279f1f1819bd89f75695e92',1,'Clients::clientID()'],['../structConnect.html#aa0063fa6349a7fb5be89cf1cbe4043b4',1,'Connect::clientID()']]], - ['clientsds_870',['clientsds',['../structSockets.html#a7dc0c5bf258cdb8dc1617a7a122caa7e',1,'Sockets']]], - ['code_871',['code',['../structMQTTAsync__failureData.html#acbdff200c2c6ac593c88cd0b677921e2',1,'MQTTAsync_failureData::code()'],['../structMQTTAsync__failureData5.html#ac92de089ce2d9ae81b2c4b0dc1f97792',1,'MQTTAsync_failureData5::code()']]], - ['compare_872',['compare',['../structTree.html#a9c7cc2fbf66ff51c0d90be03f3562c84',1,'Tree']]], - ['connect_5fpending_873',['connect_pending',['../structSockets.html#ac1b74c5f7fd463159318d2ef3c8fcee6',1,'Sockets']]], - ['connected_874',['connected',['../structClients.html#adc2f2a83ccacde92ad6b4ee304fc3e6a',1,'Clients']]], - ['connectproperties_875',['connectProperties',['../structMQTTAsync__connectOptions.html#ad10d2f263a6802ec6a3a74e0cf9a7453',1,'MQTTAsync_connectOptions']]], - ['connecttimeout_876',['connectTimeout',['../structMQTTAsync__connectOptions.html#a0f2fb050e48f46332523fe1e48c04980',1,'MQTTAsync_connectOptions::connectTimeout()'],['../structMQTTClient__connectOptions.html#ab6713be91e99a94a7168bbcac02f6beb',1,'MQTTClient_connectOptions::connectTimeout()']]], - ['content_877',['content',['../structListElementStruct.html#a808c5a8a407bec041d0817705561ffd5',1,'ListElementStruct::content()'],['../structNodeStruct.html#aa605b943d1cb013da384c37f5a074285',1,'NodeStruct::content()']]], - ['context_878',['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_879',['count',['../structList.html#a7d50f0a95a04faab8c250bc6ea28a67d',1,'List::count()'],['../structMQTTProperties.html#a0eaa838640c90af2a963d7e0b23ff4e5',1,'MQTTProperties::count()'],['../structTree.html#ad13cc776048feb0a19c640c8f1d1ffd6',1,'Tree::count()']]], - ['cur_5fclientsds_880',['cur_clientsds',['../structSockets.html#a310c298235783930aaa043a85e556b51',1,'Sockets']]], - ['current_881',['current',['../structList.html#a76dacd2c880fb9a86ab7c0f3aa4ee624',1,'List']]], - ['current_5fsize_882',['current_size',['../structheap__info.html#a26c9bfacf416872c953138adc64e1a3d',1,'heap_info']]] + ['capath_867',['CApath',['../structMQTTAsync__SSLOptions.html#a2c5cc887b0fd4a388b0bef9163d5b1ab',1,'MQTTAsync_SSLOptions::CApath()'],['../structMQTTClient__SSLOptions.html#a1901b5590afdc86db8e542c0d49f5106',1,'MQTTClient_SSLOptions::CApath()']]], + ['child_868',['child',['../structNodeStruct.html#a6f84842a1ac8bf4ea19a3bb6b4af9c4d',1,'NodeStruct']]], + ['cleansession_869',['cleansession',['../structClients.html#a9853b4a06c38478148ab09fe9ccff423',1,'Clients::cleansession()'],['../structMQTTAsync__connectOptions.html#ac4addd2c4614cfc12c9dd7e199a989ff',1,'MQTTAsync_connectOptions::cleansession()'],['../structMQTTClient__connectOptions.html#a03a2cfaf17483f1b0aab2a70f3ef30d9',1,'MQTTClient_connectOptions::cleansession()']]], + ['cleanstart_870',['cleanstart',['../structClients.html#a8e1ca3c305b51f86c29d246a60d0fec2',1,'Clients::cleanstart()'],['../structConnect.html#a1ecdff766bc9f572a2d1a3ae22bd0bca',1,'Connect::cleanstart()']]], + ['clientid_871',['clientID',['../structClients.html#aab6a37dbb279f1f1819bd89f75695e92',1,'Clients::clientID()'],['../structConnect.html#aa0063fa6349a7fb5be89cf1cbe4043b4',1,'Connect::clientID()']]], + ['clientsds_872',['clientsds',['../structSockets.html#a7dc0c5bf258cdb8dc1617a7a122caa7e',1,'Sockets']]], + ['code_873',['code',['../structMQTTAsync__failureData.html#acbdff200c2c6ac593c88cd0b677921e2',1,'MQTTAsync_failureData::code()'],['../structMQTTAsync__failureData5.html#ac92de089ce2d9ae81b2c4b0dc1f97792',1,'MQTTAsync_failureData5::code()']]], + ['compare_874',['compare',['../structTree.html#a9c7cc2fbf66ff51c0d90be03f3562c84',1,'Tree']]], + ['connect_5fpending_875',['connect_pending',['../structSockets.html#ac1b74c5f7fd463159318d2ef3c8fcee6',1,'Sockets']]], + ['connected_876',['connected',['../structClients.html#adc2f2a83ccacde92ad6b4ee304fc3e6a',1,'Clients']]], + ['connectproperties_877',['connectProperties',['../structMQTTAsync__connectOptions.html#ad10d2f263a6802ec6a3a74e0cf9a7453',1,'MQTTAsync_connectOptions']]], + ['connecttimeout_878',['connectTimeout',['../structMQTTAsync__connectOptions.html#a0f2fb050e48f46332523fe1e48c04980',1,'MQTTAsync_connectOptions::connectTimeout()'],['../structMQTTClient__connectOptions.html#ab6713be91e99a94a7168bbcac02f6beb',1,'MQTTClient_connectOptions::connectTimeout()']]], + ['content_879',['content',['../structListElementStruct.html#a808c5a8a407bec041d0817705561ffd5',1,'ListElementStruct::content()'],['../structNodeStruct.html#aa605b943d1cb013da384c37f5a074285',1,'NodeStruct::content()']]], + ['context_880',['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_881',['count',['../structList.html#a7d50f0a95a04faab8c250bc6ea28a67d',1,'List::count()'],['../structMQTTProperties.html#a0eaa838640c90af2a963d7e0b23ff4e5',1,'MQTTProperties::count()'],['../structTree.html#ad13cc776048feb0a19c640c8f1d1ffd6',1,'Tree::count()']]], + ['cur_5fclientsds_882',['cur_clientsds',['../structSockets.html#a310c298235783930aaa043a85e556b51',1,'Sockets']]], + ['current_883',['current',['../structList.html#a76dacd2c880fb9a86ab7c0f3aa4ee624',1,'List']]], + ['current_5fsize_884',['current_size',['../structheap__info.html#a26c9bfacf416872c953138adc64e1a3d',1,'heap_info']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_4.js b/docs/MQTTClient_internal/html/search/variables_4.js index c649120b..d5f16a24 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_883',['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_884',['datalen',['../structsocket__queue.html#a812ce9bb00766c3e91a593842414b693',1,'socket_queue']]], - ['def_5fqueue_885',['def_queue',['../SocketBuffer_8c.html#ace376d23d15b97a487298fa0c8a238ea',1,'SocketBuffer.c']]], - ['destinationname_886',['destinationName',['../structMQTTAsync__successData.html#af3eef8b306fc96c9a0e36f2d0fd1e322',1,'MQTTAsync_successData::destinationName()'],['../structMQTTAsync__successData5.html#a3aa03bcf1e08deeaacb237d014181e80',1,'MQTTAsync_successData5::destinationName()']]], - ['disabledefaulttruststore_887',['disableDefaultTrustStore',['../structMQTTAsync__SSLOptions.html#a349454d7fe6021b62004874d7efa6277',1,'MQTTAsync_SSLOptions::disableDefaultTrustStore()'],['../structMQTTClient__SSLOptions.html#a09caf7e179009d70fff6205e89fcc434',1,'MQTTClient_SSLOptions::disableDefaultTrustStore()']]], - ['do_5fopenssl_5finit_888',['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_889',['dup',['../structMQTTAsync__message.html#aa9da73253863089ee90033c7f0dd28bf',1,'MQTTAsync_message::dup()'],['../structMQTTClient__message.html#abbb5f23377bd9f39cc79756786fa45cc',1,'MQTTClient_message::dup()'],['../unionHeader.html#a35c1c5537424b9307f4ff0803f16a25f',1,'Header::dup()']]] + ['data_885',['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_886',['datalen',['../structsocket__queue.html#a812ce9bb00766c3e91a593842414b693',1,'socket_queue']]], + ['def_5fqueue_887',['def_queue',['../SocketBuffer_8c.html#ace376d23d15b97a487298fa0c8a238ea',1,'SocketBuffer.c']]], + ['destinationname_888',['destinationName',['../structMQTTAsync__successData.html#af3eef8b306fc96c9a0e36f2d0fd1e322',1,'MQTTAsync_successData::destinationName()'],['../structMQTTAsync__successData5.html#a3aa03bcf1e08deeaacb237d014181e80',1,'MQTTAsync_successData5::destinationName()']]], + ['disabledefaulttruststore_889',['disableDefaultTrustStore',['../structMQTTAsync__SSLOptions.html#a349454d7fe6021b62004874d7efa6277',1,'MQTTAsync_SSLOptions::disableDefaultTrustStore()'],['../structMQTTClient__SSLOptions.html#a09caf7e179009d70fff6205e89fcc434',1,'MQTTClient_SSLOptions::disableDefaultTrustStore()']]], + ['do_5fopenssl_5finit_890',['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_891',['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.js b/docs/MQTTClient_internal/html/search/variables_5.js index 4439163e..22957383 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_890',['enabledCipherSuites',['../structMQTTAsync__SSLOptions.html#a45ea4eb5a79cb0b6150c86d15c3143c9',1,'MQTTAsync_SSLOptions::enabledCipherSuites()'],['../structMQTTClient__SSLOptions.html#a0e07f3de1807ab841646cbb8bfa94657',1,'MQTTClient_SSLOptions::enabledCipherSuites()']]], - ['enableservercertauth_891',['enableServerCertAuth',['../structMQTTAsync__SSLOptions.html#ab349eef3682c23527cf73bd9cea8782c',1,'MQTTAsync_SSLOptions::enableServerCertAuth()'],['../structMQTTClient__SSLOptions.html#ac21e3ad623dd35533e7101001299fb6f',1,'MQTTClient_SSLOptions::enableServerCertAuth()']]] + ['enabledciphersuites_892',['enabledCipherSuites',['../structMQTTAsync__SSLOptions.html#a45ea4eb5a79cb0b6150c86d15c3143c9',1,'MQTTAsync_SSLOptions::enabledCipherSuites()'],['../structMQTTClient__SSLOptions.html#a0e07f3de1807ab841646cbb8bfa94657',1,'MQTTClient_SSLOptions::enabledCipherSuites()']]], + ['enableservercertauth_893',['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.js b/docs/MQTTClient_internal/html/search/variables_6.js index 15c32830..5a378208 100644 --- a/docs/MQTTClient_internal/html/search/variables_6.js +++ b/docs/MQTTClient_internal/html/search/variables_6.js @@ -1,8 +1,8 @@ var searchData= [ - ['file_892',['file',['../structstorageElement.html#aa13f42ed8f43459d289dec1bc4e259dd',1,'storageElement']]], - ['first_893',['first',['../structList.html#ab6dd52dbb617d263723015ef055caffe',1,'List']]], - ['fixed_5fheader_894',['fixed_header',['../structsocket__queue.html#a8cc2b561b0b418fbbcc7ede680c71169',1,'socket_queue']]], - ['flags_895',['flags',['../structConnect.html#a0c84bf238adaf04ea32a2b759247d80a',1,'Connect::flags()'],['../structConnack.html#a296f82b2061fa92586c8c2212ffd6efd',1,'Connack::flags()']]], - ['frees_896',['frees',['../structPacketBuffers.html#a3cd5992bdafa89f7e7a7083b20ff9390',1,'PacketBuffers']]] + ['file_894',['file',['../structstorageElement.html#aa13f42ed8f43459d289dec1bc4e259dd',1,'storageElement']]], + ['first_895',['first',['../structList.html#ab6dd52dbb617d263723015ef055caffe',1,'List']]], + ['fixed_5fheader_896',['fixed_header',['../structsocket__queue.html#a8cc2b561b0b418fbbcc7ede680c71169',1,'socket_queue']]], + ['flags_897',['flags',['../structConnect.html#a0c84bf238adaf04ea32a2b759247d80a',1,'Connect::flags()'],['../structConnack.html#a296f82b2061fa92586c8c2212ffd6efd',1,'Connack::flags()']]], + ['frees_898',['frees',['../structPacketBuffers.html#a3cd5992bdafa89f7e7a7083b20ff9390',1,'PacketBuffers']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_7.js b/docs/MQTTClient_internal/html/search/variables_7.js index 5031208b..997ec20a 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_897',['good',['../structClients.html#a45dde398d2d928794de3886c74c435f6',1,'Clients']]] + ['good_899',['good',['../structClients.html#a45dde398d2d928794de3886c74c435f6',1,'Clients']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_8.js b/docs/MQTTClient_internal/html/search/variables_8.js index f1241380..489df2d5 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_898',['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_899',['heap',['../Heap_8c.html#aa337931db6f2e3b78d5dce6a8d228257',1,'Heap.c']]], - ['heap_5ftracking_900',['heap_tracking',['../structTree.html#ad3f36479166a4a7d4124c6a79ee770f4',1,'Tree']]], - ['httpheaders_901',['httpHeaders',['../structMQTTAsync__connectOptions.html#a804e7ee013338a83a6f573f6644829ca',1,'MQTTAsync_connectOptions::httpHeaders()'],['../structMQTTClient__connectOptions.html#a843b077a0524dcc6a1ce6db12d2e7412',1,'MQTTClient_connectOptions::httpHeaders()']]], - ['httpproxy_902',['httpProxy',['../structClients.html#a70540b5d48c05815309215b18de69f8a',1,'Clients::httpProxy()'],['../structMQTTAsync__connectOptions.html#a2290cec827700b22efca37ea4bce3abd',1,'MQTTAsync_connectOptions::httpProxy()'],['../structMQTTClient__connectOptions.html#a4c801d96d7a0013928d6a475fd48fe3c',1,'MQTTClient_connectOptions::httpProxy()']]], - ['httpsproxy_903',['httpsProxy',['../structClients.html#a3864bdb9426f9fc646eff80109a831b3',1,'Clients::httpsProxy()'],['../structMQTTAsync__connectOptions.html#ad4937ddf0e089fb0e0e054ae3a3aea55',1,'MQTTAsync_connectOptions::httpsProxy()'],['../structMQTTClient__connectOptions.html#aff577bef3a72e4aa9022fda4cffd4544',1,'MQTTClient_connectOptions::httpsProxy()']]] + ['header_900',['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_901',['heap',['../Heap_8c.html#aa337931db6f2e3b78d5dce6a8d228257',1,'Heap.c']]], + ['heap_5ftracking_902',['heap_tracking',['../structTree.html#ad3f36479166a4a7d4124c6a79ee770f4',1,'Tree']]], + ['httpheaders_903',['httpHeaders',['../structMQTTAsync__connectOptions.html#a804e7ee013338a83a6f573f6644829ca',1,'MQTTAsync_connectOptions::httpHeaders()'],['../structMQTTClient__connectOptions.html#a843b077a0524dcc6a1ce6db12d2e7412',1,'MQTTClient_connectOptions::httpHeaders()']]], + ['httpproxy_904',['httpProxy',['../structClients.html#a70540b5d48c05815309215b18de69f8a',1,'Clients::httpProxy()'],['../structMQTTAsync__connectOptions.html#a2290cec827700b22efca37ea4bce3abd',1,'MQTTAsync_connectOptions::httpProxy()'],['../structMQTTClient__connectOptions.html#a4c801d96d7a0013928d6a475fd48fe3c',1,'MQTTClient_connectOptions::httpProxy()']]], + ['httpsproxy_905',['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.js b/docs/MQTTClient_internal/html/search/variables_9.js index e5c1a494..02c0fb72 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_904',['identifier',['../structMQTTProperty.html#a5e407f4d2a2ba51cc784b7660fc06e6f',1,'MQTTProperty']]], - ['inboundmsgs_905',['inboundMsgs',['../structClients.html#a6e1576ebc386f04d2a70b943677b54d6',1,'Clients']]], - ['indexes_906',['indexes',['../structTree.html#a970b46e9c386139ad4fe213c043238e5',1,'Tree']]], - ['integer2_907',['integer2',['../structMQTTProperty.html#a940cbb3bf8211c5f207e3e1b6495c573',1,'MQTTProperty']]], - ['integer4_908',['integer4',['../structMQTTProperty.html#a64f07dae61291856a24828ff9fd70dd2',1,'MQTTProperty']]] + ['identifier_906',['identifier',['../structMQTTProperty.html#a5e407f4d2a2ba51cc784b7660fc06e6f',1,'MQTTProperty']]], + ['inboundmsgs_907',['inboundMsgs',['../structClients.html#a6e1576ebc386f04d2a70b943677b54d6',1,'Clients']]], + ['indexes_908',['indexes',['../structTree.html#a970b46e9c386139ad4fe213c043238e5',1,'Tree']]], + ['integer2_909',['integer2',['../structMQTTProperty.html#a940cbb3bf8211c5f207e3e1b6495c573',1,'MQTTProperty']]], + ['integer4_910',['integer4',['../structMQTTProperty.html#a64f07dae61291856a24828ff9fd70dd2',1,'MQTTProperty']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_a.js b/docs/MQTTClient_internal/html/search/variables_a.js index d049a68d..7e69015b 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_909',['keepAliveInterval',['../structClients.html#a0c9720f6d2df33e40ca5a28ced0036bb',1,'Clients::keepAliveInterval()'],['../structMQTTAsync__connectOptions.html#ad6ed277d7db13a98ecef45ff3dd10044',1,'MQTTAsync_connectOptions::keepAliveInterval()'],['../structMQTTClient__connectOptions.html#a7de757dd172a63d699290d582aa0f798',1,'MQTTClient_connectOptions::keepAliveInterval()']]], - ['keepalivetimer_910',['keepAliveTimer',['../structConnect.html#a5274defe9badb8c5e46e7b674c548441',1,'Connect']]], - ['keystore_911',['keyStore',['../structMQTTAsync__SSLOptions.html#ac1b1a5ae74a807d672b5d44c7ecc4a9b',1,'MQTTAsync_SSLOptions::keyStore()'],['../structMQTTClient__SSLOptions.html#aab300df31cebc087303c4e5b8071e12c',1,'MQTTClient_SSLOptions::keyStore()']]] + ['keepaliveinterval_911',['keepAliveInterval',['../structClients.html#a0c9720f6d2df33e40ca5a28ced0036bb',1,'Clients::keepAliveInterval()'],['../structMQTTAsync__connectOptions.html#ad6ed277d7db13a98ecef45ff3dd10044',1,'MQTTAsync_connectOptions::keepAliveInterval()'],['../structMQTTClient__connectOptions.html#a7de757dd172a63d699290d582aa0f798',1,'MQTTClient_connectOptions::keepAliveInterval()']]], + ['keepalivetimer_912',['keepAliveTimer',['../structConnect.html#a5274defe9badb8c5e46e7b674c548441',1,'Connect']]], + ['keystore_913',['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.js b/docs/MQTTClient_internal/html/search/variables_b.js index fedbf8d5..98edfb0f 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_912',['last',['../structList.html#a7be27419b0df1734d1028fa1729eb96c',1,'List']]], - ['len_913',['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_914',['length',['../structMQTTProperties.html#a9538dfb5688661da09829a64f582c3c2',1,'MQTTProperties']]], - ['line_915',['line',['../structstorageElement.html#aa378660045dffaebb2804fd8ba6c5982',1,'storageElement']]], - ['lines_5fwritten_916',['lines_written',['../Log_8c.html#af6d2621ee2d6d01ab6b42b9afbc1c56e',1,'Log.c']]], - ['lower_917',['lower',['../utf-8_8c.html#a17ae1b83727db4230c8df98b4ee953fc',1,'utf-8.c']]] + ['last_914',['last',['../structList.html#a7be27419b0df1734d1028fa1729eb96c',1,'List']]], + ['len_915',['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_916',['length',['../structMQTTProperties.html#a9538dfb5688661da09829a64f582c3c2',1,'MQTTProperties']]], + ['line_917',['line',['../structstorageElement.html#aa378660045dffaebb2804fd8ba6c5982',1,'storageElement']]], + ['lines_5fwritten_918',['lines_written',['../Log_8c.html#af6d2621ee2d6d01ab6b42b9afbc1c56e',1,'Log.c']]], + ['lower_919',['lower',['../utf-8_8c.html#a17ae1b83727db4230c8df98b4ee953fc',1,'utf-8.c']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_c.js b/docs/MQTTClient_internal/html/search/variables_c.js index 576de340..a8e413e0 100644 --- a/docs/MQTTClient_internal/html/search/variables_c.js +++ b/docs/MQTTClient_internal/html/search/variables_c.js @@ -1,19 +1,19 @@ var searchData= [ - ['mask_918',['mask',['../structPublish.html#a8a70d60f90d1418ebf501ad33eba2e11',1,'Publish::mask()'],['../structPacketBuffers.html#a9f29c58d295427b93e1e52fa7fd043ce',1,'PacketBuffers::mask()']]], - ['max_5fcount_919',['max_count',['../structMQTTProperties.html#ad3bd5700ed60fb16c072e8a65672a581',1,'MQTTProperties']]], - ['max_5flines_5fper_5ffile_920',['max_lines_per_file',['../Log_8c.html#ab0c0e8addd9dc5b2a54aafa15b606435',1,'Log.c']]], - ['max_5fsize_921',['max_size',['../structheap__info.html#acca9bc1ad656bc11b35406f8588d2c43',1,'heap_info']]], - ['max_5ftrace_5fentries_922',['max_trace_entries',['../structtrace__settings__type.html#acecf92991c3008b020b44f44f661f03f',1,'trace_settings_type']]], - ['maxbufferedmessages_923',['maxBufferedMessages',['../structMQTTAsync__createOptions.html#a39d76a63782adbd9526bad0b33603522',1,'MQTTAsync_createOptions']]], - ['maxfdp1_924',['maxfdp1',['../structSockets.html#af528092a8513ffbb0d3c342503835a47',1,'Sockets']]], - ['maxinflight_925',['maxInflight',['../structMQTTAsync__connectOptions.html#afbcfee31a89fb634456290f22c4e32da',1,'MQTTAsync_connectOptions']]], - ['maxinflightmessages_926',['maxInflightMessages',['../structClients.html#af0963eb25f36dfafdd29bfc3007181b7',1,'Clients::maxInflightMessages()'],['../structMQTTClient__connectOptions.html#a23eefc54da515a0c189ed6d5918470b0',1,'MQTTClient_connectOptions::maxInflightMessages()']]], - ['maxretryinterval_927',['maxRetryInterval',['../structMQTTAsync__connectOptions.html#a7d1e6443a9050f3e54b02dfa6854feb4',1,'MQTTAsync_connectOptions']]], - ['message_928',['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_929',['messageQueue',['../structClients.html#a19263eecc43962ac977832e124b4529f',1,'Clients']]], - ['minretryinterval_930',['minRetryInterval',['../structMQTTAsync__connectOptions.html#a60bb7a0c6afaaff456f7fa4f18c84b66',1,'MQTTAsync_connectOptions']]], - ['mod_5fs_931',['mod_s',['../Socket_8c.html#a6caeed4a8d4f884c57a815034cee275e',1,'Socket.c']]], - ['mqttversion_932',['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_933',['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_920',['mask',['../structPublish.html#a8a70d60f90d1418ebf501ad33eba2e11',1,'Publish::mask()'],['../structPacketBuffers.html#a9f29c58d295427b93e1e52fa7fd043ce',1,'PacketBuffers::mask()']]], + ['max_5fcount_921',['max_count',['../structMQTTProperties.html#ad3bd5700ed60fb16c072e8a65672a581',1,'MQTTProperties']]], + ['max_5flines_5fper_5ffile_922',['max_lines_per_file',['../Log_8c.html#ab0c0e8addd9dc5b2a54aafa15b606435',1,'Log.c']]], + ['max_5fsize_923',['max_size',['../structheap__info.html#acca9bc1ad656bc11b35406f8588d2c43',1,'heap_info']]], + ['max_5ftrace_5fentries_924',['max_trace_entries',['../structtrace__settings__type.html#acecf92991c3008b020b44f44f661f03f',1,'trace_settings_type']]], + ['maxbufferedmessages_925',['maxBufferedMessages',['../structMQTTAsync__createOptions.html#a39d76a63782adbd9526bad0b33603522',1,'MQTTAsync_createOptions']]], + ['maxfdp1_926',['maxfdp1',['../structSockets.html#af528092a8513ffbb0d3c342503835a47',1,'Sockets']]], + ['maxinflight_927',['maxInflight',['../structMQTTAsync__connectOptions.html#afbcfee31a89fb634456290f22c4e32da',1,'MQTTAsync_connectOptions']]], + ['maxinflightmessages_928',['maxInflightMessages',['../structClients.html#af0963eb25f36dfafdd29bfc3007181b7',1,'Clients::maxInflightMessages()'],['../structMQTTClient__connectOptions.html#a23eefc54da515a0c189ed6d5918470b0',1,'MQTTClient_connectOptions::maxInflightMessages()']]], + ['maxretryinterval_929',['maxRetryInterval',['../structMQTTAsync__connectOptions.html#a7d1e6443a9050f3e54b02dfa6854feb4',1,'MQTTAsync_connectOptions']]], + ['message_930',['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_931',['messageQueue',['../structClients.html#a19263eecc43962ac977832e124b4529f',1,'Clients']]], + ['minretryinterval_932',['minRetryInterval',['../structMQTTAsync__connectOptions.html#a60bb7a0c6afaaff456f7fa4f18c84b66',1,'MQTTAsync_connectOptions']]], + ['mod_5fs_933',['mod_s',['../Socket_8c.html#a6caeed4a8d4f884c57a815034cee275e',1,'Socket.c']]], + ['mqttversion_934',['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_935',['msgID',['../structClients.html#ad0aaa6d9fce1f8196ff859df00716055',1,'Clients::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()'],['../structMQTTAsync__message.html#a2c8572ec595842768848982321835bfe',1,'MQTTAsync_message::msgid()'],['../structMQTTClient__message.html#a3be81df63644606036c0a139564a1d92',1,'MQTTClient_message::msgid()']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_d.js b/docs/MQTTClient_internal/html/search/variables_d.js index 9353bc2f..41a5fd10 100644 --- a/docs/MQTTClient_internal/html/search/variables_d.js +++ b/docs/MQTTClient_internal/html/search/variables_d.js @@ -1,9 +1,9 @@ var searchData= [ - ['name_934',['name',['../structMQTTAsync__nameValue.html#ad14f405ef73f1f2aa632bb22e6b26f51',1,'MQTTAsync_nameValue']]], - ['net_935',['net',['../structClients.html#a8521f3c0d7728e0bac41c1601ca8bbb9',1,'Clients']]], - ['new_5fpackets_936',['new_packets',['../MQTTPacket_8c.html#a210a7b616c27aa7247824022285da784',1,'MQTTPacket.c']]], - ['next_937',['next',['../structListElementStruct.html#ae087afc0ce4e6e17592420764902f301',1,'ListElementStruct']]], - ['nextmessagetype_938',['nextMessageType',['../structMessages.html#aa31b6d8af2e0230eccdcc6ee7f2cefb1',1,'Messages']]], - ['nolocal_939',['noLocal',['../structMQTTSubscribe__options.html#a52989a1198bc251aad22638e85f2b7b4',1,'MQTTSubscribe_options']]] + ['name_936',['name',['../structMQTTAsync__nameValue.html#ad14f405ef73f1f2aa632bb22e6b26f51',1,'MQTTAsync_nameValue']]], + ['net_937',['net',['../structClients.html#a8521f3c0d7728e0bac41c1601ca8bbb9',1,'Clients']]], + ['new_5fpackets_938',['new_packets',['../MQTTPacket_8c.html#a210a7b616c27aa7247824022285da784',1,'MQTTPacket.c']]], + ['next_939',['next',['../structListElementStruct.html#ae087afc0ce4e6e17592420764902f301',1,'ListElementStruct']]], + ['nextmessagetype_940',['nextMessageType',['../structMessages.html#aa31b6d8af2e0230eccdcc6ee7f2cefb1',1,'Messages']]], + ['nolocal_941',['noLocal',['../structMQTTSubscribe__options.html#a52989a1198bc251aad22638e85f2b7b4',1,'MQTTSubscribe_options']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_e.js b/docs/MQTTClient_internal/html/search/variables_e.js index 8f264079..8264b22e 100644 --- a/docs/MQTTClient_internal/html/search/variables_e.js +++ b/docs/MQTTClient_internal/html/search/variables_e.js @@ -1,8 +1,8 @@ var searchData= [ - ['onfailure_940',['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_941',['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_942',['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_943',['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_944',['outboundMsgs',['../structClients.html#a1d9f8325aa92c6f65a285e823091bbe1',1,'Clients']]] + ['onfailure_942',['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_943',['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_944',['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_945',['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_946',['outboundMsgs',['../structClients.html#a1d9f8325aa92c6f65a285e823091bbe1',1,'Clients']]] ]; diff --git a/docs/MQTTClient_internal/html/search/variables_f.js b/docs/MQTTClient_internal/html/search/variables_f.js index c50c6efd..8b954238 100644 --- a/docs/MQTTClient_internal/html/search/variables_f.js +++ b/docs/MQTTClient_internal/html/search/variables_f.js @@ -1,31 +1,33 @@ var searchData= [ - ['packet_5fnames_945',['packet_names',['../MQTTPacket_8c.html#a4536b1c36ed06171f20baeb69c01aa02',1,'MQTTPacket.c']]], - ['packet_5ftype_946',['packet_type',['../structMQTTAsync__failureData5.html#a20603650f6fd4e429fc4c246d5005843',1,'MQTTAsync_failureData5']]], - ['parent_947',['parent',['../structNodeStruct.html#a1a00514fc5241f8b1391fa0eb433a128',1,'NodeStruct']]], - ['password_948',['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_949',['passwordlen',['../structClients.html#a9fc28cb6abab3247752403043c346aa1',1,'Clients']]], - ['payload_950',['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_951',['payloadlen',['../structMQTTAsync__message.html#a9271900e2789ff81e382a47842aaee8f',1,'MQTTAsync_message::payloadlen()'],['../structMQTTClient__message.html#a85b39bde61ef9f5ed853ad6489145a94',1,'MQTTClient_message::payloadlen()'],['../structPublish.html#ac250077e84d98fc44f95530793bae79b',1,'Publish::payloadlen()']]], - ['pclear_952',['pclear',['../structMQTTClient__persistence.html#a4eb919940dcc01a005abcdeb08a7eb10',1,'MQTTClient_persistence']]], - ['pclose_953',['pclose',['../structMQTTClient__persistence.html#a1bcc2ebaee1ab155b906493b14088a33',1,'MQTTClient_persistence']]], - ['pcontainskey_954',['pcontainskey',['../structMQTTClient__persistence.html#a049d548dc2bbe906309a9f869a60653c',1,'MQTTClient_persistence']]], - ['pending_5fwset_955',['pending_wset',['../structSockets.html#a410464774efcdea446293ed6d4ea9c94',1,'Sockets']]], - ['persistence_956',['persistence',['../structClients.html#a8745ab9f05600fd3f97bf695e99a7f17',1,'Clients']]], - ['pget_957',['pget',['../structMQTTClient__persistence.html#a0f9fe9edd3946f0647862de7904e4098',1,'MQTTClient_persistence']]], - ['phandle_958',['phandle',['../structClients.html#a1a0ca8e87f5d963ea3ab5c2e7748aaa5',1,'Clients']]], - ['pkeys_959',['pkeys',['../structMQTTClient__persistence.html#a36a69926a618f7e0f5098db61ece101b',1,'MQTTClient_persistence']]], - ['popen_960',['popen',['../structMQTTClient__persistence.html#ae58084438624ad267f7c050debd1b2ff',1,'MQTTClient_persistence']]], - ['pos_961',['pos',['../structws__frame.html#a03099256dd943b73f0558039b6ff4c6b',1,'ws_frame']]], - ['pput_962',['pput',['../structMQTTClient__persistence.html#a0f7846e9b4118a7a63702c504f4c8e9d',1,'MQTTClient_persistence']]], - ['premove_963',['premove',['../structMQTTClient__persistence.html#a815d4110bfd7f2678a60f9264b13e075',1,'MQTTClient_persistence']]], - ['prev_964',['prev',['../structListElementStruct.html#a988db5828265edf844721e841e71fffe',1,'ListElementStruct']]], - ['privatekey_965',['privateKey',['../structMQTTAsync__SSLOptions.html#a8b56d6075568072840f02abc8c642f6a',1,'MQTTAsync_SSLOptions::privateKey()'],['../structMQTTClient__SSLOptions.html#a5f3cc2c0f36991db85aae88ccd4985f9',1,'MQTTClient_SSLOptions::privateKey()']]], - ['privatekeypassword_966',['privateKeyPassword',['../structMQTTAsync__SSLOptions.html#a498e4dfcb65894bfc04290ace6b9a4cd',1,'MQTTAsync_SSLOptions::privateKeyPassword()'],['../structMQTTClient__SSLOptions.html#a183af235478d93a6b14c204e9e291bab',1,'MQTTClient_SSLOptions::privateKeyPassword()']]], - ['properties_967',['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_968',['Protocol',['../structConnect.html#ab87417598de200c235ce28e8947f8804',1,'Connect']]], - ['protos_969',['protos',['../structMQTTAsync__SSLOptions.html#a9947024802d3fb16fc050f4741a46e04',1,'MQTTAsync_SSLOptions::protos()'],['../structMQTTClient__SSLOptions.html#ad3db47e7874990570d03758a3fa28dad',1,'MQTTClient_SSLOptions::protos()']]], - ['protos_5flen_970',['protos_len',['../structMQTTAsync__SSLOptions.html#ad9e390b02afbf856c5a9267d30f09208',1,'MQTTAsync_SSLOptions::protos_len()'],['../structMQTTClient__SSLOptions.html#ac2df368c72cfaa432f90e3b657bd0883',1,'MQTTClient_SSLOptions::protos_len()']]], - ['ptr_971',['ptr',['../structstorageElement.html#a0d617635e796eaa92ace8cb5cd6d0925',1,'storageElement']]], - ['pub_972',['pub',['../structMQTTAsync__successData.html#a61d994959ff1350ab2a0986d33ecd204',1,'MQTTAsync_successData::pub()'],['../structMQTTAsync__successData5.html#a7e75879a42ba01477a3c921487e3c564',1,'MQTTAsync_successData5::pub()']]] + ['packet_5fnames_947',['packet_names',['../MQTTPacket_8c.html#a4536b1c36ed06171f20baeb69c01aa02',1,'MQTTPacket.c']]], + ['packet_5ftype_948',['packet_type',['../structMQTTAsync__failureData5.html#a20603650f6fd4e429fc4c246d5005843',1,'MQTTAsync_failureData5']]], + ['parent_949',['parent',['../structNodeStruct.html#a1a00514fc5241f8b1391fa0eb433a128',1,'NodeStruct']]], + ['password_950',['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_951',['passwordlen',['../structClients.html#a9fc28cb6abab3247752403043c346aa1',1,'Clients']]], + ['payload_952',['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_953',['payloadlen',['../structMQTTAsync__message.html#a9271900e2789ff81e382a47842aaee8f',1,'MQTTAsync_message::payloadlen()'],['../structMQTTClient__message.html#a85b39bde61ef9f5ed853ad6489145a94',1,'MQTTClient_message::payloadlen()'],['../structPublish.html#ac250077e84d98fc44f95530793bae79b',1,'Publish::payloadlen()']]], + ['pclear_954',['pclear',['../structMQTTClient__persistence.html#a4eb919940dcc01a005abcdeb08a7eb10',1,'MQTTClient_persistence']]], + ['pclose_955',['pclose',['../structMQTTClient__persistence.html#a1bcc2ebaee1ab155b906493b14088a33',1,'MQTTClient_persistence']]], + ['pcontainskey_956',['pcontainskey',['../structMQTTClient__persistence.html#a049d548dc2bbe906309a9f869a60653c',1,'MQTTClient_persistence']]], + ['pending_5fwset_957',['pending_wset',['../structSockets.html#a410464774efcdea446293ed6d4ea9c94',1,'Sockets']]], + ['persistence_958',['persistence',['../structClients.html#a8745ab9f05600fd3f97bf695e99a7f17',1,'Clients']]], + ['pget_959',['pget',['../structMQTTClient__persistence.html#a0f9fe9edd3946f0647862de7904e4098',1,'MQTTClient_persistence']]], + ['phandle_960',['phandle',['../structClients.html#a1a0ca8e87f5d963ea3ab5c2e7748aaa5',1,'Clients']]], + ['ping_5fdue_961',['ping_due',['../structClients.html#a121c64145977cb25dfd05a3297a4d6f1',1,'Clients']]], + ['ping_5fdue_5ftime_962',['ping_due_time',['../structClients.html#a4e6f0b2b23c1a2b86899c9ca7b06b29b',1,'Clients']]], + ['pkeys_963',['pkeys',['../structMQTTClient__persistence.html#a36a69926a618f7e0f5098db61ece101b',1,'MQTTClient_persistence']]], + ['popen_964',['popen',['../structMQTTClient__persistence.html#ae58084438624ad267f7c050debd1b2ff',1,'MQTTClient_persistence']]], + ['pos_965',['pos',['../structws__frame.html#a03099256dd943b73f0558039b6ff4c6b',1,'ws_frame']]], + ['pput_966',['pput',['../structMQTTClient__persistence.html#a0f7846e9b4118a7a63702c504f4c8e9d',1,'MQTTClient_persistence']]], + ['premove_967',['premove',['../structMQTTClient__persistence.html#a815d4110bfd7f2678a60f9264b13e075',1,'MQTTClient_persistence']]], + ['prev_968',['prev',['../structListElementStruct.html#a988db5828265edf844721e841e71fffe',1,'ListElementStruct']]], + ['privatekey_969',['privateKey',['../structMQTTAsync__SSLOptions.html#a8b56d6075568072840f02abc8c642f6a',1,'MQTTAsync_SSLOptions::privateKey()'],['../structMQTTClient__SSLOptions.html#a5f3cc2c0f36991db85aae88ccd4985f9',1,'MQTTClient_SSLOptions::privateKey()']]], + ['privatekeypassword_970',['privateKeyPassword',['../structMQTTAsync__SSLOptions.html#a498e4dfcb65894bfc04290ace6b9a4cd',1,'MQTTAsync_SSLOptions::privateKeyPassword()'],['../structMQTTClient__SSLOptions.html#a183af235478d93a6b14c204e9e291bab',1,'MQTTClient_SSLOptions::privateKeyPassword()']]], + ['properties_971',['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_972',['Protocol',['../structConnect.html#ab87417598de200c235ce28e8947f8804',1,'Connect']]], + ['protos_973',['protos',['../structMQTTAsync__SSLOptions.html#a9947024802d3fb16fc050f4741a46e04',1,'MQTTAsync_SSLOptions::protos()'],['../structMQTTClient__SSLOptions.html#ad3db47e7874990570d03758a3fa28dad',1,'MQTTClient_SSLOptions::protos()']]], + ['protos_5flen_974',['protos_len',['../structMQTTAsync__SSLOptions.html#ad9e390b02afbf856c5a9267d30f09208',1,'MQTTAsync_SSLOptions::protos_len()'],['../structMQTTClient__SSLOptions.html#ac2df368c72cfaa432f90e3b657bd0883',1,'MQTTClient_SSLOptions::protos_len()']]], + ['ptr_975',['ptr',['../structstorageElement.html#a0d617635e796eaa92ace8cb5cd6d0925',1,'storageElement']]], + ['pub_976',['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 ae55f992..448aaadd 100644 --- a/docs/MQTTClient_internal/html/structAck.html +++ b/docs/MQTTClient_internal/html/structAck.html @@ -78,11 +78,11 @@ Collaboration diagram for Ack:
    Collaboration graph
    - - - - - + + + + +
    [legend]
  • @@ -134,7 +134,7 @@ int 
    diff --git a/docs/MQTTClient_internal/html/structAck__coll__graph.map b/docs/MQTTClient_internal/html/structAck__coll__graph.map index 5a75283c..a02e7b07 100644 --- a/docs/MQTTClient_internal/html/structAck__coll__graph.map +++ b/docs/MQTTClient_internal/html/structAck__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/structAck__coll__graph.png b/docs/MQTTClient_internal/html/structAck__coll__graph.png index cbe4eac5..9fee85fe 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 60da8009..d6bf9ccc 100644 --- a/docs/MQTTClient_internal/html/structClientStates.html +++ b/docs/MQTTClient_internal/html/structClientStates.html @@ -78,9 +78,9 @@ Collaboration diagram for ClientStates:
    Collaboration graph
    - - - + + +
    [legend]
    @@ -101,7 +101,7 @@ const char * 
    version diff --git a/docs/MQTTClient_internal/html/structClientStates__coll__graph.map b/docs/MQTTClient_internal/html/structClientStates__coll__graph.map index b6b36801..09ed7a57 100644 --- a/docs/MQTTClient_internal/html/structClientStates__coll__graph.map +++ b/docs/MQTTClient_internal/html/structClientStates__coll__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/structClientStates__coll__graph.png b/docs/MQTTClient_internal/html/structClientStates__coll__graph.png index 87699d36..ce5cb627 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 9f015ef1..513fd784 100644 --- a/docs/MQTTClient_internal/html/structClients.html +++ b/docs/MQTTClient_internal/html/structClients.html @@ -78,13 +78,13 @@ Collaboration diagram for Clients:
    Collaboration graph
    - - - - - - - + + + + + + +
    [legend]
    @@ -125,9 +125,17 @@ unsigned int  + + + + + + @@ -219,7 +227,7 @@ char * 
    unsigned int ping_outstanding: 1
     
    +unsigned int ping_due: 1
     we couldn't send a ping so we should send one when we can
     
    signed int connect_state: 4
     
    +START_TIME_TYPE ping_due_time
     the time at which the ping should have been sent (ping_due)
     
    networkHandles net
     network info for this client
    diff --git a/docs/MQTTClient_internal/html/structClients__coll__graph.map b/docs/MQTTClient_internal/html/structClients__coll__graph.map index d63ba2f7..3e7d632a 100644 --- a/docs/MQTTClient_internal/html/structClients__coll__graph.map +++ b/docs/MQTTClient_internal/html/structClients__coll__graph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/structClients__coll__graph.png b/docs/MQTTClient_internal/html/structClients__coll__graph.png index 0a6e9a0f..02e5d831 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 13c753d7..60eb0ac6 100644 --- a/docs/MQTTClient_internal/html/structConnack.html +++ b/docs/MQTTClient_internal/html/structConnack.html @@ -78,11 +78,11 @@ Collaboration diagram for Connack:
    Collaboration graph
    - - - - - + + + + +
    [legend]
    @@ -151,7 +151,7 @@ unsigned int 
    diff --git a/docs/MQTTClient_internal/html/structConnack__coll__graph.map b/docs/MQTTClient_internal/html/structConnack__coll__graph.map index 2ebbfc13..78bd5769 100644 --- a/docs/MQTTClient_internal/html/structConnack__coll__graph.map +++ b/docs/MQTTClient_internal/html/structConnack__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/structConnack__coll__graph.png b/docs/MQTTClient_internal/html/structConnack__coll__graph.png index 78726b65..478139f3 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 86a6c8e9..64cb6455 100644 --- a/docs/MQTTClient_internal/html/structConnect.html +++ b/docs/MQTTClient_internal/html/structConnect.html @@ -78,8 +78,8 @@ Collaboration diagram for Connect:
    Collaboration graph
    - - + +
    [legend]
    @@ -163,7 +163,7 @@ unsigned char 
    diff --git a/docs/MQTTClient_internal/html/structConnect__coll__graph.map b/docs/MQTTClient_internal/html/structConnect__coll__graph.map index d3bfcf4d..4acbb2cc 100644 --- a/docs/MQTTClient_internal/html/structConnect__coll__graph.map +++ b/docs/MQTTClient_internal/html/structConnect__coll__graph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/structConnect__coll__graph.png b/docs/MQTTClient_internal/html/structConnect__coll__graph.png index 0d77ea38..ff695167 100644 Binary files a/docs/MQTTClient_internal/html/structConnect__coll__graph.png and b/docs/MQTTClient_internal/html/structConnect__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structList.html b/docs/MQTTClient_internal/html/structList.html index d35d609d..cd64f786 100644 --- a/docs/MQTTClient_internal/html/structList.html +++ b/docs/MQTTClient_internal/html/structList.html @@ -78,8 +78,8 @@ Collaboration diagram for List:
    Collaboration graph
    - - + +
    [legend]
    @@ -114,7 +114,7 @@ size_t 
    diff --git a/docs/MQTTClient_internal/html/structListElementStruct.html b/docs/MQTTClient_internal/html/structListElementStruct.html index 3d85160b..1fddabd7 100644 --- a/docs/MQTTClient_internal/html/structListElementStruct.html +++ b/docs/MQTTClient_internal/html/structListElementStruct.html @@ -78,7 +78,7 @@ Collaboration diagram for ListElementStruct:
    Collaboration graph
    - +
    [legend]
    @@ -105,7 +105,7 @@ void *  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html index f94b45b2..82a7003c 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html @@ -323,7 +323,7 @@ unsigned int 
    diff --git a/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.map b/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.map index e141e34b..83284a91 100644 --- a/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.map +++ b/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.map @@ -1,3 +1,3 @@ - + diff --git a/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.png b/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.png index 02bcd692..40f8faa6 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.map b/docs/MQTTClient_internal/html/structList__coll__graph.map index 8c4828d6..7c9b8c7c 100644 --- a/docs/MQTTClient_internal/html/structList__coll__graph.map +++ b/docs/MQTTClient_internal/html/structList__coll__graph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/structList__coll__graph.png b/docs/MQTTClient_internal/html/structList__coll__graph.png index 64e06ee8..50623dce 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 940740d5..da575a15 100644 --- a/docs/MQTTClient_internal/html/structLog__nameValue.html +++ b/docs/MQTTClient_internal/html/structLog__nameValue.html @@ -84,7 +84,7 @@ const char * value diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__command.html b/docs/MQTTClient_internal/html/structMQTTAsync__command.html index f7733492..d3a179ef 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__command.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__command.html @@ -73,11 +73,11 @@ Collaboration diagram for MQTTAsync_command:
    Collaboration graph
    - - - - - + + + + +
    [legend]
    @@ -193,7 +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 11bc4109..832f3502 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.png index eab45184..8a0cd6a2 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 ea27ef86..de124fbf 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__connectData.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__connectData.html @@ -175,7 +175,7 @@ Data Fields diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html index 0a324194..96685d8f 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html @@ -78,13 +78,13 @@ Collaboration diagram for MQTTAsync_connectOptions:
    Collaboration graph
    - - - - - - - + + + + + + +
    [legend]
    @@ -526,7 +526,7 @@ const char *  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html index affe19d3..17c557c1 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html @@ -78,10 +78,10 @@ Collaboration diagram for MQTTAsync_disconnectOptions:
    Collaboration graph
    - - - - + + + +
    [legend]
    diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.map index fe64c836..c680baa9 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.png index 5abee9db..306368a2 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 2869950f..423ba077 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__createOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__createOptions.html @@ -168,7 +168,7 @@ int persistQoS0
    @@ -247,7 +247,7 @@ enum MQTTReasonCodes 
    diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.map index 45f8cb9f..59308859 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.png index ed230905..c0141940 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 36b02a8c..de323627 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__failureData.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__failureData.html @@ -114,7 +114,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html index e8657602..7bd2f40c 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html @@ -78,10 +78,10 @@ Collaboration diagram for MQTTAsync_failureData5:
    Collaboration graph
    - - - - + + + +
    [legend]
    @@ -177,7 +177,7 @@ int 
    diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.map index 57ca9a58..35b6c762 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.png index 41d0db5b..d1d5024e 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 d294897f..6a9f0fb3 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__init__options.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__init__options.html @@ -130,7 +130,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__message.html b/docs/MQTTClient_internal/html/structMQTTAsync__message.html index 57c37d22..0314c0a5 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__message.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__message.html @@ -78,10 +78,10 @@ Collaboration diagram for MQTTAsync_message:
    Collaboration graph
    - - - - + + + +
    [legend]
    @@ -240,7 +240,7 @@ void * 
    diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.map index 0ed7b5ca..c31fe07e 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.png index c124273e..313fab98 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 fdf0aa8a..a564f9ad 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__nameValue.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__nameValue.html @@ -93,7 +93,7 @@ const char *  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html index 3d73bc4c..0476bcd3 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html @@ -73,23 +73,23 @@ Collaboration diagram for MQTTAsync_queuedCommand:
    Collaboration graph
    - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + +
    [legend]
    @@ -117,7 +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 8ecea405..1d624395 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.map @@ -1,19 +1,19 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.png index 6c09aec4..f120edd7 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 2182e337..e2d7a957 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions.html @@ -78,11 +78,11 @@ Collaboration diagram for MQTTAsync_responseOptions:
    Collaboration graph
    - - - - - + + + + +
    [legend]
    key
    @@ -272,7 +272,7 @@ int 
    subscribeOptionsCount< diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.map index ea879d41..e332422e 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.png index e6f98aac..fc196293 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 ae16f945..8b2f2f0b 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__struct.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__struct.html @@ -73,22 +73,22 @@ Collaboration diagram for MQTTAsync_struct:
    Collaboration graph
    - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + +
    [legend]
    @@ -215,7 +215,7 @@ int < diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.map index 3daba531..4ca5957f 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.map @@ -1,18 +1,18 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.png index 1b183779..18b72901 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 1cd4f72c..80513d7b 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__successData.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__successData.html @@ -78,11 +78,11 @@ Collaboration diagram for MQTTAsync_successData:
    Collaboration graph
    - - - - - + + + + +
    [legend]
    reconnectNow
    @@ -176,7 +176,7 @@ union { diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html b/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html index ce319c81..eed95c66 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html @@ -78,11 +78,11 @@ Collaboration diagram for MQTTAsync_successData5:
    Collaboration graph
    - - - - - + + + + +
    [legend]
    @@ -226,7 +226,7 @@ union { diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.map index 0cb9deac..e391c1d9 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.png index 525224de..93881805 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.map b/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.map index 7ac0c401..73bf2705 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTAsync__successData__coll__graph.png index 2b70b97e..2c862529 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 b8d9e6f8..35acb0a3 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__willOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__willOptions.html @@ -172,7 +172,7 @@ int 
    diff --git a/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html index 885d2e6d..7847cbfb 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html @@ -323,7 +323,7 @@ unsigned int  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html index 853fb7b4..0b85f325 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html @@ -78,10 +78,10 @@ Collaboration diagram for MQTTClient_connectOptions:
    Collaboration graph
    - - - - + + + +
    [legend]
    @@ -429,7 +429,7 @@ const char *  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__init__options.html b/docs/MQTTClient_internal/html/structMQTTClient__init__options.html index fe4a0cde..721a6687 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__init__options.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__init__options.html @@ -130,7 +130,7 @@ int 
    diff --git a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions__coll__graph.map index 09beeae7..7a5b11e7 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions__coll__graph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions__coll__graph.png index 980fbcac..277a7f5b 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTClient__createOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__createOptions.html index 37cfc23f..b5a933a2 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__createOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__createOptions.html @@ -147,7 +147,7 @@ Data Fields
    diff --git a/docs/MQTTClient_internal/html/structMQTTClient__message.html b/docs/MQTTClient_internal/html/structMQTTClient__message.html index b817078b..fc0df777 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__message.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__message.html @@ -78,10 +78,10 @@ Collaboration diagram for MQTTClient_message:
    Collaboration graph
    - - - - + + + +
    [legend]
    @@ -224,7 +224,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__persistence.html b/docs/MQTTClient_internal/html/structMQTTClient__persistence.html index 0fe0e416..b939f4bc 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__persistence.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__persistence.html @@ -121,7 +121,7 @@ void * 
    diff --git a/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.map index 1af5886a..d61a3c22 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.png index 33794fea..4b551c64 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 769c9e93..467f54ad 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__nameValue.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__nameValue.html @@ -92,7 +92,7 @@ const char * value diff --git a/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html index 370be0f9..baa585a6 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html @@ -172,7 +172,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTClients.html b/docs/MQTTClient_internal/html/structMQTTClients.html index abaf44ca..759ac3b0 100644 --- a/docs/MQTTClient_internal/html/structMQTTClients.html +++ b/docs/MQTTClient_internal/html/structMQTTClients.html @@ -73,16 +73,16 @@ Collaboration diagram for MQTTClients:
    Collaboration graph
    - - - - - - - - - - + + + + + + + + + +
    [legend]
    @@ -152,7 +152,7 @@ unsigned long 
    commandTimeo diff --git a/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.map index f0a44785..38953a66 100644 --- a/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.map @@ -1,12 +1,12 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.png index a22c94b5..18ae0d29 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 4d057c93..b01d1e61 100644 --- a/docs/MQTTClient_internal/html/structMQTTLenString.html +++ b/docs/MQTTClient_internal/html/structMQTTLenString.html @@ -93,7 +93,7 @@ char *  diff --git a/docs/MQTTClient_internal/html/structMQTTPacket.html b/docs/MQTTClient_internal/html/structMQTTPacket.html index a34f0c3f..f95a9a56 100644 --- a/docs/MQTTClient_internal/html/structMQTTPacket.html +++ b/docs/MQTTClient_internal/html/structMQTTPacket.html @@ -78,8 +78,8 @@ Collaboration diagram for MQTTPacket:
    Collaboration graph
    - - + +
    [legend]
    @@ -98,7 +98,7 @@ Data Fields diff --git a/docs/MQTTClient_internal/html/structMQTTPacket__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTPacket__coll__graph.map index 6f94b683..dd17f8a5 100644 --- a/docs/MQTTClient_internal/html/structMQTTPacket__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTPacket__coll__graph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/structMQTTPacket__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTPacket__coll__graph.png index ff80fc2d..d087c829 100644 Binary files a/docs/MQTTClient_internal/html/structMQTTPacket__coll__graph.png and b/docs/MQTTClient_internal/html/structMQTTPacket__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__message.html b/docs/MQTTClient_internal/html/structMQTTPersistence__message.html index 323e3559..0de6b4d5 100644 --- a/docs/MQTTClient_internal/html/structMQTTPersistence__message.html +++ b/docs/MQTTClient_internal/html/structMQTTPersistence__message.html @@ -73,10 +73,10 @@ Collaboration diagram for MQTTPersistence_message:
    Collaboration graph
    - - - - + + + +
    [legend]
    @@ -116,7 +116,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.map index 0627adb2..2d5405fd 100644 --- a/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.png index ed751b70..be72c681 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 bfde610d..75761909 100644 --- a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry.html +++ b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry.html @@ -73,11 +73,11 @@ Collaboration diagram for MQTTPersistence_qEntry:
    Collaboration graph
    - - - - - + + + + +
    [legend]
    msgid
    @@ -102,7 +102,7 @@ unsigned int  diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.map index bb315bd0..344bc306 100644 --- a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.png index e7e37992..1128aafc 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 9f4c7603..be5bc67a 100644 --- a/docs/MQTTClient_internal/html/structMQTTProperties.html +++ b/docs/MQTTClient_internal/html/structMQTTProperties.html @@ -78,9 +78,9 @@ Collaboration diagram for MQTTProperties:
    Collaboration graph
    - - - + + +
    [legend]
    seqno
    @@ -111,7 +111,7 @@ int 
    diff --git a/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.map index 75e17e22..f72caa66 100644 --- a/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.png index 9b1420b1..71cfbd9e 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 8daf80b1..7816ef86 100644 --- a/docs/MQTTClient_internal/html/structMQTTProperty.html +++ b/docs/MQTTClient_internal/html/structMQTTProperty.html @@ -78,8 +78,8 @@ Collaboration diagram for MQTTProperty:
    Collaboration graph
    - - + +
    [legend]
    @@ -144,7 +144,7 @@ union { diff --git a/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.map index 5536d360..1294e170 100644 --- a/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.png index 308388e1..de2e88db 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 00b10372..2b313347 100644 --- a/docs/MQTTClient_internal/html/structMQTTProtocol.html +++ b/docs/MQTTClient_internal/html/structMQTTProtocol.html @@ -73,9 +73,9 @@ Collaboration diagram for MQTTProtocol:
    Collaboration graph
    - - - + + +
    [legend]
    @@ -100,7 +100,7 @@ unsigned int 
    msgs_sent diff --git a/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.map index 6fad5d2c..e1b9f00a 100644 --- a/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.png index 420abb93..c5ec871c 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 fa8b6c75..89f579bd 100644 --- a/docs/MQTTClient_internal/html/structMQTTResponse.html +++ b/docs/MQTTClient_internal/html/structMQTTResponse.html @@ -78,10 +78,10 @@ Collaboration diagram for MQTTResponse:
    Collaboration graph
    - - - - + + + +
    [legend]
    @@ -111,7 +111,7 @@ enum MQTTReasonCodes * 
    rea diff --git a/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.map index 7b3d57b2..63fc513b 100644 --- a/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.png b/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.png index 0af3f3ea..276aa119 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 5877e4d0..24df11f2 100644 --- a/docs/MQTTClient_internal/html/structMQTTSubscribe__options.html +++ b/docs/MQTTClient_internal/html/structMQTTSubscribe__options.html @@ -170,7 +170,7 @@ unsigned char  diff --git a/docs/MQTTClient_internal/html/structMessages.html b/docs/MQTTClient_internal/html/structMessages.html index 31c8dcc7..77b9ffa2 100644 --- a/docs/MQTTClient_internal/html/structMessages.html +++ b/docs/MQTTClient_internal/html/structMessages.html @@ -78,11 +78,11 @@ Collaboration diagram for Messages:
    Collaboration graph
    - - - - - + + + + +
    [legend]
    @@ -132,7 +132,7 @@ int 
    diff --git a/docs/MQTTClient_internal/html/structMessages__coll__graph.map b/docs/MQTTClient_internal/html/structMessages__coll__graph.map index ab5b9de8..3f856c28 100644 --- a/docs/MQTTClient_internal/html/structMessages__coll__graph.map +++ b/docs/MQTTClient_internal/html/structMessages__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/structMessages__coll__graph.png b/docs/MQTTClient_internal/html/structMessages__coll__graph.png index a1c190ae..73e8aa3f 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 f86bcf35..e0918c58 100644 --- a/docs/MQTTClient_internal/html/structNodeStruct.html +++ b/docs/MQTTClient_internal/html/structNodeStruct.html @@ -78,7 +78,7 @@ Collaboration diagram for NodeStruct:
    Collaboration graph
    - +
    [legend]
    @@ -112,7 +112,7 @@ unsigned int < diff --git a/docs/MQTTClient_internal/html/structPublish.html b/docs/MQTTClient_internal/html/structPublish.html index feaec6ef..0fc99a93 100644 --- a/docs/MQTTClient_internal/html/structPublish.html +++ b/docs/MQTTClient_internal/html/structPublish.html @@ -78,11 +78,11 @@ Collaboration diagram for Publish:
    Collaboration graph
    - - - - - + + + + +
    [legend]
    red: 1 diff --git a/docs/MQTTClient_internal/html/structNodeStruct__coll__graph.map b/docs/MQTTClient_internal/html/structNodeStruct__coll__graph.map index 0f55a14c..510675d2 100644 --- a/docs/MQTTClient_internal/html/structNodeStruct__coll__graph.map +++ b/docs/MQTTClient_internal/html/structNodeStruct__coll__graph.map @@ -1,3 +1,3 @@ - + diff --git a/docs/MQTTClient_internal/html/structNodeStruct__coll__graph.png b/docs/MQTTClient_internal/html/structNodeStruct__coll__graph.png index 1ff636ee..042dbe3d 100644 Binary files a/docs/MQTTClient_internal/html/structNodeStruct__coll__graph.png and b/docs/MQTTClient_internal/html/structNodeStruct__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structPacketBuffers.html b/docs/MQTTClient_internal/html/structPacketBuffers.html index 5e880f08..0eaf1901 100644 --- a/docs/MQTTClient_internal/html/structPacketBuffers.html +++ b/docs/MQTTClient_internal/html/structPacketBuffers.html @@ -109,7 +109,7 @@ uint8_t  diff --git a/docs/MQTTClient_internal/html/structPublications.html b/docs/MQTTClient_internal/html/structPublications.html index 0563350f..16c000b7 100644 --- a/docs/MQTTClient_internal/html/structPublications.html +++ b/docs/MQTTClient_internal/html/structPublications.html @@ -103,7 +103,7 @@ uint8_t mask [4]
    @@ -149,7 +149,7 @@ uint8_t  diff --git a/docs/MQTTClient_internal/html/structSockets.html b/docs/MQTTClient_internal/html/structSockets.html index 6abe8d90..0c8bbd95 100644 --- a/docs/MQTTClient_internal/html/structSockets.html +++ b/docs/MQTTClient_internal/html/structSockets.html @@ -78,9 +78,9 @@ Collaboration diagram for Sockets:
    Collaboration graph
    - - - + + +
    [legend]
    diff --git a/docs/MQTTClient_internal/html/structPublish__coll__graph.map b/docs/MQTTClient_internal/html/structPublish__coll__graph.map index 5dff59e6..effdd71d 100644 --- a/docs/MQTTClient_internal/html/structPublish__coll__graph.map +++ b/docs/MQTTClient_internal/html/structPublish__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/MQTTClient_internal/html/structPublish__coll__graph.png b/docs/MQTTClient_internal/html/structPublish__coll__graph.png index cdc50b3a..82a51a45 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 79971836..ae1eab85 100644 --- a/docs/MQTTClient_internal/html/structSHA__CTX__S.html +++ b/docs/MQTTClient_internal/html/structSHA__CTX__S.html @@ -97,7 +97,7 @@ unsigned int total
    @@ -127,7 +127,7 @@ fd_set 
    diff --git a/docs/MQTTClient_internal/html/structSockets__coll__graph.map b/docs/MQTTClient_internal/html/structSockets__coll__graph.map index 477ac1b4..9755b5f6 100644 --- a/docs/MQTTClient_internal/html/structSockets__coll__graph.map +++ b/docs/MQTTClient_internal/html/structSockets__coll__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/structSockets__coll__graph.png b/docs/MQTTClient_internal/html/structSockets__coll__graph.png index 775d3c3c..f538a346 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 a7cbb086..b89b8717 100644 --- a/docs/MQTTClient_internal/html/structSuback.html +++ b/docs/MQTTClient_internal/html/structSuback.html @@ -78,13 +78,13 @@ Collaboration diagram for Suback:
    Collaboration graph
    - - - - - - - + + + + + + +
    [legend]
    @@ -136,7 +136,7 @@ int 
    diff --git a/docs/MQTTClient_internal/html/structSuback__coll__graph.map b/docs/MQTTClient_internal/html/structSuback__coll__graph.map index 3de2eb7a..0f712931 100644 --- a/docs/MQTTClient_internal/html/structSuback__coll__graph.map +++ b/docs/MQTTClient_internal/html/structSuback__coll__graph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/structSuback__coll__graph.png b/docs/MQTTClient_internal/html/structSuback__coll__graph.png index d393b0b8..94a4a761 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 a6e3ba50..572bd63a 100644 --- a/docs/MQTTClient_internal/html/structTree.html +++ b/docs/MQTTClient_internal/html/structTree.html @@ -78,8 +78,8 @@ Collaboration diagram for Tree:
    Collaboration graph
    - - + +
    [legend]
    @@ -126,7 +126,7 @@ unsigned int 
    diff --git a/docs/MQTTClient_internal/html/structTree__coll__graph.map b/docs/MQTTClient_internal/html/structTree__coll__graph.map index bd7174da..4a4c6b38 100644 --- a/docs/MQTTClient_internal/html/structTree__coll__graph.map +++ b/docs/MQTTClient_internal/html/structTree__coll__graph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/structTree__coll__graph.png b/docs/MQTTClient_internal/html/structTree__coll__graph.png index 4a5c77df..3ffb9cc9 100644 Binary files a/docs/MQTTClient_internal/html/structTree__coll__graph.png and b/docs/MQTTClient_internal/html/structTree__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structUnsuback.html b/docs/MQTTClient_internal/html/structUnsuback.html index a69b782d..ca9ab4a6 100644 --- a/docs/MQTTClient_internal/html/structUnsuback.html +++ b/docs/MQTTClient_internal/html/structUnsuback.html @@ -78,13 +78,13 @@ Collaboration diagram for Unsuback:
    Collaboration graph
    - - - - - - - + + + + + + +
    [legend]
    @@ -136,7 +136,7 @@ int < diff --git a/docs/MQTTClient_internal/html/structheap__info.html b/docs/MQTTClient_internal/html/structheap__info.html index 6d3b2044..59d234ca 100644 --- a/docs/MQTTClient_internal/html/structheap__info.html +++ b/docs/MQTTClient_internal/html/structheap__info.html @@ -93,7 +93,7 @@ size_t 
    diff --git a/docs/MQTTClient_internal/html/structUnsuback__coll__graph.map b/docs/MQTTClient_internal/html/structUnsuback__coll__graph.map index 1c4e12d6..51f75a68 100644 --- a/docs/MQTTClient_internal/html/structUnsuback__coll__graph.map +++ b/docs/MQTTClient_internal/html/structUnsuback__coll__graph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/MQTTClient_internal/html/structUnsuback__coll__graph.png b/docs/MQTTClient_internal/html/structUnsuback__coll__graph.png index 5c300f00..db3eb556 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 54a9f8a0..fc806c25 100644 --- a/docs/MQTTClient_internal/html/structcond__type__struct.html +++ b/docs/MQTTClient_internal/html/structcond__type__struct.html @@ -84,7 +84,7 @@ pthread_mutex_t mutex< diff --git a/docs/MQTTClient_internal/html/structframeData.html b/docs/MQTTClient_internal/html/structframeData.html index 268fb6c7..47e42256 100644 --- a/docs/MQTTClient_internal/html/structframeData.html +++ b/docs/MQTTClient_internal/html/structframeData.html @@ -105,7 +105,7 @@ size_t wsbuf0len diff --git a/docs/MQTTClient_internal/html/structnameToType.html b/docs/MQTTClient_internal/html/structnameToType.html index a27e38b6..3bc56f44 100644 --- a/docs/MQTTClient_internal/html/structnameToType.html +++ b/docs/MQTTClient_internal/html/structnameToType.html @@ -84,7 +84,7 @@ enum MQTTPropertyTypes typ diff --git a/docs/MQTTClient_internal/html/structnetworkHandles.html b/docs/MQTTClient_internal/html/structnetworkHandles.html index e08e5dee..4f7f427b 100644 --- a/docs/MQTTClient_internal/html/structnetworkHandles.html +++ b/docs/MQTTClient_internal/html/structnetworkHandles.html @@ -73,8 +73,8 @@ Collaboration diagram for networkHandles:
    Collaboration graph
    - - + +
    [legend]
    @@ -115,7 +115,7 @@ const MQTTClient_nameValue diff --git a/docs/MQTTClient_internal/html/structnetworkHandles__coll__graph.map b/docs/MQTTClient_internal/html/structnetworkHandles__coll__graph.map index d19ab76e..07f9d22c 100644 --- a/docs/MQTTClient_internal/html/structnetworkHandles__coll__graph.map +++ b/docs/MQTTClient_internal/html/structnetworkHandles__coll__graph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/structnetworkHandles__coll__graph.png b/docs/MQTTClient_internal/html/structnetworkHandles__coll__graph.png index 0726f899..8e0ac9a0 100644 Binary files a/docs/MQTTClient_internal/html/structnetworkHandles__coll__graph.png and b/docs/MQTTClient_internal/html/structnetworkHandles__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structpending__write.html b/docs/MQTTClient_internal/html/structpending__write.html index 98932680..01b71302 100644 --- a/docs/MQTTClient_internal/html/structpending__write.html +++ b/docs/MQTTClient_internal/html/structpending__write.html @@ -73,8 +73,8 @@ Collaboration diagram for pending_write:
    Collaboration graph
    - - + +
    [legend]
    @@ -93,7 +93,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structpending__write__coll__graph.map b/docs/MQTTClient_internal/html/structpending__write__coll__graph.map index 827edb85..8fafc614 100644 --- a/docs/MQTTClient_internal/html/structpending__write__coll__graph.map +++ b/docs/MQTTClient_internal/html/structpending__write__coll__graph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/structpending__write__coll__graph.png b/docs/MQTTClient_internal/html/structpending__write__coll__graph.png index f12a71af..dffbbd92 100644 Binary files a/docs/MQTTClient_internal/html/structpending__write__coll__graph.png and b/docs/MQTTClient_internal/html/structpending__write__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structpending__writes.html b/docs/MQTTClient_internal/html/structpending__writes.html index f6720f47..606df577 100644 --- a/docs/MQTTClient_internal/html/structpending__writes.html +++ b/docs/MQTTClient_internal/html/structpending__writes.html @@ -96,7 +96,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structprops__rc__parms.html b/docs/MQTTClient_internal/html/structprops__rc__parms.html index e3a06ffa..ae8414c2 100644 --- a/docs/MQTTClient_internal/html/structprops__rc__parms.html +++ b/docs/MQTTClient_internal/html/structprops__rc__parms.html @@ -73,20 +73,20 @@ Collaboration diagram for props_rc_parms:
    Collaboration graph
    - - - - - - - - - - - - - - + + + + + + + + + + + + + +
    [legend]
    socket
    frees [5]
    @@ -108,7 +108,7 @@ enum MQTTReasonCodes 
    reaso diff --git a/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.map b/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.map index ded45245..a7328d40 100644 --- a/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.map +++ b/docs/MQTTClient_internal/html/structprops__rc__parms__coll__graph.map @@ -1,16 +1,16 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + 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 6d7ab6de..add03aa3 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 9f94acd4..b1f6a391 100644 --- a/docs/MQTTClient_internal/html/structqEntry.html +++ b/docs/MQTTClient_internal/html/structqEntry.html @@ -73,12 +73,12 @@ Collaboration diagram for qEntry:
    Collaboration graph
    - - - - - - + + + + + +
    [legend]
    @@ -107,7 +107,7 @@ unsigned int  diff --git a/docs/MQTTClient_internal/html/structqEntry__coll__graph.map b/docs/MQTTClient_internal/html/structqEntry__coll__graph.map index f97c8a21..b6d4709b 100644 --- a/docs/MQTTClient_internal/html/structqEntry__coll__graph.map +++ b/docs/MQTTClient_internal/html/structqEntry__coll__graph.map @@ -1,8 +1,8 @@ - - - - - - + + + + + + diff --git a/docs/MQTTClient_internal/html/structqEntry__coll__graph.png b/docs/MQTTClient_internal/html/structqEntry__coll__graph.png index a67eb634..14a21df6 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 7afc3ac4..6962a528 100644 --- a/docs/MQTTClient_internal/html/structsocket__queue.html +++ b/docs/MQTTClient_internal/html/structsocket__queue.html @@ -102,7 +102,7 @@ char *  diff --git a/docs/MQTTClient_internal/html/structstackEntry.html b/docs/MQTTClient_internal/html/structstackEntry.html index 72e61148..5a94cd9a 100644 --- a/docs/MQTTClient_internal/html/structstackEntry.html +++ b/docs/MQTTClient_internal/html/structstackEntry.html @@ -87,7 +87,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structstorageElement.html b/docs/MQTTClient_internal/html/structstorageElement.html index c06fb53b..dfe41977 100644 --- a/docs/MQTTClient_internal/html/structstorageElement.html +++ b/docs/MQTTClient_internal/html/structstorageElement.html @@ -99,7 +99,7 @@ size_t 
    seqno buf
    line
    diff --git a/docs/MQTTClient_internal/html/structthreadEntry.html b/docs/MQTTClient_internal/html/structthreadEntry.html index 15e2946b..d453ec2b 100644 --- a/docs/MQTTClient_internal/html/structthreadEntry.html +++ b/docs/MQTTClient_internal/html/structthreadEntry.html @@ -73,8 +73,8 @@ Collaboration diagram for threadEntry:
    Collaboration graph
    - - + +
    [legend]
    @@ -99,7 +99,7 @@ int  diff --git a/docs/MQTTClient_internal/html/structthreadEntry__coll__graph.map b/docs/MQTTClient_internal/html/structthreadEntry__coll__graph.map index 39dfa14c..94e6c5c1 100644 --- a/docs/MQTTClient_internal/html/structthreadEntry__coll__graph.map +++ b/docs/MQTTClient_internal/html/structthreadEntry__coll__graph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/structthreadEntry__coll__graph.png b/docs/MQTTClient_internal/html/structthreadEntry__coll__graph.png index 92d3926e..5bd5950f 100644 Binary files a/docs/MQTTClient_internal/html/structthreadEntry__coll__graph.png and b/docs/MQTTClient_internal/html/structthreadEntry__coll__graph.png differ diff --git a/docs/MQTTClient_internal/html/structtraceEntry.html b/docs/MQTTClient_internal/html/structtraceEntry.html index c89f41da..1bc6e11e 100644 --- a/docs/MQTTClient_internal/html/structtraceEntry.html +++ b/docs/MQTTClient_internal/html/structtraceEntry.html @@ -108,7 +108,7 @@ enum LOG_LEVELS  diff --git a/docs/MQTTClient_internal/html/structws__frame.html b/docs/MQTTClient_internal/html/structws__frame.html index cf376b5b..4f80d563 100644 --- a/docs/MQTTClient_internal/html/structws__frame.html +++ b/docs/MQTTClient_internal/html/structws__frame.html @@ -91,7 +91,7 @@ size_t  diff --git a/docs/MQTTClient_internal/html/utf-8_8c.html b/docs/MQTTClient_internal/html/utf-8_8c.html index 8ea8fac7..5db95c87 100644 --- a/docs/MQTTClient_internal/html/utf-8_8c.html +++ b/docs/MQTTClient_internal/html/utf-8_8c.html @@ -82,9 +82,9 @@ Include dependency graph for utf-8.c:
    - - - + + +
    current_depth level< diff --git a/docs/MQTTClient_internal/html/structtrace__settings__type.html b/docs/MQTTClient_internal/html/structtrace__settings__type.html index 7fb97050..c88f1ec9 100644 --- a/docs/MQTTClient_internal/html/structtrace__settings__type.html +++ b/docs/MQTTClient_internal/html/structtrace__settings__type.html @@ -90,7 +90,7 @@ enum LOG_LEVELS  diff --git a/docs/MQTTClient_internal/html/structwillMessages.html b/docs/MQTTClient_internal/html/structwillMessages.html index d0e08186..f1330137 100644 --- a/docs/MQTTClient_internal/html/structwillMessages.html +++ b/docs/MQTTClient_internal/html/structwillMessages.html @@ -100,7 +100,7 @@ int qos
    diff --git a/docs/MQTTClient_internal/html/tabs.css b/docs/MQTTClient_internal/html/tabs.css index 85a0cd5b..7d45d36c 100644 --- a/docs/MQTTClient_internal/html/tabs.css +++ b/docs/MQTTClient_internal/html/tabs.css @@ -1 +1 @@ -.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0px/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0px 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0px 1px 1px rgba(255,255,255,0.9);color:#283A5D;outline:none}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a.current{color:#D23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media (min-width: 768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283A5D transparent transparent transparent;background:transparent;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0px 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;border-radius:0 !important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a:hover span.sub-arrow{border-color:#fff transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;border-radius:5px !important;box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0 !important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent #fff}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #D23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#D23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} diff --git a/docs/MQTTClient_internal/html/unionHeader.html b/docs/MQTTClient_internal/html/unionHeader.html index 42791a12..78b749cc 100644 --- a/docs/MQTTClient_internal/html/unionHeader.html +++ b/docs/MQTTClient_internal/html/unionHeader.html @@ -109,7 +109,7 @@ struct {
    @@ -221,8 +221,8 @@ Here is the call graph for this function:
    - - + +
    @@ -257,9 +257,9 @@ Here is the call graph for this function:
    - - - + + +
    @@ -297,7 +297,7 @@ Here is the call graph for this function: diff --git a/docs/MQTTClient_internal/html/utf-8_8c__incl.map b/docs/MQTTClient_internal/html/utf-8_8c__incl.map index 427fe2b1..90b8861e 100644 --- a/docs/MQTTClient_internal/html/utf-8_8c__incl.map +++ b/docs/MQTTClient_internal/html/utf-8_8c__incl.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/utf-8_8c__incl.png b/docs/MQTTClient_internal/html/utf-8_8c__incl.png index 4a86b33b..6bb04891 100644 Binary files a/docs/MQTTClient_internal/html/utf-8_8c__incl.png and b/docs/MQTTClient_internal/html/utf-8_8c__incl.png differ diff --git a/docs/MQTTClient_internal/html/utf-8_8c_a4f3cf77538d867bb5b421bcb687dccdf_cgraph.map b/docs/MQTTClient_internal/html/utf-8_8c_a4f3cf77538d867bb5b421bcb687dccdf_cgraph.map index 2bcca9f4..0b76369d 100644 --- a/docs/MQTTClient_internal/html/utf-8_8c_a4f3cf77538d867bb5b421bcb687dccdf_cgraph.map +++ b/docs/MQTTClient_internal/html/utf-8_8c_a4f3cf77538d867bb5b421bcb687dccdf_cgraph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/MQTTClient_internal/html/utf-8_8c_a4f3cf77538d867bb5b421bcb687dccdf_cgraph.png b/docs/MQTTClient_internal/html/utf-8_8c_a4f3cf77538d867bb5b421bcb687dccdf_cgraph.png index e69733ea..f488baf2 100644 Binary files a/docs/MQTTClient_internal/html/utf-8_8c_a4f3cf77538d867bb5b421bcb687dccdf_cgraph.png and b/docs/MQTTClient_internal/html/utf-8_8c_a4f3cf77538d867bb5b421bcb687dccdf_cgraph.png differ diff --git a/docs/MQTTClient_internal/html/utf-8_8c_ad2012627fca4b4bdd9f67bde49b0d1cb_cgraph.map b/docs/MQTTClient_internal/html/utf-8_8c_ad2012627fca4b4bdd9f67bde49b0d1cb_cgraph.map index 3f44660f..7fbbb294 100644 --- a/docs/MQTTClient_internal/html/utf-8_8c_ad2012627fca4b4bdd9f67bde49b0d1cb_cgraph.map +++ b/docs/MQTTClient_internal/html/utf-8_8c_ad2012627fca4b4bdd9f67bde49b0d1cb_cgraph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/MQTTClient_internal/html/utf-8_8c_ad2012627fca4b4bdd9f67bde49b0d1cb_cgraph.png b/docs/MQTTClient_internal/html/utf-8_8c_ad2012627fca4b4bdd9f67bde49b0d1cb_cgraph.png index ceb577dc..579d834c 100644 Binary files a/docs/MQTTClient_internal/html/utf-8_8c_ad2012627fca4b4bdd9f67bde49b0d1cb_cgraph.png and b/docs/MQTTClient_internal/html/utf-8_8c_ad2012627fca4b4bdd9f67bde49b0d1cb_cgraph.png differ