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 31c0c3ef4..981505597 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 @@   #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 @@   #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 @@

Return code: 0 length will topic

+ + +
+

◆ MQTTASYNC_COMMAND_IGNORED

+ +
+
+ + + + +
#define MQTTASYNC_COMMAND_IGNORED   -18
+
+
@@ -715,7 +731,7 @@

- +
#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}
@@ -2615,11 +2631,11 @@

@ MQTTREASONCODE_SUCCESS
Definition: MQTTReasonCodes.h:38

-
#define MQTTVERSION_5
Definition: MQTTAsync.h:207
-
#define MQTTVERSION_DEFAULT
Definition: MQTTAsync.h:195
+
#define MQTTVERSION_5
Definition: MQTTAsync.h:211
+
#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 98a67de54..b26e4fe24 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 @@
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 @@
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
int MQTTAsync_isConnected(MQTTAsync handle)
-
unsigned int protos_len
Definition: MQTTAsync.h:1151
+
unsigned int protos_len
Definition: MQTTAsync.h:1155
int MQTTAsync_waitForCompletion(MQTTAsync handle, MQTTAsync_token token, unsigned long timeout)
-
int * qosList
Definition: MQTTAsync.h:568
-
const MQTTAsync_nameValue * httpHeaders
Definition: MQTTAsync.h:1342
-
void * context
Definition: MQTTAsync.h:718
+
int * qosList
Definition: MQTTAsync.h:572
+
const MQTTAsync_nameValue * httpHeaders
Definition: MQTTAsync.h:1346
+
void * context
Definition: MQTTAsync.h:722
-
int sessionPresent
Definition: MQTTAsync.h:615
-
int MQTTAsync_token
Definition: MQTTAsync.h:249
-
int MQTTVersion
Definition: MQTTAsync.h:579
-
int allowDisconnectedSendAtAnyTime
Definition: MQTTAsync.h:960
-
int MQTTVersion
Definition: MQTTAsync.h:956
+
int sessionPresent
Definition: MQTTAsync.h:619
+
int MQTTAsync_token
Definition: MQTTAsync.h:253
+
int MQTTVersion
Definition: MQTTAsync.h:583
+
int allowDisconnectedSendAtAnyTime
Definition: MQTTAsync.h:964
+
int MQTTVersion
Definition: MQTTAsync.h:960
int MQTTAsync_setDisconnected(MQTTAsync handle, void *context, MQTTAsync_disconnected *co)
int MQTTAsync_createWithOptions(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context, MQTTAsync_createOptions *options)
-
int struct_version
Definition: MQTTAsync.h:946
+
int struct_version
Definition: MQTTAsync.h:950
MQTTAsync_nameValue * MQTTAsync_getVersionInfo(void)
int MQTTAsync_subscribe(MQTTAsync handle, const char *topic, int qos, MQTTAsync_responseOptions *response)
-
void * MQTTAsync
Definition: MQTTAsync.h:239
-
const char * httpProxy
Definition: MQTTAsync.h:1346
-
int struct_version
Definition: MQTTAsync.h:1182
-
char * serverURI
Definition: MQTTAsync.h:578
-
int sessionPresent
Definition: MQTTAsync.h:580
-
int do_openssl_init
Definition: MQTTAsync.h:224
+
void * MQTTAsync
Definition: MQTTAsync.h:243
+
const char * httpProxy
Definition: MQTTAsync.h:1350
+
int struct_version
Definition: MQTTAsync.h:1186
+
char * serverURI
Definition: MQTTAsync.h:582
+
int sessionPresent
Definition: MQTTAsync.h:584
+
int do_openssl_init
Definition: MQTTAsync.h:228
void MQTTAsync_setTraceCallback(MQTTAsync_traceCallback *callback)
int MQTTAsync_setMessageArrivedCallback(MQTTAsync handle, void *context, MQTTAsync_messageArrived *ma)
-
Definition: MQTTAsync.h:587
-
void MQTTAsync_deliveryComplete(void *context, MQTTAsync_token token)
Definition: MQTTAsync.h:378
+
Definition: MQTTAsync.h:591
+
void MQTTAsync_deliveryComplete(void *context, MQTTAsync_token token)
Definition: MQTTAsync.h:382
int MQTTAsync_isComplete(MQTTAsync handle, MQTTAsync_token token)
-
int cleanstart
Definition: MQTTAsync.h:1318
-
MQTTAsync_token token
Definition: MQTTAsync.h:592
-
int retained
Definition: MQTTAsync.h:300
-
Definition: MQTTAsync.h:533
-
const char * message
Definition: MQTTAsync.h:528
-
int struct_version
Definition: MQTTAsync.h:1055
+
int cleanstart
Definition: MQTTAsync.h:1322
+
MQTTAsync_token token
Definition: MQTTAsync.h:596
+
int retained
Definition: MQTTAsync.h:304
+
Definition: MQTTAsync.h:537
+
const char * message
Definition: MQTTAsync.h:532
+
int struct_version
Definition: MQTTAsync.h:1059
Definition: MQTTProperties.h:112
-
const char * trustStore
Definition: MQTTAsync.h:1058
-
MQTTProperties properties
Definition: MQTTAsync.h:740
-
int automaticReconnect
Definition: MQTTAsync.h:1299
-
const char * privateKey
Definition: MQTTAsync.h:1068
-
int struct_version
Definition: MQTTAsync.h:590
-
int msgid
Definition: MQTTAsync.h:313
-
int code
Definition: MQTTAsync.h:546
-
char *const * serverURIs
Definition: MQTTAsync.h:1288
-
char struct_id[4]
Definition: MQTTAsync.h:697
-
int packet_type
Definition: MQTTAsync.h:550
-
MQTTProperties properties
Definition: MQTTAsync.h:1422
+
const char * trustStore
Definition: MQTTAsync.h:1062
+
MQTTProperties properties
Definition: MQTTAsync.h:744
+
int automaticReconnect
Definition: MQTTAsync.h:1303
+
const char * privateKey
Definition: MQTTAsync.h:1072
+
int struct_version
Definition: MQTTAsync.h:594
+
int msgid
Definition: MQTTAsync.h:317
+
int code
Definition: MQTTAsync.h:550
+
char *const * serverURIs
Definition: MQTTAsync.h:1292
+
char struct_id[4]
Definition: MQTTAsync.h:701
+
int packet_type
Definition: MQTTAsync.h:554
+
MQTTProperties properties
Definition: MQTTAsync.h:1426
int MQTTAsync_setCallbacks(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl, MQTTAsync_messageArrived *ma, MQTTAsync_deliveryComplete *dc)
int MQTTAsync_sendMessage(MQTTAsync handle, const char *destinationName, const MQTTAsync_message *msg, MQTTAsync_responseOptions *response)
-
MQTTAsync_willOptions * will
Definition: MQTTAsync.h:1225
-
const char * CApath
Definition: MQTTAsync.h:1104
-
MQTTAsync_token token
Definition: MQTTAsync.h:524
+
MQTTAsync_willOptions * will
Definition: MQTTAsync.h:1229
+
const char * CApath
Definition: MQTTAsync.h:1108
+
MQTTAsync_token token
Definition: MQTTAsync.h:528
int MQTTAsync_send(MQTTAsync handle, const char *destinationName, int payloadlen, const void *payload, int qos, int retained, MQTTAsync_responseOptions *response)
-
Definition: MQTTAsync.h:1043
+
Definition: MQTTAsync.h:1047
void * MQTTAsync_malloc(size_t size)
int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions *options)
-
@ MQTTASYNC_TRACE_SEVERE
Definition: MQTTAsync.h:1680
+
@ MQTTASYNC_TRACE_SEVERE
Definition: MQTTAsync.h:1684
int MQTTAsync_subscribeMany(MQTTAsync handle, int count, char *const *topic, const int *qos, MQTTAsync_responseOptions *response)
-
MQTTProperties * willProperties
Definition: MQTTAsync.h:1326
-
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1332
-
int payloadlen
Definition: MQTTAsync.h:265
-
int sslVersion
Definition: MQTTAsync.h:1090
-
int MQTTVersion
Definition: MQTTAsync.h:614
-
const char * username
Definition: MQTTAsync.h:463
-
const char * keyStore
Definition: MQTTAsync.h:1063
+
MQTTProperties * willProperties
Definition: MQTTAsync.h:1330
+
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1336
+
int payloadlen
Definition: MQTTAsync.h:269
+
int sslVersion
Definition: MQTTAsync.h:1094
+
int MQTTVersion
Definition: MQTTAsync.h:618
+
const char * username
Definition: MQTTAsync.h:467
+
const char * keyStore
Definition: MQTTAsync.h:1067
void MQTTAsync_destroy(MQTTAsync *handle)
int MQTTAsync_unsubscribeMany(MQTTAsync handle, int count, char *const *topic, MQTTAsync_responseOptions *response)
-
int serverURIcount
Definition: MQTTAsync.h:1276
-
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1438
-
int len
Definition: MQTTAsync.h:470
-
MQTTAsync_message message
Definition: MQTTAsync.h:607
-
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1338
-
int connectTimeout
Definition: MQTTAsync.h:1241
-
MQTTAsync_token token
Definition: MQTTAsync.h:540
+
int serverURIcount
Definition: MQTTAsync.h:1280
+
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1442
+
int len
Definition: MQTTAsync.h:474
+
MQTTAsync_message message
Definition: MQTTAsync.h:611
+
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:1342
+
int connectTimeout
Definition: MQTTAsync.h:1245
+
MQTTAsync_token token
Definition: MQTTAsync.h:544
void MQTTAsync_setTraceLevel(enum MQTTASYNC_TRACE_LEVELS level)
-
const char * httpsProxy
Definition: MQTTAsync.h:1350
-
MQTTProperties * connectProperties
Definition: MQTTAsync.h:1322
-
int maxRetryInterval
Definition: MQTTAsync.h:1307
-
Definition: MQTTAsync.h:556
+
const char * httpsProxy
Definition: MQTTAsync.h:1354
+
MQTTProperties * connectProperties
Definition: MQTTAsync.h:1326
+
int maxRetryInterval
Definition: MQTTAsync.h:1311
+
Definition: MQTTAsync.h:560
int MQTTAsync_setBeforePersistenceWrite(MQTTAsync handle, void *context, MQTTPersistence_beforeWrite *co)
int MQTTAsync_setConnectionLostCallback(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl)
-
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:1406
-
@ MQTTASYNC_TRACE_FATAL
Definition: MQTTAsync.h:1681
+
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:1410
+
@ MQTTASYNC_TRACE_FATAL
Definition: MQTTAsync.h:1685
-
void MQTTAsync_onFailure(void *context, MQTTAsync_failureData *response)
Definition: MQTTAsync.h:672
-
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:736
+
void MQTTAsync_onFailure(void *context, MQTTAsync_failureData *response)
Definition: MQTTAsync.h:676
+
MQTTAsync_onFailure5 * onFailure5
Definition: MQTTAsync.h:740
int MQTTAsync_setUpdateConnectOptions(MQTTAsync handle, void *context, MQTTAsync_updateConnectOptions *co)
-
void MQTTAsync_traceCallback(enum MQTTASYNC_TRACE_LEVELS level, char *message)
Definition: MQTTAsync.h:1701
+
void MQTTAsync_traceCallback(enum MQTTASYNC_TRACE_LEVELS level, char *message)
Definition: MQTTAsync.h:1705
int MQTTAsync_getPendingTokens(MQTTAsync handle, MQTTAsync_token **tokens)
-
int MQTTAsync_updateConnectOptions(void *context, MQTTAsync_connectData *data)
Definition: MQTTAsync.h:483
-
int retryInterval
Definition: MQTTAsync.h:1249
-
void * context
Definition: MQTTAsync.h:1418
-
MQTTAsync_message message
Definition: MQTTAsync.h:572
-
int minRetryInterval
Definition: MQTTAsync.h:1303
-
int struct_version
Definition: MQTTAsync.h:538
-
Definition: MQTTAsync.h:694
-
Definition: MQTTAsync.h:451
-
void * ssl_psk_context
Definition: MQTTAsync.h:1129
-
MQTTProperties properties
Definition: MQTTAsync.h:594
-
@ MQTTASYNC_TRACE_MAXIMUM
Definition: MQTTAsync.h:1675
+
int MQTTAsync_updateConnectOptions(void *context, MQTTAsync_connectData *data)
Definition: MQTTAsync.h:487
+
int retryInterval
Definition: MQTTAsync.h:1253
+
void * context
Definition: MQTTAsync.h:1422
+
MQTTAsync_message message
Definition: MQTTAsync.h:576
+
int minRetryInterval
Definition: MQTTAsync.h:1307
+
int struct_version
Definition: MQTTAsync.h:542
+
Definition: MQTTAsync.h:698
+
Definition: MQTTAsync.h:455
+
void * ssl_psk_context
Definition: MQTTAsync.h:1133
+
MQTTProperties properties
Definition: MQTTAsync.h:598
+
@ MQTTASYNC_TRACE_MAXIMUM
Definition: MQTTAsync.h:1679
int MQTTPersistence_beforeWrite(void *context, int bufcount, char *buffers[], int buflens[])
Definition: MQTTClientPersistence.h:264
int MQTTAsync_create(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
-
const char * topicName
Definition: MQTTAsync.h:1004
-
void MQTTAsync_connectionLost(void *context, char *cause)
Definition: MQTTAsync.h:398
+
const char * topicName
Definition: MQTTAsync.h:1008
+
void MQTTAsync_connectionLost(void *context, char *cause)
Definition: MQTTAsync.h:402
void MQTTAsync_global_init(MQTTAsync_init_options *inits)
-
Definition: MQTTAsync.h:217
-
void MQTTAsync_onFailure5(void *context, MQTTAsync_failureData5 *response)
Definition: MQTTAsync.h:687
-
int keepAliveInterval
Definition: MQTTAsync.h:1193
-
char * destinationName
Definition: MQTTAsync.h:608
-
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1432
-
const char * enabledCipherSuites
Definition: MQTTAsync.h:1081
-
int qos
Definition: MQTTAsync.h:281
+
Definition: MQTTAsync.h:221
+
void MQTTAsync_onFailure5(void *context, MQTTAsync_failureData5 *response)
Definition: MQTTAsync.h:691
+
int keepAliveInterval
Definition: MQTTAsync.h:1197
+
char * destinationName
Definition: MQTTAsync.h:612
+
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:1436
+
const char * enabledCipherSuites
Definition: MQTTAsync.h:1085
+
int qos
Definition: MQTTAsync.h:285
-
int struct_version
Definition: MQTTAsync.h:1395
+
int struct_version
Definition: MQTTAsync.h:1399
int MQTTAsync_unsubscribe(MQTTAsync handle, const char *topic, MQTTAsync_responseOptions *response)
-
void MQTTAsync_disconnected(void *context, MQTTProperties *properties, enum MQTTReasonCodes reasonCode)
Definition: MQTTAsync.h:430
-
int MQTTAsync_messageArrived(void *context, char *topicName, int topicLen, MQTTAsync_message *message)
Definition: MQTTAsync.h:355
-
Definition: MQTTAsync.h:995
-
void * payload
Definition: MQTTAsync.h:267
-
@ MQTTASYNC_TRACE_MINIMUM
Definition: MQTTAsync.h:1677
-
MQTTAsync_token token
Definition: MQTTAsync.h:724
+
void MQTTAsync_disconnected(void *context, MQTTProperties *properties, enum MQTTReasonCodes reasonCode)
Definition: MQTTAsync.h:434
+
int MQTTAsync_messageArrived(void *context, char *topicName, int topicLen, MQTTAsync_message *message)
Definition: MQTTAsync.h:359
+
Definition: MQTTAsync.h:999
+
void * payload
Definition: MQTTAsync.h:271
+
@ MQTTASYNC_TRACE_MINIMUM
Definition: MQTTAsync.h:1681
+
MQTTAsync_token token
Definition: MQTTAsync.h:728
int MQTTAsync_reconnect(MQTTAsync handle)
-
const void * data
Definition: MQTTAsync.h:1313
-
const void * data
Definition: MQTTAsync.h:471
-
MQTTASYNC_TRACE_LEVELS
Definition: MQTTAsync.h:1673
-
int struct_version
Definition: MQTTAsync.h:1002
-
const char * name
Definition: MQTTAsync.h:1159
+
const void * data
Definition: MQTTAsync.h:1317
+
const void * data
Definition: MQTTAsync.h:475
+
MQTTASYNC_TRACE_LEVELS
Definition: MQTTAsync.h:1677
+
int struct_version
Definition: MQTTAsync.h:1006
+
const char * name
Definition: MQTTAsync.h:1163
int MQTTAsync_setDeliveryCompleteCallback(MQTTAsync handle, void *context, MQTTAsync_deliveryComplete *dc)
-
char * destinationName
Definition: MQTTAsync.h:573
+
char * destinationName
Definition: MQTTAsync.h:577
int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
-
int sendWhileDisconnected
Definition: MQTTAsync.h:948
-
Definition: MQTTAsync.h:257
-
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:712
-
int MQTTVersion
Definition: MQTTAsync.h:1295
-
const unsigned char * protos
Definition: MQTTAsync.h:1145
-
int struct_version
Definition: MQTTAsync.h:456
-
const char * username
Definition: MQTTAsync.h:1231
+
int sendWhileDisconnected
Definition: MQTTAsync.h:952
+
Definition: MQTTAsync.h:261
+
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:716
+
int MQTTVersion
Definition: MQTTAsync.h:1299
+
const unsigned char * protos
Definition: MQTTAsync.h:1149
+
int struct_version
Definition: MQTTAsync.h:460
+
const char * username
Definition: MQTTAsync.h:1235
void MQTTAsync_free(void *ptr)
-
Definition: MQTTAsync.h:1168
-
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:730
-
MQTTProperties properties
Definition: MQTTAsync.h:544
-
@ MQTTASYNC_TRACE_PROTOCOL
Definition: MQTTAsync.h:1678
+
Definition: MQTTAsync.h:1172
+
MQTTAsync_onSuccess5 * onSuccess5
Definition: MQTTAsync.h:734
+
MQTTProperties properties
Definition: MQTTAsync.h:548
+
@ MQTTASYNC_TRACE_PROTOCOL
Definition: MQTTAsync.h:1682
const char * MQTTAsync_strerror(int code)
-
int verify
Definition: MQTTAsync.h:1097
-
char * serverURI
Definition: MQTTAsync.h:613
-
Definition: MQTTAsync.h:1157
-
const char * privateKeyPassword
Definition: MQTTAsync.h:1071
-
Definition: MQTTAsync.h:521
+
int verify
Definition: MQTTAsync.h:1101
+
char * serverURI
Definition: MQTTAsync.h:617
+
Definition: MQTTAsync.h:1161
+
const char * privateKeyPassword
Definition: MQTTAsync.h:1075
+
Definition: MQTTAsync.h:525
Definition: MQTTSubscribeOpts.h:21
-
int disableDefaultTrustStore
Definition: MQTTAsync.h:1136
-
const void * data
Definition: MQTTAsync.h:1020
-
int maxInflight
Definition: MQTTAsync.h:1219
-
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:706
-
MQTTAsync_SSLOptions * ssl
Definition: MQTTAsync.h:1254
+
int disableDefaultTrustStore
Definition: MQTTAsync.h:1140
+
const void * data
Definition: MQTTAsync.h:1024
+
int maxInflight
Definition: MQTTAsync.h:1223
+
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:710
+
MQTTAsync_SSLOptions * ssl
Definition: MQTTAsync.h:1258
struct MQTTAsync_responseOptions MQTTAsync_responseOptions
-
int persistQoS0
Definition: MQTTAsync.h:972
-
int retained
Definition: MQTTAsync.h:1010
-
int maxBufferedMessages
Definition: MQTTAsync.h:950
-
int deleteOldestMessages
Definition: MQTTAsync.h:964
-
enum MQTTReasonCodes * reasonCodes
Definition: MQTTAsync.h:602
-
const char * password
Definition: MQTTAsync.h:1237
-
int code
Definition: MQTTAsync.h:526
-
MQTTSubscribe_options subscribeOptions
Definition: MQTTAsync.h:744
-
const char * message
Definition: MQTTAsync.h:1006
-
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1412
-
const char * value
Definition: MQTTAsync.h:1160
+
int persistQoS0
Definition: MQTTAsync.h:976
+
int retained
Definition: MQTTAsync.h:1014
+
int maxBufferedMessages
Definition: MQTTAsync.h:954
+
int deleteOldestMessages
Definition: MQTTAsync.h:968
+
enum MQTTReasonCodes * reasonCodes
Definition: MQTTAsync.h:606
+
const char * password
Definition: MQTTAsync.h:1241
+
int code
Definition: MQTTAsync.h:530
+
MQTTSubscribe_options subscribeOptions
Definition: MQTTAsync.h:748
+
const char * message
Definition: MQTTAsync.h:1010
+
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1416
+
const char * value
Definition: MQTTAsync.h:1164
int MQTTAsync_setConnected(MQTTAsync handle, void *context, MQTTAsync_connected *co)
-
const char * message
Definition: MQTTAsync.h:548
-
Definition: MQTTAsync.h:1390
-
MQTTSubscribe_options * subscribeOptionsList
Definition: MQTTAsync.h:753
+
const char * message
Definition: MQTTAsync.h:552
+
Definition: MQTTAsync.h:1394
+
MQTTSubscribe_options * subscribeOptionsList
Definition: MQTTAsync.h:757
int MQTTPersistence_afterRead(void *context, char **buffer, int *buflen)
Definition: MQTTClientPersistence.h:275
-
int subscribeOptionsCount
Definition: MQTTAsync.h:749
-
int len
Definition: MQTTAsync.h:1312
-
@ MQTTASYNC_TRACE_ERROR
Definition: MQTTAsync.h:1679
-
int struct_version
Definition: MQTTAsync.h:222
-
void MQTTAsync_connected(void *context, char *cause)
Definition: MQTTAsync.h:416
-
int enableServerCertAuth
Definition: MQTTAsync.h:1084
+
int subscribeOptionsCount
Definition: MQTTAsync.h:753
+
int len
Definition: MQTTAsync.h:1316
+
@ MQTTASYNC_TRACE_ERROR
Definition: MQTTAsync.h:1683
+
int struct_version
Definition: MQTTAsync.h:226
+
void MQTTAsync_connected(void *context, char *cause)
Definition: MQTTAsync.h:420
+
int enableServerCertAuth
Definition: MQTTAsync.h:1088
int MQTTAsync_setAfterPersistenceRead(MQTTAsync handle, void *context, MQTTPersistence_afterRead *co)
-
void MQTTAsync_onSuccess5(void *context, MQTTAsync_successData5 *response)
Definition: MQTTAsync.h:657
+
void MQTTAsync_onSuccess5(void *context, MQTTAsync_successData5 *response)
Definition: MQTTAsync.h:661
This structure represents a persistent data store, used to store outbound and inbound messages,...
-
int reasonCodeCount
Definition: MQTTAsync.h:601
-
int qos
Definition: MQTTAsync.h:565
-
int timeout
Definition: MQTTAsync.h:1400
-
int dup
Definition: MQTTAsync.h:307
-
MQTTProperties properties
Definition: MQTTAsync.h:317
-
int struct_version
Definition: MQTTAsync.h:263
-
int len
Definition: MQTTAsync.h:1019
-
void * ssl_error_context
Definition: MQTTAsync.h:1116
-
int struct_version
Definition: MQTTAsync.h:700
-
int qos
Definition: MQTTAsync.h:1015
-
MQTTAsync_token token
Definition: MQTTAsync.h:559
-
int cleansession
Definition: MQTTAsync.h:1215
-
int restoreMessages
Definition: MQTTAsync.h:968
-
@ MQTTASYNC_TRACE_MEDIUM
Definition: MQTTAsync.h:1676
+
int reasonCodeCount
Definition: MQTTAsync.h:605
+
int qos
Definition: MQTTAsync.h:569
+
int timeout
Definition: MQTTAsync.h:1404
+
int dup
Definition: MQTTAsync.h:311
+
MQTTProperties properties
Definition: MQTTAsync.h:321
+
int struct_version
Definition: MQTTAsync.h:267
+
int len
Definition: MQTTAsync.h:1023
+
void * ssl_error_context
Definition: MQTTAsync.h:1120
+
int struct_version
Definition: MQTTAsync.h:704
+
int qos
Definition: MQTTAsync.h:1019
+
MQTTAsync_token token
Definition: MQTTAsync.h:563
+
int cleansession
Definition: MQTTAsync.h:1219
+
int restoreMessages
Definition: MQTTAsync.h:972
+
@ MQTTASYNC_TRACE_MEDIUM
Definition: MQTTAsync.h:1680
void MQTTAsync_freeMessage(MQTTAsync_message **msg)
MQTTReasonCodes
Definition: MQTTReasonCodes.h:23
-
void * context
Definition: MQTTAsync.h:1272
-
void MQTTAsync_onSuccess(void *context, MQTTAsync_successData *response)
Definition: MQTTAsync.h:641
-
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1266
-
Definition: MQTTAsync.h:937
-
MQTTAsync_onSuccess * onSuccess
Definition: MQTTAsync.h:1260
+
void * context
Definition: MQTTAsync.h:1276
+
void MQTTAsync_onSuccess(void *context, MQTTAsync_successData *response)
Definition: MQTTAsync.h:645
+
MQTTAsync_onFailure * onFailure
Definition: MQTTAsync.h:1270
+
Definition: MQTTAsync.h:941
+
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 597fa2b86..66f8f9bba 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 @@

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 6eef992a0..6bafaae69 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 @@
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 8c1c1fb1d..4dc22b95f 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 @@

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 71a5191d0..82949909f 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 @@
@ 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 d05ecc498..81470e689 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 @@

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 0f01b09f0..af4525b70 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 @@
@ 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 82feb1600..381e154bd 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 @@

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 3b0254a0f..5498f30a8 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 @@
char struct_id[4]
Definition: MQTTSubscribeOpts.h:38
diff --git a/docs/MQTTAsync/html/annotated.html b/docs/MQTTAsync/html/annotated.html index c937f91fd..019cd0f94 100644 --- a/docs/MQTTAsync/html/annotated.html +++ b/docs/MQTTAsync/html/annotated.html @@ -92,7 +92,7 @@ diff --git a/docs/MQTTAsync/html/async.html b/docs/MQTTAsync/html/async.html index e4ee78c80..57272624f 100644 --- a/docs/MQTTAsync/html/async.html +++ b/docs/MQTTAsync/html/async.html @@ -71,7 +71,7 @@ diff --git a/docs/MQTTAsync/html/auto_reconnect.html b/docs/MQTTAsync/html/auto_reconnect.html index 9e2b31279..504bbd43e 100644 --- a/docs/MQTTAsync/html/auto_reconnect.html +++ b/docs/MQTTAsync/html/auto_reconnect.html @@ -73,7 +73,7 @@ diff --git a/docs/MQTTAsync/html/callbacks.html b/docs/MQTTAsync/html/callbacks.html index 3cc39d5e5..9542d8127 100644 --- a/docs/MQTTAsync/html/callbacks.html +++ b/docs/MQTTAsync/html/callbacks.html @@ -72,7 +72,7 @@ diff --git a/docs/MQTTAsync/html/classes.html b/docs/MQTTAsync/html/classes.html index 1455250ed..fd2162d2a 100644 --- a/docs/MQTTAsync/html/classes.html +++ b/docs/MQTTAsync/html/classes.html @@ -100,7 +100,7 @@ diff --git a/docs/MQTTAsync/html/files.html b/docs/MQTTAsync/html/files.html index 7d1c37d62..f52609453 100644 --- a/docs/MQTTAsync/html/files.html +++ b/docs/MQTTAsync/html/files.html @@ -78,7 +78,7 @@ diff --git a/docs/MQTTAsync/html/functions.html b/docs/MQTTAsync/html/functions.html index 2adb3ff78..b5d87dbd3 100644 --- a/docs/MQTTAsync/html/functions.html +++ b/docs/MQTTAsync/html/functions.html @@ -525,7 +525,7 @@

- w -

    diff --git a/docs/MQTTAsync/html/functions_vars.html b/docs/MQTTAsync/html/functions_vars.html index f9cc847fd..e6db6b639 100644 --- a/docs/MQTTAsync/html/functions_vars.html +++ b/docs/MQTTAsync/html/functions_vars.html @@ -525,7 +525,7 @@

    - w -

      diff --git a/docs/MQTTAsync/html/globals.html b/docs/MQTTAsync/html/globals.html index 6c00c9b18..b63ace857 100644 --- a/docs/MQTTAsync/html/globals.html +++ b/docs/MQTTAsync/html/globals.html @@ -110,6 +110,9 @@

      - m -

      • MQTTAsync_callOptions_initializer : MQTTAsync.h
      • +
      • MQTTASYNC_COMMAND_IGNORED +: MQTTAsync.h +
      • MQTTAsync_connect() : MQTTAsync.h
      • @@ -696,7 +699,7 @@

        - m -

          diff --git a/docs/MQTTAsync/html/globals_defs.html b/docs/MQTTAsync/html/globals_defs.html index b18121f9c..306b88026 100644 --- a/docs/MQTTAsync/html/globals_defs.html +++ b/docs/MQTTAsync/html/globals_defs.html @@ -104,6 +104,9 @@

          - m -

          • MQTTAsync_callOptions_initializer : MQTTAsync.h
          • +
          • MQTTASYNC_COMMAND_IGNORED +: MQTTAsync.h +
          • MQTTAsync_connectData_initializer : MQTTAsync.h
          • @@ -225,7 +228,7 @@

            - m -

              diff --git a/docs/MQTTAsync/html/globals_enum.html b/docs/MQTTAsync/html/globals_enum.html index b668dfd8e..2b6f455f8 100644 --- a/docs/MQTTAsync/html/globals_enum.html +++ b/docs/MQTTAsync/html/globals_enum.html @@ -79,7 +79,7 @@ diff --git a/docs/MQTTAsync/html/globals_eval.html b/docs/MQTTAsync/html/globals_eval.html index 5d027817a..0c4897639 100644 --- a/docs/MQTTAsync/html/globals_eval.html +++ b/docs/MQTTAsync/html/globals_eval.html @@ -327,7 +327,7 @@

              - m -

                diff --git a/docs/MQTTAsync/html/globals_func.html b/docs/MQTTAsync/html/globals_func.html index 765bdbeb4..d5636ff92 100644 --- a/docs/MQTTAsync/html/globals_func.html +++ b/docs/MQTTAsync/html/globals_func.html @@ -213,7 +213,7 @@

                - m -

                  diff --git a/docs/MQTTAsync/html/globals_p.html b/docs/MQTTAsync/html/globals_p.html index dfb3e18cb..e58ea58b8 100644 --- a/docs/MQTTAsync/html/globals_p.html +++ b/docs/MQTTAsync/html/globals_p.html @@ -93,7 +93,7 @@

                  - p -

                    diff --git a/docs/MQTTAsync/html/globals_type.html b/docs/MQTTAsync/html/globals_type.html index d22efb97a..20906c6e6 100644 --- a/docs/MQTTAsync/html/globals_type.html +++ b/docs/MQTTAsync/html/globals_type.html @@ -148,7 +148,7 @@ diff --git a/docs/MQTTAsync/html/index.html b/docs/MQTTAsync/html/index.html index de83a176b..647c9deb1 100644 --- a/docs/MQTTAsync/html/index.html +++ b/docs/MQTTAsync/html/index.html @@ -66,7 +66,7 @@
                    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 @@
                    diff --git a/docs/MQTTAsync/html/offline_publish.html b/docs/MQTTAsync/html/offline_publish.html index dc0be0042..152d2c3b0 100644 --- a/docs/MQTTAsync/html/offline_publish.html +++ b/docs/MQTTAsync/html/offline_publish.html @@ -73,7 +73,7 @@
                    diff --git a/docs/MQTTAsync/html/pages.html b/docs/MQTTAsync/html/pages.html index cca998a26..99f6f7177 100644 --- a/docs/MQTTAsync/html/pages.html +++ b/docs/MQTTAsync/html/pages.html @@ -82,7 +82,7 @@
                    diff --git a/docs/MQTTAsync/html/publish.html b/docs/MQTTAsync/html/publish.html index cc788bfc1..cde20a3c3 100644 --- a/docs/MQTTAsync/html/publish.html +++ b/docs/MQTTAsync/html/publish.html @@ -235,47 +235,47 @@
                    }
                    -
                    void * context
                    Definition: MQTTAsync.h:718
                    -
                    #define MQTTAsync_message_initializer
                    Definition: MQTTAsync.h:320
                    -
                    #define MQTTAsync_responseOptions_initializer
                    Definition: MQTTAsync.h:756
                    -
                    void * MQTTAsync
                    Definition: MQTTAsync.h:239
                    -
                    int retained
                    Definition: MQTTAsync.h:300
                    +
                    void * context
                    Definition: MQTTAsync.h:722
                    +
                    #define MQTTAsync_message_initializer
                    Definition: MQTTAsync.h:324
                    +
                    #define MQTTAsync_responseOptions_initializer
                    Definition: MQTTAsync.h:760
                    +
                    void * MQTTAsync
                    Definition: MQTTAsync.h:243
                    +
                    int retained
                    Definition: MQTTAsync.h:304
                    int MQTTAsync_setCallbacks(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl, MQTTAsync_messageArrived *ma, MQTTAsync_deliveryComplete *dc)
                    int MQTTAsync_sendMessage(MQTTAsync handle, const char *destinationName, const MQTTAsync_message *msg, MQTTAsync_responseOptions *response)
                    -
                    MQTTAsync_token token
                    Definition: MQTTAsync.h:524
                    +
                    MQTTAsync_token token
                    Definition: MQTTAsync.h:528
                    int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions *options)
                    #define MQTTCLIENT_PERSISTENCE_NONE
                    Definition: MQTTClientPersistence.h:74
                    -
                    int payloadlen
                    Definition: MQTTAsync.h:265
                    +
                    int payloadlen
                    Definition: MQTTAsync.h:269
                    void MQTTAsync_destroy(MQTTAsync *handle)
                    -
                    Definition: MQTTAsync.h:556
                    -
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:1406
                    +
                    Definition: MQTTAsync.h:560
                    +
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:1410
                    #define MQTTASYNC_SUCCESS
                    Definition: MQTTAsync.h:113
                    -
                    void * context
                    Definition: MQTTAsync.h:1418
                    -
                    Definition: MQTTAsync.h:694
                    +
                    void * context
                    Definition: MQTTAsync.h:1422
                    +
                    Definition: MQTTAsync.h:698
                    int MQTTAsync_create(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
                    -
                    #define MQTTAsync_disconnectOptions_initializer
                    Definition: MQTTAsync.h:1441
                    -
                    int keepAliveInterval
                    Definition: MQTTAsync.h:1193
                    -
                    int qos
                    Definition: MQTTAsync.h:281
                    -
                    void * payload
                    Definition: MQTTAsync.h:267
                    +
                    #define MQTTAsync_disconnectOptions_initializer
                    Definition: MQTTAsync.h:1445
                    +
                    int keepAliveInterval
                    Definition: MQTTAsync.h:1197
                    +
                    int qos
                    Definition: MQTTAsync.h:285
                    +
                    void * payload
                    Definition: MQTTAsync.h:271
                    int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
                    -
                    Definition: MQTTAsync.h:257
                    -
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:712
                    -
                    Definition: MQTTAsync.h:1168
                    -
                    Definition: MQTTAsync.h:521
                    -
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:706
                    -
                    int code
                    Definition: MQTTAsync.h:526
                    -
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:1412
                    -
                    Definition: MQTTAsync.h:1390
                    -
                    #define MQTTAsync_connectOptions_initializer
                    Definition: MQTTAsync.h:1354
                    +
                    Definition: MQTTAsync.h:261
                    +
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:716
                    +
                    Definition: MQTTAsync.h:1172
                    +
                    Definition: MQTTAsync.h:525
                    +
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:710
                    +
                    int code
                    Definition: MQTTAsync.h:530
                    +
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:1416
                    +
                    Definition: MQTTAsync.h:1394
                    +
                    #define MQTTAsync_connectOptions_initializer
                    Definition: MQTTAsync.h:1358
                    -
                    MQTTAsync_token token
                    Definition: MQTTAsync.h:559
                    -
                    int cleansession
                    Definition: MQTTAsync.h:1215
                    -
                    void * context
                    Definition: MQTTAsync.h:1272
                    -
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:1266
                    -
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:1260
                    +
                    MQTTAsync_token token
                    Definition: MQTTAsync.h:563
                    +
                    int cleansession
                    Definition: MQTTAsync.h:1219
                    +
                    void * context
                    Definition: MQTTAsync.h:1276
                    +
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:1270
                    +
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:1264
                    diff --git a/docs/MQTTAsync/html/qos.html b/docs/MQTTAsync/html/qos.html index bfa43294c..4715bfcae 100644 --- a/docs/MQTTAsync/html/qos.html +++ b/docs/MQTTAsync/html/qos.html @@ -78,7 +78,7 @@ diff --git a/docs/MQTTAsync/html/search/all_10.js b/docs/MQTTAsync/html/search/all_10.js index 00443853d..3424d7b76 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 392127c0c..f719051e1 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 b8d2a2c08..a90ebcd01 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 d1fd7da1b..1a46d8dcd 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 84f4d93bd..263a52ee1 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 85a56a8c1..b58d60490 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 0c3c4c796..6d35bee29 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 82d557fee..bd1af27bb 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 411190e33..b1da2e2e2 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 0fe98a25d..dd3f88ef0 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 d5d689d1d..0ce0df748 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 4a9875a4e..a2ed747d9 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 74cbea510..2091fe888 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 ff81dfdce..5ac66b346 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 a6d2537a0..d86db693c 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 74b1d0bf8..9775d1360 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 df093d65a..7271a1ed0 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 64ad6f60a..039a623b7 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 627b665e5..21c3909a3 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 00ecc5512..e897c9be6 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 bfd99ab52..444b234dc 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 325cc971a..f5d40fe98 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 0b2dd8b28..dda17c230 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 2203c5550..f0d380238 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 f42aecdcc..57504ece1 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 b9bba5127..82869f000 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 b4898a97a..23cb502c9 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 cc9644762..ec0177583 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 512b50c7d..113ecf940 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 74840f277..fd0369077 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 ec58bb45a..41a3cb93d 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 23b8f1236..14d1d28a2 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 c5085a77b..14d1fd776 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 47ea789b6..c28895b2a 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 973992029..4ece7f7c8 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 8fd8b991a..2ce814656 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 bca057100..d7d1b8ffc 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 e09aec482..e6a3e4823 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 75f01aa65..f94913bfb 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 74fd59523..0ed96d15a 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 26eefa74d..3448f9a19 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 b335e53fc..c16b7bb88 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 7c38afe4c..b2d79dfec 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 f83dd36af..7bfe93735 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 0ea9b1b59..f5fb36804 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 4ec57b0ff..9eb376496 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 @@

                    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 3698d1433..367fa97e9 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 @@

                    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 08542dd0a..4644a2df2 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 @@

                    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 a9b90d300..ac5e7f5e5 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 @@

                    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 54da87c2f..e0b0d130d 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 @@

                    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 cd6de7a80..f72000b62 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 @@

                    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 cf0de52d6..e71fb6847 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 @@

                    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 0d65f9339..940cec15b 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 @@

                    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 7f44c111b..b04fe5730 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 @@

                    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 9017e6e73..9da585e05 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 @@

                    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 97392dba5..ac6018312 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 @@

                    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 8c55055f7..3580903a3 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 @@

                    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 86088d5dd..88d554648 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 @@

                    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 67a5fecf6..a8be5a0d8 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 @@

                    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 d89673f1b..83686d4ab 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 @@

                    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 d1be887ad..0e5f4529f 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 @@

                    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 7d4fb1606..c65f8f348 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 @@

                    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 538dd282f..772897fa0 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 @@

                    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 1ce4122cf..80afd2e75 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 @@

                    diff --git a/docs/MQTTAsync/html/subscribe.html b/docs/MQTTAsync/html/subscribe.html index e9251c8bb..efa856133 100644 --- a/docs/MQTTAsync/html/subscribe.html +++ b/docs/MQTTAsync/html/subscribe.html @@ -250,43 +250,43 @@
                    }
                    -
                    void * context
                    Definition: MQTTAsync.h:718
                    +
                    void * context
                    Definition: MQTTAsync.h:722
                    int MQTTAsync_subscribe(MQTTAsync handle, const char *topic, int qos, MQTTAsync_responseOptions *response)
                    -
                    #define MQTTAsync_responseOptions_initializer
                    Definition: MQTTAsync.h:756
                    -
                    void * MQTTAsync
                    Definition: MQTTAsync.h:239
                    +
                    #define MQTTAsync_responseOptions_initializer
                    Definition: MQTTAsync.h:760
                    +
                    void * MQTTAsync
                    Definition: MQTTAsync.h:243
                    int MQTTAsync_setCallbacks(MQTTAsync handle, void *context, MQTTAsync_connectionLost *cl, MQTTAsync_messageArrived *ma, MQTTAsync_deliveryComplete *dc)
                    int MQTTAsync_disconnect(MQTTAsync handle, const MQTTAsync_disconnectOptions *options)
                    #define MQTTCLIENT_PERSISTENCE_NONE
                    Definition: MQTTClientPersistence.h:74
                    -
                    int payloadlen
                    Definition: MQTTAsync.h:265
                    +
                    int payloadlen
                    Definition: MQTTAsync.h:269
                    void MQTTAsync_destroy(MQTTAsync *handle)
                    -
                    Definition: MQTTAsync.h:556
                    -
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:1406
                    +
                    Definition: MQTTAsync.h:560
                    +
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:1410
                    #define MQTTASYNC_SUCCESS
                    Definition: MQTTAsync.h:113
                    -
                    Definition: MQTTAsync.h:694
                    +
                    Definition: MQTTAsync.h:698
                    int MQTTAsync_create(MQTTAsync *handle, const char *serverURI, const char *clientId, int persistence_type, void *persistence_context)
                    -
                    #define MQTTAsync_disconnectOptions_initializer
                    Definition: MQTTAsync.h:1441
                    -
                    int keepAliveInterval
                    Definition: MQTTAsync.h:1193
                    -
                    void * payload
                    Definition: MQTTAsync.h:267
                    +
                    #define MQTTAsync_disconnectOptions_initializer
                    Definition: MQTTAsync.h:1445
                    +
                    int keepAliveInterval
                    Definition: MQTTAsync.h:1197
                    +
                    void * payload
                    Definition: MQTTAsync.h:271
                    int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions *options)
                    -
                    Definition: MQTTAsync.h:257
                    -
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:712
                    +
                    Definition: MQTTAsync.h:261
                    +
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:716
                    void MQTTAsync_free(void *ptr)
                    -
                    Definition: MQTTAsync.h:1168
                    -
                    Definition: MQTTAsync.h:521
                    -
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:706
                    -
                    int code
                    Definition: MQTTAsync.h:526
                    -
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:1412
                    -
                    Definition: MQTTAsync.h:1390
                    -
                    #define MQTTAsync_connectOptions_initializer
                    Definition: MQTTAsync.h:1354
                    +
                    Definition: MQTTAsync.h:1172
                    +
                    Definition: MQTTAsync.h:525
                    +
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:710
                    +
                    int code
                    Definition: MQTTAsync.h:530
                    +
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:1416
                    +
                    Definition: MQTTAsync.h:1394
                    +
                    #define MQTTAsync_connectOptions_initializer
                    Definition: MQTTAsync.h:1358
                    -
                    int cleansession
                    Definition: MQTTAsync.h:1215
                    +
                    int cleansession
                    Definition: MQTTAsync.h:1219
                    void MQTTAsync_freeMessage(MQTTAsync_message **msg)
                    -
                    void * context
                    Definition: MQTTAsync.h:1272
                    -
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:1266
                    -
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:1260
                    +
                    void * context
                    Definition: MQTTAsync.h:1276
                    +
                    MQTTAsync_onFailure * onFailure
                    Definition: MQTTAsync.h:1270
                    +
                    MQTTAsync_onSuccess * onSuccess
                    Definition: MQTTAsync.h:1264
                    diff --git a/docs/MQTTAsync/html/tabs.css b/docs/MQTTAsync/html/tabs.css index 85a0cd5b5..7d45d36c1 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 d0034efc7..c9c8560ee 100644 --- a/docs/MQTTAsync/html/tracing.html +++ b/docs/MQTTAsync/html/tracing.html @@ -139,7 +139,7 @@

                    Memory Allocation Tracing

                    diff --git a/docs/MQTTAsync/html/wildcard.html b/docs/MQTTAsync/html/wildcard.html index 7f82295f9..3b87fb4a7 100644 --- a/docs/MQTTAsync/html/wildcard.html +++ b/docs/MQTTAsync/html/wildcard.html @@ -81,7 +81,7 @@ diff --git a/docs/MQTTAsync/man/man3/MQTTAsync.h.3 b/docs/MQTTAsync/man/man3/MQTTAsync.h.3 index 2d6b6825d..578b6e3b6 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 69c4d892b..307659003 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 d2a3b4ed0..67dc2ff29 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 6abbdeb3c..d7a5c989d 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 7e0c2cbbe..635ee9a86 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 ff8a64889..661dc81c7 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 a58c564ce..2fbdbdd94 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 589980430..f0940bf94 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 e22b1a159..392ae7e9c 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 4cb29370c..4ab5abe05 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 7b07099d7..98e0d879f 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 a6ff083e3..6f6507f1d 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 cf3bd627d..a62c0f8d1 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 b7daabb19..7f976da32 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 029e29169..e9a047d6c 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 451a1a611..18dd01acf 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 d48d25f73..d9c9dc4d9 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 c300ebc4c..25dd9dbe0 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 e8ba42edb..d042d8e22 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 6b1764d86..9263dec97 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 a9ea8611d..2073cf6ee 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 f3c5410ea..e37c3db00 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 290e3dd33..b7575cce7 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 cfaff59a6..7a2dff62d 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 3ab176476..4343b0d9d 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 721114ee8..24cd249b3 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 26c6c7665..cb40725ca 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 e2f8d21fc..9b51a3804 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 9ff600b6d..0ef795d92 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 6dcd6ec54..6d2f6fa8c 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 786e754f0..c0d9c8f56 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 17f49cb34..42bb28225 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 843b5362f..4efa31d82 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 d17ad5279..3d017a6c6 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 @@

                    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 @@

                    #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 86b19ac22..c06847698 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 @@
                    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 @@
                    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 @@
                    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 0af13fa64..cd031396a 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 @@

                    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 c4b7221b1..8d313446b 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 @@
                    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 a873c4908..1f3021d5d 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 @@

                    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 82172b2e6..ee158f282 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 @@
                    @ 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 0061ebd6c..f77d9e33b 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 @@

                    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 9f3992ed0..93dd2fddc 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 @@
                    @ 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 8d6073a96..da1171c65 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 @@

                    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 5a12a71db..43f8e8990 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 @@
                    char struct_id[4]
                    Definition: MQTTSubscribeOpts.h:38
                    diff --git a/docs/MQTTClient/html/annotated.html b/docs/MQTTClient/html/annotated.html index 93a9cf392..d673e7c80 100644 --- a/docs/MQTTClient/html/annotated.html +++ b/docs/MQTTClient/html/annotated.html @@ -86,7 +86,7 @@

                    diff --git a/docs/MQTTClient/html/async.html b/docs/MQTTClient/html/async.html index db8d69414..acc31264b 100644 --- a/docs/MQTTClient/html/async.html +++ b/docs/MQTTClient/html/async.html @@ -73,7 +73,7 @@
                    diff --git a/docs/MQTTClient/html/callbacks.html b/docs/MQTTClient/html/callbacks.html index 0b70e1ea6..0f2ef9f42 100644 --- a/docs/MQTTClient/html/callbacks.html +++ b/docs/MQTTClient/html/callbacks.html @@ -74,7 +74,7 @@ diff --git a/docs/MQTTClient/html/classes.html b/docs/MQTTClient/html/classes.html index 706599d6e..ef4af0013 100644 --- a/docs/MQTTClient/html/classes.html +++ b/docs/MQTTClient/html/classes.html @@ -92,7 +92,7 @@ diff --git a/docs/MQTTClient/html/files.html b/docs/MQTTClient/html/files.html index e94887f58..e43346dff 100644 --- a/docs/MQTTClient/html/files.html +++ b/docs/MQTTClient/html/files.html @@ -78,7 +78,7 @@ diff --git a/docs/MQTTClient/html/functions.html b/docs/MQTTClient/html/functions.html index 455d623d0..82a8bfb7c 100644 --- a/docs/MQTTClient/html/functions.html +++ b/docs/MQTTClient/html/functions.html @@ -395,7 +395,7 @@

                    - w -

                      diff --git a/docs/MQTTClient/html/functions_vars.html b/docs/MQTTClient/html/functions_vars.html index e621dbab5..e13c880ef 100644 --- a/docs/MQTTClient/html/functions_vars.html +++ b/docs/MQTTClient/html/functions_vars.html @@ -395,7 +395,7 @@

                      - w -

                        diff --git a/docs/MQTTClient/html/globals.html b/docs/MQTTClient/html/globals.html index f56c6817b..926e7b4fa 100644 --- a/docs/MQTTClient/html/globals.html +++ b/docs/MQTTClient/html/globals.html @@ -657,7 +657,7 @@

                        - m -

                          diff --git a/docs/MQTTClient/html/globals_defs.html b/docs/MQTTClient/html/globals_defs.html index 922d3cb89..4bf12f2b9 100644 --- a/docs/MQTTClient/html/globals_defs.html +++ b/docs/MQTTClient/html/globals_defs.html @@ -192,7 +192,7 @@

                          - m -

                            diff --git a/docs/MQTTClient/html/globals_enum.html b/docs/MQTTClient/html/globals_enum.html index 3c28d71d6..6427beba8 100644 --- a/docs/MQTTClient/html/globals_enum.html +++ b/docs/MQTTClient/html/globals_enum.html @@ -79,7 +79,7 @@ diff --git a/docs/MQTTClient/html/globals_eval.html b/docs/MQTTClient/html/globals_eval.html index 05a121b10..a2268fbd1 100644 --- a/docs/MQTTClient/html/globals_eval.html +++ b/docs/MQTTClient/html/globals_eval.html @@ -327,7 +327,7 @@

                            - m -

                              diff --git a/docs/MQTTClient/html/globals_func.html b/docs/MQTTClient/html/globals_func.html index b22a439b3..82e228073 100644 --- a/docs/MQTTClient/html/globals_func.html +++ b/docs/MQTTClient/html/globals_func.html @@ -222,7 +222,7 @@

                              - m -

                                diff --git a/docs/MQTTClient/html/globals_p.html b/docs/MQTTClient/html/globals_p.html index b90f4e3a8..7def68133 100644 --- a/docs/MQTTClient/html/globals_p.html +++ b/docs/MQTTClient/html/globals_p.html @@ -93,7 +93,7 @@

                                - p -

                                  diff --git a/docs/MQTTClient/html/globals_type.html b/docs/MQTTClient/html/globals_type.html index a3ba63bb4..64121a6d4 100644 --- a/docs/MQTTClient/html/globals_type.html +++ b/docs/MQTTClient/html/globals_type.html @@ -133,7 +133,7 @@ diff --git a/docs/MQTTClient/html/index.html b/docs/MQTTClient/html/index.html index fe8b68fd4..8074231f9 100644 --- a/docs/MQTTClient/html/index.html +++ b/docs/MQTTClient/html/index.html @@ -66,7 +66,7 @@
                                  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 @@
                                  diff --git a/docs/MQTTClient/html/pages.html b/docs/MQTTClient/html/pages.html index 1219a4503..5141e7fe8 100644 --- a/docs/MQTTClient/html/pages.html +++ b/docs/MQTTClient/html/pages.html @@ -81,7 +81,7 @@
                                  diff --git a/docs/MQTTClient/html/pubasync.html b/docs/MQTTClient/html/pubasync.html index 1b60bcd1d..682c8eb8e 100644 --- a/docs/MQTTClient/html/pubasync.html +++ b/docs/MQTTClient/html/pubasync.html @@ -204,7 +204,7 @@
                                  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 acbcdf577..345dc318f 100644 --- a/docs/MQTTClient/html/pubsync.html +++ b/docs/MQTTClient/html/pubsync.html @@ -147,7 +147,7 @@
                                  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 15bdabfa0..e93a0ccd4 100644 --- a/docs/MQTTClient/html/qos.html +++ b/docs/MQTTClient/html/qos.html @@ -78,7 +78,7 @@
                                  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 2c82ea60a..83b42e6d8 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 @@

                                  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 f4edf288d..c62fabda1 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 @@

                                  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 7ac4de580..40cbdcd35 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 @@

                                  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 886b8a7f0..f60312dba 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 @@

                                  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 db2e17cca..abaa07fde 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 @@

                                  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 e75596b42..842f98aa7 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 @@

                                  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 ef61927c0..00fd6f02e 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 @@

                                  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 f973a4865..7930b6148 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 @@

                                  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 ba43d381f..d14ca3250 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 @@

                                  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 0fb2e760b..2f1b888d6 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 @@

                                  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 e5a0d6977..3cd8298a5 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 @@

                                  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 129487929..c92d46ae4 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 @@

                                  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 e370bcd7d..dd91c8b99 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 @@

                                  diff --git a/docs/MQTTClient/html/subasync.html b/docs/MQTTClient/html/subasync.html index 20ff1e9b6..078f44a1d 100644 --- a/docs/MQTTClient/html/subasync.html +++ b/docs/MQTTClient/html/subasync.html @@ -189,7 +189,7 @@
                                  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 85a0cd5b5..7d45d36c1 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 eeb2a9ceb..848da5bc0 100644 --- a/docs/MQTTClient/html/tracing.html +++ b/docs/MQTTClient/html/tracing.html @@ -127,7 +127,7 @@

                                  Memory Allocation Tracing

                                  int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
                                  diff --git a/docs/MQTTClient/html/wildcard.html b/docs/MQTTClient/html/wildcard.html index 3d1174017..888a1187f 100644 --- a/docs/MQTTClient/html/wildcard.html +++ b/docs/MQTTClient/html/wildcard.html @@ -81,7 +81,7 @@ diff --git a/docs/MQTTClient/man/man3/MQTTClient.h.3 b/docs/MQTTClient/man/man3/MQTTClient.h.3 index ff1871576..5ae12b6c0 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 1183d66dd..fc4638a3b 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 f3b9e3d94..4ee101743 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 673c38164..356993372 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 8ef6a0bbc..2fd497a8f 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 499f1c3a7..35d92837a 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 761c84a01..650c679c6 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 6ab49df6b..1e2c2d02f 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 138661bab..c30cfe880 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 821725693..46103ea5a 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 f8bdb9838..f16adda7a 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 3959b33b7..11e72aaa9 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 eceea3f2d..93392207a 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 18db2091e..8237444fe 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 a358cc066..2f1f85170 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 85adf7e77..65f50d955 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 77fbea89a..c0f9362f0 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 b33ab6feb..8dc1b1ef9 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 8369c6817..67240fcde 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 bdeafad20..ec28c0b39 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 3e55baf7f..ec1dedc84 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 92f0dac7f..44c64865b 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 8e2ca08f2..8166dcfa7 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 88755062f..b87788160 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 5fd83d791..fe2874e64 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 29c18d2e3..90bb81f7a 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 30255c259..538d2a318 100644 --- a/docs/MQTTClient_internal/html/Clients_8c.html +++ b/docs/MQTTClient_internal/html/Clients_8c.html @@ -79,9 +79,9 @@
                                  - - - + + +
                                  @@ -183,45 +183,45 @@

                                  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
                                  size_t datalen
                                  current length of data in buf
                                  Definition: SocketBuffer.h:44
                                  unsigned char all
                                  all connect flags
                                  Definition: MQTTPacket.h:94
                                  -
                                  void MQTTProtocol_freeClient(Clients *client)
                                  Free a client structure.
                                  Definition: MQTTProtocolClient.c:815
                                  +
                                  void MQTTProtocol_freeClient(Clients *client)
                                  Free a client structure.
                                  Definition: MQTTProtocolClient.c:831
                                  int sessionPresent
                                  if the MQTT version is 3.1.1, the value of sessionPresent returned in the connack
                                  Definition: MQTTClient.h:931
                                  -
                                  Utility structure where name/value pairs are needed.
                                  Definition: MQTTAsync.h:1157
                                  +
                                  Utility structure where name/value pairs are needed.
                                  Definition: MQTTAsync.h:1161
                                  char * data
                                  pointer to the string data
                                  Definition: MQTTProperties.h:87
                                  int length
                                  mbi: byte length of all properties
                                  Definition: MQTTProperties.h:116
                                  Structure to hold all data for one list element.
                                  Definition: Tree.h:63
                                  void * ListDetachHead(List *aList)
                                  Removes and frees an the first item in a list.
                                  Definition: LinkedList.c:268
                                  int(* Persistence_clear)(void *handle)
                                  Clears the persistence store, so that it no longer contains any persisted data.
                                  Definition: MQTTClientPersistence.h:197
                                  int MQTTProtocol_subscribe(Clients *client, List *topics, List *qoss, int msgID, MQTTSubscribe_options *opts, MQTTProperties *props)
                                  MQTT outgoing subscribe processing for a client.
                                  Definition: MQTTProtocolOut.c:374
                                  -
                                  MQTTAsync_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client.
                                  Definition: MQTTAsync.h:995
                                  -
                                  static char * trace_destination_backup_name
                                  the name of the backup trace file
                                  Definition: Log.c:101
                                  +
                                  MQTTAsync_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client.
                                  Definition: MQTTAsync.h:999
                                  +
                                  static char * trace_destination_backup_name
                                  the name of the backup trace file
                                  Definition: Log.c:105
                                  int Socket_setnonblocking(int sock)
                                  Set a socket non-blocking, OS independently.
                                  Definition: Socket.c:75
                                  struct ListElementStruct * prev
                                  pointer to previous list element
                                  Definition: LinkedList.h:74
                                  void MQTTClient_global_init(MQTTClient_init_options *inits)
                                  Global init of mqtt library.
                                  Definition: MQTTClient.c:89
                                  MQTTClient_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL li...
                                  Definition: MQTTClient.h:659
                                  size_t size
                                  heap storage used
                                  Definition: LinkedList.h:73
                                  -
                                  char * httpProxy
                                  HTTP proxy for websockets.
                                  Definition: Clients.h:148
                                  -
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:1046
                                  -
                                  const char * username
                                  MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
                                  Definition: MQTTAsync.h:1231
                                  -
                                  int Thread_wait_sem(sem_type sem, int timeout)
                                  Wait for a semaphore to be posted, or timeout.
                                  Definition: Thread.c:230
                                  +
                                  char * httpProxy
                                  HTTP proxy for websockets.
                                  Definition: Clients.h:150
                                  +
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:1050
                                  +
                                  const char * username
                                  MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
                                  Definition: MQTTAsync.h:1235
                                  +
                                  int Thread_wait_sem(sem_type sem, int timeout)
                                  Wait for a semaphore to be posted, or timeout.
                                  Definition: Thread.c:223
                                  unsigned char all
                                  all connack flags
                                  Definition: MQTTPacket.h:138
                                  void ListAppendNoMalloc(List *aList, void *content, ListElement *newel, size_t size)
                                  Append an already allocated ListElement and content to a list.
                                  Definition: LinkedList.c:69
                                  Header header
                                  MQTT header byte.
                                  Definition: MQTTPacket.h:216
                                  int pstput(void *handle, char *key, int bufcount, char *buffers[], int buflens[])
                                  Write wire message to the client persistence directory.
                                  Definition: MQTTPersistenceDefault.c:195
                                  int MQTTPacket_send_connect(Clients *client, int MQTTVersion, MQTTProperties *connectProperties, MQTTProperties *willProperties)
                                  Send an MQTT CONNECT packet down a socket for V5 or later.
                                  Definition: MQTTPacketOut.c:48
                                  -
                                  List * inboundMsgs
                                  inbound in flight messages
                                  Definition: Clients.h:135
                                  -
                                  int maxInflightMessages
                                  the max number of inflight outbound messages we allow
                                  Definition: Clients.h:133
                                  +
                                  List * inboundMsgs
                                  inbound in flight messages
                                  Definition: Clients.h:137
                                  +
                                  int maxInflightMessages
                                  the max number of inflight outbound messages we allow
                                  Definition: Clients.h:135
                                  Header header
                                  MQTT header byte.
                                  Definition: MQTTPacket.h:186
                                  -
                                  MQTTAsync_onSuccess * onSuccess
                                  A pointer to a callback function to be called if the disconnect successfully completes.
                                  Definition: MQTTAsync.h:1406
                                  +
                                  MQTTAsync_onSuccess * onSuccess
                                  A pointer to a callback function to be called if the disconnect successfully completes.
                                  Definition: MQTTAsync.h:1410
                                  int MQTTPersistence_afterRead(void *context, char **buffer, int *buflen)
                                  A callback which is invoked just after a read from persistence.
                                  Definition: MQTTClientPersistence.h:275
                                  -
                                  int verify
                                  Whether to carry out post-connect checks, including that a certificate matches the given host name.
                                  Definition: MQTTAsync.h:1097
                                  +
                                  int verify
                                  Whether to carry out post-connect checks, including that a certificate matches the given host name.
                                  Definition: MQTTAsync.h:1101
                                  int ListRemove(List *aList, void *content)
                                  Removes and frees an item in a list by comparing the pointer to the content.
                                  Definition: LinkedList.c:257
                                  -
                                  const char * message
                                  The LWT payload.
                                  Definition: MQTTAsync.h:1006
                                  +
                                  const char * message
                                  The LWT payload.
                                  Definition: MQTTAsync.h:1010
                                  int serverURIcount
                                  The number of entries in the optional serverURIs array.
                                  Definition: MQTTClient.h:901
                                  bool will
                                  will flag
                                  Definition: MQTTPacket.h:111
                                  int MQTTProtocol_handleSubacks(void *pack, int sock)
                                  Process an incoming suback packet for a socket.
                                  Definition: MQTTProtocolOut.c:392
                                  int Socket_abortWrite(int socket)
                                  Continue an outstanding write for a particular socket.
                                  Definition: Socket.c:956
                                  Data for a suback packet.
                                  Definition: MQTTPacket.h:171
                                  -
                                  MQTTAsync_onSuccess5 * onSuccess5
                                  A pointer to a callback function to be called if the connect successfully completes.
                                  Definition: MQTTAsync.h:1332
                                  +
                                  MQTTAsync_onSuccess5 * onSuccess5
                                  A pointer to a callback function to be called if the connect successfully completes.
                                  Definition: MQTTAsync.h:1336
                                  size_t max_size
                                  max size the heap has reached in bytes
                                  Definition: Heap.h:65
                                  ListElement * cur_clientsds
                                  current client socket descriptor (iterator)
                                  Definition: Socket.h:115
                                  void * TreeRemoveNodeIndex(Tree *aTree, Node *curnode, int index)
                                  Remove an item from a tree.
                                  Definition: Tree.c:420
                                  @@ -234,17 +234,18 @@

                                  int qos
                                  The quality of service (QoS) assigned to the message.
                                  Definition: MQTTClient.h:291
                                  fd_set rset
                                  socket read set (see select doc)
                                  Definition: Socket.h:111
                                  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
                                  -
                                  int packet_type
                                  Packet type on which the failure occurred - used for publish QoS 1/2 exchanges.
                                  Definition: MQTTAsync.h:550
                                  +
                                  unsigned int ping_due
                                  we couldn't send a ping so we should send one when we can
                                  Definition: Clients.h:128
                                  +
                                  int packet_type
                                  Packet type on which the failure occurred - used for publish QoS 1/2 exchanges.
                                  Definition: MQTTAsync.h:554
                                  void SocketBuffer_freeDefQ(void)
                                  Free the default queue memory.
                                  Definition: SocketBuffer.c:122
                                  Definition: MQTTAsyncUtils.h:40
                                  -
                                  builds a websocket frame for data transmission
                                  Definition: WebSocket.c:231
                                  +
                                  builds a websocket frame for data transmission
                                  Definition: WebSocket.c:233
                                  void SocketBuffer_terminate(void)
                                  Terminate the socketBuffer module.
                                  Definition: SocketBuffer.c:133
                                  ListElement * ListFindItem(List *aList, void *content, int(*callback)(void *, void *))
                                  Finds an element in a list by comparing the content or pointer to the content.
                                  Definition: LinkedList.c:154
                                  size_t size
                                  size of content
                                  Definition: Tree.h:82
                                  -
                                  void * context
                                  Definition: MQTTAsync.h:1418
                                  -
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:260
                                  +
                                  void * context
                                  Definition: MQTTAsync.h:1422
                                  +
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:264
                                  int socketcompare(void *a, void *b)
                                  List callback function for comparing socket_queues by socket.
                                  Definition: SocketBuffer.c:70
                                  -
                                  void * MQTTPacket_suback(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
                                  Function used in the new packets table to create suback packets.
                                  Definition: MQTTPacketOut.c:292
                                  +
                                  void * MQTTPacket_suback(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
                                  Function used in the new packets table to create suback packets.
                                  Definition: MQTTPacketOut.c:290
                                  Definition: MQTTClient.c:333
                                  char * topic
                                  topic string
                                  Definition: MQTTPacket.h:200
                                  #define MQTTCLIENT_PERSISTENCE_ERROR
                                  Application-specific persistence functions must return this error code if there is a problem executin...
                                  Definition: MQTTClientPersistence.h:85
                                  @@ -254,7 +255,7 @@

                                  int ListRemoveHead(List *aList)
                                  Removes and frees an the first item in a list.
                                  Definition: LinkedList.c:294
                                  void * payload
                                  A pointer to the payload of the MQTT message.
                                  Definition: MQTTClient.h:277
                                  Definition: MQTTAsyncUtils.h:32
                                  -
                                  int readInt4(char **pptr)
                                  Calculates an integer from two bytes read from the input buffer.
                                  Definition: MQTTPacket.c:945
                                  +
                                  int readInt4(char **pptr)
                                  Calculates an integer from two bytes read from the input buffer.
                                  Definition: MQTTPacket.c:961
                                  MQTT version 5 property list.
                                  Definition: MQTTProperties.h:112
                                  int MQTTPacket_sends(networkHandles *net, Header header, PacketBuffers *bufs, int MQTTVersion)
                                  Sends an MQTT packet from multiple buffers in one system call write.
                                  Definition: MQTTPacket.c:250
                                  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 @@

                                  int(* Persistence_get)(void *handle, char *key, char **buffer, int *buflen)
                                  Retrieve the specified data from the persistent store.
                                  Definition: MQTTClientPersistence.h:156
                                  int len
                                  PUBREC, PUBREL, PUBCOMP
                                  Definition: Clients.h:63
                                  static int MQTTProtocol_startPublishCommon(Clients *pubclient, Publish *publish, int qos, int retained)
                                  Utility function to start a new publish exchange.
                                  Definition: MQTTProtocolClient.c:141
                                  -
                                  void * phandle
                                  the persistence handle
                                  Definition: Clients.h:139
                                  -
                                  MQTTClient_persistence * persistence
                                  a persistence implementation
                                  Definition: Clients.h:140
                                  +
                                  void * phandle
                                  the persistence handle
                                  Definition: Clients.h:141
                                  +
                                  MQTTClient_persistence * persistence
                                  a persistence implementation
                                  Definition: Clients.h:142
                                  char *const * serverURIs
                                  An optional array of null-terminated strings specifying the servers to which the client will connect.
                                  Definition: MQTTClient.h:915
                                  static void MQTTProtocol_checkPendingWrites(void)
                                  See if any pending writes have been completed, and cleanup if so.
                                  Definition: MQTTClient.c:2985
                                  -
                                  int MQTTVersion
                                  Whether the MQTT version is 3.1, 3.1.1, or 5.
                                  Definition: MQTTAsync.h:956
                                  -
                                  char * httpsProxy
                                  HTTPS proxy for websockets.
                                  Definition: Clients.h:149
                                  -
                                  char * serverURI
                                  the connection string of the server
                                  Definition: MQTTAsync.h:578
                                  +
                                  int MQTTVersion
                                  Whether the MQTT version is 3.1, 3.1.1, or 5.
                                  Definition: MQTTAsync.h:960
                                  +
                                  char * httpsProxy
                                  HTTPS proxy for websockets.
                                  Definition: Clients.h:151
                                  +
                                  char * serverURI
                                  the connection string of the server
                                  Definition: MQTTAsync.h:582
                                  int qos
                                  The quality of service setting for the LWT message (see MQTTClient_message.qos and qos).
                                  Definition: MQTTClient.h:631
                                  -
                                  networkHandles net
                                  network info for this client
                                  Definition: Clients.h:129
                                  +
                                  networkHandles net
                                  network info for this client
                                  Definition: Clients.h:131
                                  unsigned int reserved
                                  message type nibble
                                  Definition: MQTTPacket.h:149
                                  int(* Persistence_close)(void *handle)
                                  Close the persistent store referred to by the handle.
                                  Definition: MQTTClientPersistence.h:123
                                  Data for a packet with header only.
                                  Definition: MQTTPacket.h:162
                                  -
                                  int code
                                  A numeric code identifying the MQTT client library error.
                                  Definition: MQTTAsync.h:546
                                  -
                                  void MQTTProtocol_freeMessageList(List *msgList)
                                  Empty and free up all storage used by a message list.
                                  Definition: MQTTProtocolClient.c:895
                                  -
                                  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
                                  +
                                  int code
                                  A numeric code identifying the MQTT client library error.
                                  Definition: MQTTAsync.h:550
                                  +
                                  void MQTTProtocol_freeMessageList(List *msgList)
                                  Empty and free up all storage used by a message list.
                                  Definition: MQTTProtocolClient.c:911
                                  +
                                  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
                                  fd_set rset_saved
                                  saved socket read set
                                  Definition: Socket.h:112
                                  pending_writes * SocketBuffer_getWrite(int socket)
                                  Get any queued write data for a specific socket.
                                  Definition: SocketBuffer.c:399
                                  -
                                  int MQTTVersion
                                  Sets the version of MQTT to be used on the connect.
                                  Definition: MQTTAsync.h:1295
                                  +
                                  int MQTTVersion
                                  Sets the version of MQTT to be used on the connect.
                                  Definition: MQTTAsync.h:1299
                                  Data for an MQTT V5 unsuback packet.
                                  Definition: MQTTPacket.h:184
                                  int Socket_continueWrite(int socket)
                                  Continue an outstanding write for a particular socket.
                                  Definition: Socket.c:871
                                  -
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:1393
                                  -
                                  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
                                  -
                                  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
                                  +
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:1397
                                  +
                                  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
                                  +
                                  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
                                  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
                                  int SocketBuffer_getQueuedChar(int socket, char *c)
                                  Get any queued character for a specific socket.
                                  Definition: SocketBuffer.c:219
                                  A structure representing the payload and attributes of an MQTT message.
                                  Definition: MQTTClient.h:267
                                  -
                                  char * destinationName
                                  the topic destination for the message
                                  Definition: MQTTAsync.h:608
                                  +
                                  char * destinationName
                                  the topic destination for the message
                                  Definition: MQTTAsync.h:612
                                  int MQTTPersistence_initialize(Clients *c, const char *serverURI)
                                  Open persistent store and restore any persisted messages.
                                  Definition: MQTTPersistence.c:115
                                  -
                                  MQTTPersistence_afterRead * afterRead
                                  persistence read callback
                                  Definition: Clients.h:142
                                  +
                                  MQTTPersistence_afterRead * afterRead
                                  persistence read callback
                                  Definition: Clients.h:144
                                  int ListDetach(List *aList, void *content)
                                  Removes but does not free an item in a list by comparing the pointer to the content.
                                  Definition: LinkedList.c:245
                                  -
                                  void Log(enum LOG_LEVELS log_level, int msgno, const char *format,...)
                                  Log a message.
                                  Definition: Log.c:421
                                  +
                                  void Log(enum LOG_LEVELS log_level, int msgno, const char *format,...)
                                  Log a message.
                                  Definition: Log.c:425
                                  int MQTTProtocol_connect(const char *ip_address, Clients *aClient, int websocket, int MQTTVersion, MQTTProperties *connectProperties, MQTTProperties *willProperties)
                                  MQTT outgoing connect processing for a client.
                                  Definition: MQTTProtocolOut.c:208
                                  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
                                  void ListFreeNoContent(List *aList)
                                  Removes and but does not free all items in a list, and frees the list itself.
                                  Definition: LinkedList.c:392
                                  void * content
                                  pointer to element content
                                  Definition: Tree.h:81
                                  const char * CApath
                                  From the OpenSSL documentation: If CApath is not NULL, it points to a directory containing CA certifi...
                                  Definition: MQTTClient.h:720
                                  -
                                  int allowDisconnectedSendAtAnyTime
                                  Allow sending of messages while disconnected before a first successful connect.
                                  Definition: MQTTAsync.h:960
                                  +
                                  int allowDisconnectedSendAtAnyTime
                                  Allow sending of messages while disconnected before a first successful connect.
                                  Definition: MQTTAsync.h:964
                                  +
                                  START_TIME_TYPE ping_due_time
                                  the time at which the ping should have been sent (ping_due)
                                  Definition: Clients.h:130
                                  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_libraryInfo is used to store details relating to the currently used library such as the ve...
                                  Definition: MQTTClient.h:779
                                  enum MQTTPropertyCodes identifier
                                  The MQTT V5 property id.
                                  Definition: MQTTProperties.h:96
                                  Header header
                                  MQTT header byte.
                                  Definition: MQTTPacket.h:91
                                  -
                                  void MQTTPacket_freeUnsuback(Unsuback *pack)
                                  Free allocated storage for a suback packet.
                                  Definition: MQTTPacket.c:700
                                  +
                                  void MQTTPacket_freeUnsuback(Unsuback *pack)
                                  Free allocated storage for a suback packet.
                                  Definition: MQTTPacket.c:708
                                  #define MQTTCLIENT_PERSISTENCE_NONE
                                  This persistence_type value specifies a memory-based persistence mechanism (see MQTTClient_create()).
                                  Definition: MQTTClientPersistence.h:74
                                  struct MQTTClient_connectOptions::@19 binarypwd
                                  Optional binary password.
                                  -
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:697
                                  +
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:701
                                  unsigned char rc
                                  connack reason code
                                  Definition: MQTTPacket.h:153
                                  -
                                  const char * trustStore
                                  The file in PEM format containing the public digital certificates trusted by the client.
                                  Definition: MQTTAsync.h:1058
                                  +
                                  const char * trustStore
                                  The file in PEM format containing the public digital certificates trusted by the client.
                                  Definition: MQTTAsync.h:1062
                                  int line
                                  the line no in the source file where it was allocated
                                  Definition: Heap.c:71
                                  ListElement * ListNextElement(List *aList, ListElement **pos)
                                  Forward iteration through a list.
                                  Definition: LinkedList.c:411
                                  int MQTTVersion
                                  the version of MQTT
                                  Definition: MQTTPacket.h:175
                                  unsigned char version
                                  MQTT version number.
                                  Definition: MQTTPacket.h:126
                                  Definition: MQTTPersistence.h:84
                                  -
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:940
                                  +
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:944
                                  Definition: StackTrace.c:46
                                  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
                                  int MQTTPersistence_create(MQTTClient_persistence **persistence, int type, void *pcontext)
                                  Creates a MQTTClient_persistence structure representing a persistence implementation.
                                  Definition: MQTTPersistence.c:51
                                  MQTTLenString value
                                  The value of a user property.
                                  Definition: MQTTProperties.h:104
                                  -
                                  int Thread_destroy_mutex(mutex_type mutex)
                                  Destroy a mutex which has already been created.
                                  Definition: Thread.c:156
                                  -
                                  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
                                  +
                                  int Thread_destroy_mutex(mutex_type mutex)
                                  Destroy a mutex which has already been created.
                                  Definition: Thread.c:155
                                  +
                                  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
                                  char * SocketBuffer_complete(int socket)
                                  A socket read has now completed so we can get rid of the queue.
                                  Definition: SocketBuffer.c:281
                                  MQTTProperties properties
                                  MQTT 5.0 properties.
                                  Definition: MQTTPacket.h:220
                                  void writeData(char **pptr, const void *data, int datalen)
                                  Writes length delimited data to an output buffer.
                                  Definition: MQTTPacket.c:479
                                  struct @33 valid_ranges[]
                                  Structure to hold the valid ranges of UTF-8 characters, for each byte up to 4.
                                  -
                                  MQTTAsync_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL lib...
                                  Definition: MQTTAsync.h:1043
                                  -
                                  const char * message
                                  Optional further text explaining the error.
                                  Definition: MQTTAsync.h:548
                                  -
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:998
                                  +
                                  MQTTAsync_sslProperties defines the settings to establish an SSL/TLS connection using the OpenSSL lib...
                                  Definition: MQTTAsync.h:1047
                                  +
                                  const char * message
                                  Optional further text explaining the error.
                                  Definition: MQTTAsync.h:552
                                  +
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:1002
                                  Definition: Log.h:69
                                  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
                                  bool sessionPresent
                                  was a session found on the server?
                                  Definition: MQTTPacket.h:148
                                  char * willMsg
                                  will payload
                                  Definition: MQTTPacket.h:123
                                  int MQTTProtocol_handleUnsubacks(void *pack, int sock)
                                  Process an incoming unsuback packet for a socket.
                                  Definition: MQTTProtocolOut.c:430
                                  -
                                  cond_type Thread_create_cond(int *rc)
                                  Create a new condition variable.
                                  Definition: Thread.c:365
                                  +
                                  cond_type Thread_create_cond(int *rc)
                                  Create a new condition variable.
                                  Definition: Thread.c:358
                                  void Heap_terminate(void)
                                  Heap termination.
                                  Definition: Heap.c:417
                                  int SocketBuffer_writeComplete(int socket)
                                  A socket write has now completed so we can get rid of the queue.
                                  Definition: SocketBuffer.c:411
                                  static thread_return_type WINAPI call_disconnected(void *context)
                                  Wrapper function to call disconnected on a separate thread.
                                  Definition: MQTTClient.c:717
                                  -
                                  MQTTProperties properties
                                  MQTT V5 properties returned, if any.
                                  Definition: MQTTAsync.h:594
                                  +
                                  MQTTProperties properties
                                  MQTT V5 properties returned, if any.
                                  Definition: MQTTAsync.h:598
                                  int indexes
                                  no of indexes into tree
                                  Definition: Tree.h:83
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:590
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:594
                                  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
                                  uint8_t mask[4]
                                  array of flags indicating whether each buffer needs to be freed
                                  Definition: Socket.h:102
                                  int UTF8_validate(int len, const char *data)
                                  Validate a length-delimited string has only UTF-8 characters.
                                  Definition: utf-8.c:129
                                  Definition: Socket.h:96
                                  -
                                  MQTTAsync_onSuccess * onSuccess
                                  A pointer to a callback function to be called if the connect successfully completes.
                                  Definition: MQTTAsync.h:1260
                                  +
                                  MQTTAsync_onSuccess * onSuccess
                                  A pointer to a callback function to be called if the connect successfully completes.
                                  Definition: MQTTAsync.h:1264
                                  int msgId
                                  MQTT message id.
                                  Definition: MQTTPacket.h:217
                                  void MQTTClient_yield(void)
                                  When implementing a single-threaded client, call this function periodically to allow processing of me...
                                  Definition: MQTTClient.c:2744
                                  -
                                  The connect options that can be updated before an automatic reconnect.
                                  Definition: MQTTAsync.h:451
                                  -
                                  int serverURIcount
                                  The number of entries in the serverURIs array.
                                  Definition: MQTTAsync.h:1276
                                  +
                                  The connect options that can be updated before an automatic reconnect.
                                  Definition: MQTTAsync.h:455
                                  +
                                  int serverURIcount
                                  The number of entries in the serverURIs array.
                                  Definition: MQTTAsync.h:1280
                                  int retained
                                  The retained flag for the LWT message (see MQTTClient_message.retained).
                                  Definition: MQTTClient.h:626
                                  -
                                  Options for the ::MQTTAsync_createWithOptions call.
                                  Definition: MQTTAsync.h:937
                                  +
                                  Options for the ::MQTTAsync_createWithOptions call.
                                  Definition: MQTTAsync.h:941
                                  void Socket_outInitialize(void)
                                  Initialize the socket module.
                                  Definition: Socket.c:123
                                  unsigned int integer4
                                  holds the value of a 4 byte integer property type
                                  Definition: MQTTProperties.h:101
                                  -
                                  thread_type Thread_start(thread_fn fn, void *parameter)
                                  Start a new thread.
                                  Definition: Thread.c:60
                                  int keepAliveTimer
                                  keepalive timeout value in seconds
                                  Definition: MQTTPacket.h:125
                                  -
                                  const char * topicName
                                  The LWT topic to which the LWT message will be published.
                                  Definition: MQTTAsync.h:1004
                                  -
                                  void MQTTPacket_freeSuback(Suback *pack)
                                  Free allocated storage for a suback packet.
                                  Definition: MQTTPacket.c:684
                                  -
                                  thread_id_type Thread_getid(void)
                                  Get the thread id of the thread from which this function is called.
                                  Definition: Thread.c:176
                                  +
                                  const char * topicName
                                  The LWT topic to which the LWT message will be published.
                                  Definition: MQTTAsync.h:1008
                                  +
                                  void MQTTPacket_freeSuback(Suback *pack)
                                  Free allocated storage for a suback packet.
                                  Definition: MQTTPacket.c:692
                                  +
                                  thread_id_type Thread_getid(void)
                                  Get the thread id of the thread from which this function is called.
                                  Definition: Thread.c:175
                                  Stored publication data to minimize copying.
                                  Definition: Clients.h:40
                                  int pstget(void *handle, char *key, char **buffer, int *buflen)
                                  Retrieve a wire message from the client persistence directory.
                                  Definition: MQTTPersistenceDefault.c:257
                                  MQTTClient_willOptions defines the MQTT "Last Will and Testament" (LWT) settings for the client.
                                  Definition: MQTTClient.h:611
                                  -
                                  const char * keyStore
                                  The file in PEM format containing the public certificate chain of the client.
                                  Definition: MQTTAsync.h:1063
                                  +
                                  const char * keyStore
                                  The file in PEM format containing the public certificate chain of the client.
                                  Definition: MQTTAsync.h:1067
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTClient.h:662
                                  -
                                  enum MQTTReasonCodes * reasonCodes
                                  an array of reasonCodes
                                  Definition: MQTTAsync.h:602
                                  +
                                  enum MQTTReasonCodes * reasonCodes
                                  an array of reasonCodes
                                  Definition: MQTTAsync.h:606
                                  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
                                  -
                                  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
                                  -
                                  void * context
                                  Definition: MQTTAsync.h:1272
                                  +
                                  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
                                  +
                                  void * context
                                  Definition: MQTTAsync.h:1276
                                  Data for a publish packet.
                                  Definition: MQTTPacket.h:197
                                  MQTTResponse MQTTClient_publishMessage5(MQTTClient handle, const char *topicName, MQTTClient_message *message, MQTTClient_deliveryToken *deliveryToken)
                                  Attempts to publish a message to the given topic using MQTT version 5.0 (see also MQTTClient_publish5...
                                  Definition: MQTTClient.c:2413
                                  size_t size
                                  heap storage used
                                  Definition: Tree.h:85
                                  -
                                  Structure to define call options.
                                  Definition: MQTTAsync.h:694
                                  +
                                  Structure to define call options.
                                  Definition: MQTTAsync.h:698
                                  int clientSocketCompare(void *a, void *b)
                                  List callback function for comparing clients by socket.
                                  Definition: Clients.c:50
                                  MQTTClient_connectOptions defines several settings that control the way the client connects to an MQT...
                                  Definition: MQTTClient.h:806
                                  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
                                  Messages * MQTTProtocol_createMessage(Publish *publish, Messages **mm, int qos, int retained, int allocatePayload)
                                  Copy and store message data for retries.
                                  Definition: MQTTProtocolClient.c:198
                                  int maxfdp1
                                  max descriptor used +1 (again see select doc)
                                  Definition: Socket.h:113
                                  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_SSLOptions * ssl
                                  This is a pointer to an MQTTAsync_SSLOptions structure.
                                  Definition: MQTTAsync.h:1254
                                  -
                                  const char * message
                                  Optional text explaining the error.
                                  Definition: MQTTAsync.h:528
                                  +
                                  MQTTAsync_SSLOptions * ssl
                                  This is a pointer to an MQTTAsync_SSLOptions structure.
                                  Definition: MQTTAsync.h:1258
                                  +
                                  const char * message
                                  Optional text explaining the error.
                                  Definition: MQTTAsync.h:532
                                  static List * queues
                                  List of queued input buffers.
                                  Definition: SocketBuffer.c:50
                                  Definition: SocketBuffer.h:48
                                  void MQTTProtocol_closeSession(Clients *c, int sendwill)
                                  mqttclient_mutex must be locked when you call this function, if multi threaded
                                  Definition: MQTTClient.c:1914
                                  -
                                  int sessionExpiry
                                  MQTT 5 session expiry.
                                  Definition: Clients.h:147
                                  -
                                  int sendWhileDisconnected
                                  Whether to allow messages to be sent when the client library is not connected.
                                  Definition: MQTTAsync.h:948
                                  -
                                  int MQTTVersion
                                  the version of MQTT being used
                                  Definition: MQTTAsync.h:579
                                  +
                                  int sessionExpiry
                                  MQTT 5 session expiry.
                                  Definition: Clients.h:149
                                  +
                                  int sendWhileDisconnected
                                  Whether to allow messages to be sent when the client library is not connected.
                                  Definition: MQTTAsync.h:952
                                  +
                                  int MQTTVersion
                                  the version of MQTT being used
                                  Definition: MQTTAsync.h:583
                                  static List writes
                                  List of queued write buffers.
                                  Definition: SocketBuffer.c:55
                                  void MQTTClient_free(void *memory)
                                  This function frees memory allocated by the MQTT C client library, especially the topic name.
                                  Definition: MQTTClient.c:618
                                  Definition: MQTTPersistence.h:71
                                  -
                                  void MQTTPacket_freeConnack(Connack *pack)
                                  Free allocated storage for a connack packet.
                                  Definition: MQTTPacketOut.c:187
                                  +
                                  void MQTTPacket_freeConnack(Connack *pack)
                                  Free allocated storage for a connack packet.
                                  Definition: MQTTPacketOut.c:185
                                  static void HeapScan(enum LOG_LEVELS log_level)
                                  Scans the heap and reports any items currently allocated.
                                  Definition: Heap.c:383
                                  void Socket_close(int socket)
                                  Close a socket and remove it from the select list.
                                  Definition: Socket.c:634
                                  Tree * TreeInitialize(int(*compare)(void *, void *, int))
                                  Allocates and initializes a new tree structure.
                                  Definition: Tree.c:65
                                  -
                                  MQTTProperties * connectProperties
                                  MQTT V5 properties for connect.
                                  Definition: MQTTAsync.h:1322
                                  +
                                  MQTTProperties * connectProperties
                                  MQTT V5 properties for connect.
                                  Definition: MQTTAsync.h:1326
                                  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
                                  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
                                  unsigned int allow_duplicates
                                  switch to allow duplicate entries
                                  Definition: Tree.h:87
                                  -
                                  int cleansession
                                  This is a boolean value.
                                  Definition: MQTTAsync.h:1215
                                  +
                                  int cleansession
                                  This is a boolean value.
                                  Definition: MQTTAsync.h:1219
                                  Persistence_put pput
                                  A function pointer to an implementation of Persistence_put().
                                  Definition: MQTTClientPersistence.h:231
                                  -
                                  enum MQTTReasonCodes reasonCode
                                  The MQTT reason code returned.
                                  Definition: MQTTAsync.h:542
                                  +
                                  enum MQTTReasonCodes reasonCode
                                  The MQTT reason code returned.
                                  Definition: MQTTAsync.h:546
                                  void * TreeRemoveIndex(Tree *aTree, void *content, int index)
                                  Remove an item from a tree.
                                  Definition: Tree.c:487
                                  int verify
                                  Whether to carry out post-connect checks, including that a certificate matches the given host name.
                                  Definition: MQTTClient.h:713
                                  MQTTClient_SSLOptions * ssl
                                  This is a pointer to an MQTTClient_SSLOptions structure.
                                  Definition: MQTTClient.h:897
                                  @@ -412,30 +413,30 @@

                                  int len
                                  binary payload length
                                  Definition: MQTTClient.h:635
                                  char lower
                                  lower limit of valid range
                                  Definition: utf-8.c:49
                                  int count
                                  no of items
                                  Definition: LinkedList.h:72
                                  -
                                  A structure representing the payload and attributes of an MQTT message.
                                  Definition: MQTTAsync.h:257
                                  +
                                  A structure representing the payload and attributes of an MQTT message.
                                  Definition: MQTTAsync.h:261
                                  Definition: SocketBuffer.h:37
                                  int dup
                                  The dup flag indicates whether or not this message is a duplicate.
                                  Definition: MQTTClient.h:317
                                  -
                                  MQTTAsync_onFailure5 * onFailure5
                                  A pointer to a callback function to be called if the disconnect fails.
                                  Definition: MQTTAsync.h:1438
                                  -
                                  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_token token
                                  A token identifying the successful request.
                                  Definition: MQTTAsync.h:559
                                  -
                                  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
                                  -
                                  int Thread_signal_cond(cond_type condvar)
                                  Signal a condition variable.
                                  Definition: Thread.c:399
                                  +
                                  MQTTAsync_onFailure5 * onFailure5
                                  A pointer to a callback function to be called if the disconnect fails.
                                  Definition: MQTTAsync.h:1442
                                  +
                                  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_token token
                                  A token identifying the successful request.
                                  Definition: MQTTAsync.h:563
                                  +
                                  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
                                  +
                                  int Thread_signal_cond(cond_type condvar)
                                  Signal a condition variable.
                                  Definition: Thread.c:392
                                  Initialization options.
                                  Definition: MQTTClient.h:225
                                  char * Socket_getpeer(int sock)
                                  Get information about the other end connected to a socket.
                                  Definition: Socket.c:1074
                                  Header header
                                  MQTT header byte.
                                  Definition: MQTTPacket.h:135
                                  int stringcompare(void *a, void *b)
                                  List callback function for comparing C strings.
                                  Definition: LinkedList.c:448
                                  -
                                  const char * password
                                  MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
                                  Definition: MQTTAsync.h:1237
                                  -
                                  int len
                                  binary password length
                                  Definition: MQTTAsync.h:470
                                  +
                                  const char * password
                                  MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
                                  Definition: MQTTAsync.h:1241
                                  +
                                  int len
                                  binary password length
                                  Definition: MQTTAsync.h:474
                                  static int ptrCompare(void *a, void *b, int value)
                                  List callback function for comparing storage elements.
                                  Definition: Heap.c:114
                                  List * reasonCodes
                                  list of reason codes
                                  Definition: MQTTPacket.h:190
                                  union Connect::@21 flags
                                  connect flags byte
                                  struct MQTTClient_connectOptions::@18 returned
                                  Returned from the connect when the MQTT version used to connect is 3.1.1.
                                  -
                                  int code
                                  A numeric code identifying the error.
                                  Definition: MQTTAsync.h:526
                                  -
                                  MQTTAsync_onSuccess * onSuccess
                                  A pointer to a callback function to be called if the API call successfully completes.
                                  Definition: MQTTAsync.h:706
                                  +
                                  int code
                                  A numeric code identifying the error.
                                  Definition: MQTTAsync.h:530
                                  +
                                  MQTTAsync_onSuccess * onSuccess
                                  A pointer to a callback function to be called if the API call successfully completes.
                                  Definition: MQTTAsync.h:710
                                  const char * topicName
                                  The LWT topic to which the LWT message will be published.
                                  Definition: MQTTClient.h:620
                                  -
                                  int qos
                                  For subscribe, the granted QoS of the subscription returned by the server.
                                  Definition: MQTTAsync.h:565
                                  +
                                  int qos
                                  For subscribe, the granted QoS of the subscription returned by the server.
                                  Definition: MQTTAsync.h:569
                                  heap_info * Heap_get_info(void)
                                  Access to heap state.
                                  Definition: Heap.c:432
                                  -
                                  int qos
                                  The quality of service setting for the LWT message (see MQTTAsync_message.qos and qos).
                                  Definition: MQTTAsync.h:1015
                                  +
                                  int qos
                                  The quality of service setting for the LWT message (see MQTTAsync_message.qos and qos).
                                  Definition: MQTTAsync.h:1019
                                  const char * trustStore
                                  The file in PEM format containing the public digital certificates trusted by the client.
                                  Definition: MQTTClient.h:674
                                  bool willRetain
                                  will retain setting
                                  Definition: MQTTPacket.h:113
                                  MQTTResponse MQTTClient_subscribe5(MQTTClient handle, const char *topic, int qos, MQTTSubscribe_options *opts, MQTTProperties *props)
                                  This function attempts to subscribe an MQTT version 5.0 client to a single topic, which may contain w...
                                  Definition: MQTTClient.c:2102
                                  @@ -444,105 +445,105 @@

                                  int reliable
                                  This is a boolean value that controls how many messages can be in-flight simultaneously.
                                  Definition: MQTTClient.h:862
                                  #define MQTTCLIENT_PERSISTENCE_DEFAULT
                                  This persistence_type value specifies the default file system-based persistence mechanism (see MQTTCl...
                                  Definition: MQTTClientPersistence.h:69
                                  int cleansession
                                  This is a boolean value.
                                  Definition: MQTTClient.h:852
                                  -
                                  const void * data
                                  binary password data
                                  Definition: MQTTAsync.h:471
                                  +
                                  const void * data
                                  binary password data
                                  Definition: MQTTAsync.h:475
                                  enum LOG_LEVELS trace_level
                                  trace level
                                  Definition: Log.h:57
                                  List * connect_pending
                                  list of sockets for which a connect is pending
                                  Definition: Socket.h:116
                                  -
                                  void * ssl_error_context
                                  Application-specific contex for OpenSSL error handler ERR_print_errors_cb Exists only if struct_versi...
                                  Definition: MQTTAsync.h:1116
                                  +
                                  void * ssl_error_context
                                  Application-specific contex for OpenSSL error handler ERR_print_errors_cb Exists only if struct_versi...
                                  Definition: MQTTAsync.h:1120
                                  unsigned int qos
                                  QoS value, 0, 1 or 2.
                                  Definition: MQTTPacket.h:78
                                  unsigned int type
                                  message type nibble
                                  Definition: MQTTPacket.h:80
                                  void MQTTPersistence_insertInOrder(List *list, void *content, size_t size)
                                  Inserts the specified message into the list, maintaining message ID order.
                                  Definition: MQTTPersistence.c:401
                                  int(* Persistence_keys)(void *handle, char ***keys, int *nkeys)
                                  Returns the keys in this persistent data store.
                                  Definition: MQTTClientPersistence.h:186
                                  -
                                  int dup
                                  The dup flag indicates whether or not this message is a duplicate.
                                  Definition: MQTTAsync.h:307
                                  -
                                  MQTTAsync_onFailure * onFailure
                                  A pointer to a callback function to be called if the disconnect fails.
                                  Definition: MQTTAsync.h:1412
                                  -
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:1171
                                  +
                                  int dup
                                  The dup flag indicates whether or not this message is a duplicate.
                                  Definition: MQTTAsync.h:311
                                  +
                                  MQTTAsync_onFailure * onFailure
                                  A pointer to a callback function to be called if the disconnect fails.
                                  Definition: MQTTAsync.h:1416
                                  +
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTAsync.h:1175
                                  Structure to hold all data for one list element.
                                  Definition: LinkedList.h:56
                                  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
                                  Header header
                                  MQTT header byte.
                                  Definition: MQTTPacket.h:164
                                  int ListRemoveItem(List *aList, void *content, int(*callback)(void *, void *))
                                  Removes and frees an element in a list by comparing the content.
                                  Definition: LinkedList.c:349
                                  struct NodeStruct * child[2]
                                  pointers to child tree nodes 0 = left, 1 = right
                                  Definition: Tree.h:80
                                  bool cleanstart
                                  cleansession flag
                                  Definition: MQTTPacket.h:110
                                  -
                                  Configuration data related to all clients.
                                  Definition: Clients.h:162
                                  -
                                  int enableServerCertAuth
                                  True/False option to enable verification of the server certificate.
                                  Definition: MQTTAsync.h:1084
                                  +
                                  Configuration data related to all clients.
                                  Definition: Clients.h:164
                                  +
                                  int enableServerCertAuth
                                  True/False option to enable verification of the server certificate.
                                  Definition: MQTTAsync.h:1088
                                  size_t size
                                  size of the allocated storage
                                  Definition: Heap.c:73
                                  char * readUTF(char **pptr, char *enddata)
                                  Reads a "UTF" string from the input buffer.
                                  Definition: MQTTPacket.c:413
                                  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
                                  void MQTTClient_destroy(MQTTClient *handle)
                                  This function frees the memory allocated to an MQTT client (see MQTTClient_create()).
                                  Definition: MQTTClient.c:562
                                  -
                                  void * payload
                                  A pointer to the payload of the MQTT message.
                                  Definition: MQTTAsync.h:267
                                  +
                                  void * payload
                                  A pointer to the payload of the MQTT message.
                                  Definition: MQTTAsync.h:271
                                  int enableServerCertAuth
                                  True/False option to enable verification of the server certificate.
                                  Definition: MQTTClient.h:700
                                  unsigned int good
                                  if we have an error on the socket we turn this off
                                  Definition: Clients.h:126
                                  void * MQTTPacket_connack(int MQTTVersion, unsigned char aHeader, char *data, size_t datalen)
                                  Function used in the new packets table to create connack packets.
                                  Definition: MQTTPacketOut.c:142
                                  -
                                  int retained
                                  The retained flag for the LWT message (see MQTTAsync_message.retained).
                                  Definition: MQTTAsync.h:1010
                                  +
                                  int retained
                                  The retained flag for the LWT message (see MQTTAsync_message.retained).
                                  Definition: MQTTAsync.h:1014
                                  The data for a length delimited string.
                                  Definition: MQTTProperties.h:84
                                  Persistence_close pclose
                                  A function pointer to an implementation of Persistence_close().
                                  Definition: MQTTClientPersistence.h:227
                                  int 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
                                  -
                                  int connectTimeout
                                  The time interval in seconds to allow a connect to complete.
                                  Definition: MQTTAsync.h:1241
                                  +
                                  int connectTimeout
                                  The time interval in seconds to allow a connect to complete.
                                  Definition: MQTTAsync.h:1245
                                  char nextMessageType
                                  used for retry and expiry
                                  Definition: Clients.h:62
                                  -
                                  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
                                  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
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTClient.h:820
                                  -
                                  const MQTTAsync_nameValue * httpHeaders
                                  HTTP headers for websockets.
                                  Definition: MQTTAsync.h:1342
                                  +
                                  const MQTTAsync_nameValue * httpHeaders
                                  HTTP headers for websockets.
                                  Definition: MQTTAsync.h:1346
                                  void ListZero(List *newl)
                                  Sets a list structure to empty - all null values.
                                  Definition: LinkedList.c:42
                                  -
                                  void MQTTPacket_freeAck(Ack *pack)
                                  Free allocated storage for an ack packet.
                                  Definition: MQTTPacket.c:617
                                  +
                                  void MQTTPacket_freeAck(Ack *pack)
                                  Free allocated storage for an ack packet.
                                  Definition: MQTTPacket.c:625
                                  char fixed_header[5]
                                  header plus up to 4 length bytes
                                  Definition: SocketBuffer.h:42
                                  void SocketBuffer_cleanup(int socket)
                                  Cleanup any buffers for a specific socket.
                                  Definition: SocketBuffer.c:151
                                  -
                                  The data returned on completion of an unsuccessful API call in the response callback onFailure.
                                  Definition: MQTTAsync.h:533
                                  +
                                  The data returned on completion of an unsuccessful API call in the response callback onFailure.
                                  Definition: MQTTAsync.h:537
                                  const char * httpsProxy
                                  HTTPS proxy for websockets.
                                  Definition: MQTTClient.h:960
                                  const void * data
                                  binary password data
                                  Definition: MQTTClient.h:939
                                  -
                                  MQTTAsync_onFailure * onFailure
                                  A pointer to a callback function to be called if the API call fails.
                                  Definition: MQTTAsync.h:712
                                  -
                                  int maxBufferedMessages
                                  The maximum number of messages allowed to be buffered while not connected.
                                  Definition: MQTTAsync.h:950
                                  +
                                  MQTTAsync_onFailure * onFailure
                                  A pointer to a callback function to be called if the API call fails.
                                  Definition: MQTTAsync.h:716
                                  +
                                  int maxBufferedMessages
                                  The maximum number of messages allowed to be buffered while not connected.
                                  Definition: MQTTAsync.h:954
                                  const char * serverURI
                                  the serverURI connected to
                                  Definition: MQTTClient.h:929
                                  -
                                  static int lines_written
                                  number of lines written to the current output file
                                  Definition: Log.c:102
                                  -
                                  MQTTAsync_willOptions * will
                                  This is a pointer to an MQTTAsync_willOptions structure.
                                  Definition: MQTTAsync.h:1225
                                  +
                                  static int lines_written
                                  number of lines written to the current output file
                                  Definition: Log.c:106
                                  +
                                  MQTTAsync_willOptions * will
                                  This is a pointer to an MQTTAsync_willOptions structure.
                                  Definition: MQTTAsync.h:1229
                                  void MQTTProtocol_keepalive(START_TIME_TYPE now)
                                  MQTT protocol keepAlive processing.
                                  Definition: MQTTProtocolClient.c:660
                                  int count
                                  no of items
                                  Definition: Tree.h:84
                                  static size_t Heap_roundup(size_t size)
                                  Round allocation size up to a multiple of the size of an int.
                                  Definition: Heap.c:98
                                  int msgid
                                  The message identifier is normally reserved for internal use by the MQTT client and server.
                                  Definition: MQTTClient.h:321
                                  int MQTTVersion
                                  Sets the version of MQTT to be used on the connect.
                                  Definition: MQTTClient.h:923
                                  int disableDefaultTrustStore
                                  Don't load default SSL CA.
                                  Definition: MQTTClient.h:752
                                  -
                                  MQTTAsync_message message
                                  the message being sent to the server
                                  Definition: MQTTAsync.h:572
                                  -
                                  int retained
                                  The retained flag serves two purposes depending on whether the message it is associated with is being...
                                  Definition: MQTTAsync.h:300
                                  +
                                  MQTTAsync_message message
                                  the message being sent to the server
                                  Definition: MQTTAsync.h:576
                                  +
                                  int retained
                                  The retained flag serves two purposes depending on whether the message it is associated with is being...
                                  Definition: MQTTAsync.h:304
                                  int MQTTClient_setDisconnected(MQTTClient handle, void *context, MQTTClient_disconnected *disconnected)
                                  Sets the MQTTClient_disconnected() callback function for a client.
                                  Definition: MQTTClient.c:688
                                  union MQTTAsync_successData5::@4 alt
                                  A union of the different values that can be returned for subscribe, unsubscribe and publish.
                                  unsigned char retainAsPublished
                                  To keep the retain flag as on the original publish message, set to 1.
                                  Definition: MQTTSubscribeOpts.h:50
                                  -
                                  size_t len
                                  length of frame
                                  Definition: WebSocket.c:150
                                  +
                                  size_t len
                                  length of frame
                                  Definition: WebSocket.c:152
                                  struct @33::@34 bytes[4]
                                  up to 4 bytes can be used per character
                                  unsigned char rc
                                  MQTT 5 reason code.
                                  Definition: MQTTPacket.h:218
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:700
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:704
                                  Data for a connack packet.
                                  Definition: MQTTPacket.h:133
                                  -
                                  int Thread_destroy_sem(sem_type sem)
                                  Destroy a semaphore which has already been created.
                                  Definition: Thread.c:341
                                  -
                                  void MQTTProtocol_retry(START_TIME_TYPE now, int doRetry, int regardless)
                                  MQTT retry protocol and socket pending writes processing.
                                  Definition: MQTTProtocolClient.c:784
                                  +
                                  int Thread_destroy_sem(sem_type sem)
                                  Destroy a semaphore which has already been created.
                                  Definition: Thread.c:334
                                  +
                                  void MQTTProtocol_retry(START_TIME_TYPE now, int doRetry, int regardless)
                                  MQTT retry protocol and socket pending writes processing.
                                  Definition: MQTTProtocolClient.c:800
                                  int MQTTVersion
                                  Whether the MQTT version is 3.1, 3.1.1, or 5.
                                  Definition: MQTTClient.h:547
                                  -
                                  void * context
                                  calling context - used when calling disconnect_internal
                                  Definition: Clients.h:145
                                  +
                                  void * context
                                  calling context - used when calling disconnect_internal
                                  Definition: Clients.h:147
                                  int MQTTClient_disconnect(MQTTClient handle, int timeout)
                                  This function attempts to disconnect the client from the MQTT server.
                                  Definition: MQTTClient.c:1920
                                  char * SocketBuffer_getQueuedData(int socket, size_t bytes, size_t *actual_len)
                                  Get any queued data for a specific socket.
                                  Definition: SocketBuffer.c:176
                                  -
                                  int MQTTVersion
                                  the version of MQTT being used, 3, 4 or 5
                                  Definition: Clients.h:146
                                  +
                                  int MQTTVersion
                                  the version of MQTT being used, 3, 4 or 5
                                  Definition: Clients.h:148
                                  Structure to hold all socket data for the module.
                                  Definition: Socket.h:109
                                  unsigned int heap_tracking
                                  switch on heap tracking for this tree?
                                  Definition: Tree.h:86
                                  -
                                  int len
                                  binary password length
                                  Definition: MQTTAsync.h:1312
                                  +
                                  int len
                                  binary password length
                                  Definition: MQTTAsync.h:1316
                                  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
                                  const char * enabledCipherSuites
                                  The list of cipher suites that the client will present to the server during the SSL handshake.
                                  Definition: MQTTClient.h:697
                                  void writeChar(char **pptr, char c)
                                  Writes one character to an output buffer.
                                  Definition: MQTTPacket.c:438
                                  int len
                                  the length of the string
                                  Definition: MQTTProperties.h:86
                                  -
                                  const char * privateKeyPassword
                                  The password to load the client's privateKey if encrypted.
                                  Definition: MQTTAsync.h:1071
                                  -
                                  static void MQTTProtocol_retries(START_TIME_TYPE now, Clients *client, int regardless)
                                  MQTT retry processing per client.
                                  Definition: MQTTProtocolClient.c:710
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:1395
                                  -
                                  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
                                  -
                                  int Thread_wait_cond(cond_type condvar, int timeout)
                                  Wait with a timeout (seconds) for condition variable.
                                  Definition: Thread.c:416
                                  -
                                  int timeout
                                  The client delays disconnection for up to this time (in milliseconds) in order to allow in-flight mes...
                                  Definition: MQTTAsync.h:1400
                                  +
                                  const char * privateKeyPassword
                                  The password to load the client's privateKey if encrypted.
                                  Definition: MQTTAsync.h:1075
                                  +
                                  static void MQTTProtocol_retries(START_TIME_TYPE now, Clients *client, int regardless)
                                  MQTT retry processing per client.
                                  Definition: MQTTProtocolClient.c:726
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:1399
                                  +
                                  int MQTTPacket_send_subscribe(List *topics, List *qoss, MQTTSubscribe_options *opts, MQTTProperties *props, int msgid, int dup, Clients *client)
                                  Send an MQTT subscribe packet down a socket.
                                  Definition: MQTTPacketOut.c:226
                                  +
                                  int Thread_wait_cond(cond_type condvar, int timeout)
                                  Wait with a timeout (seconds) for condition variable.
                                  Definition: Thread.c:409
                                  +
                                  int timeout
                                  The client delays disconnection for up to this time (in milliseconds) in order to allow in-flight mes...
                                  Definition: MQTTAsync.h:1404
                                  #define ARRAY_SIZE(a)
                                  Macro to determine the number of elements in a single-dimension array.
                                  Definition: utf-8.c:37
                                  -
                                  const char * enabledCipherSuites
                                  The list of cipher suites that the client will present to the server during the SSL handshake.
                                  Definition: MQTTAsync.h:1081
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:538
                                  +
                                  const char * enabledCipherSuites
                                  The list of cipher suites that the client will present to the server during the SSL handshake.
                                  Definition: MQTTAsync.h:1085
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:542
                                  void * ssl_error_context
                                  Application-specific contex for OpenSSL error handler ERR_print_errors_cb Exists only if struct_versi...
                                  Definition: MQTTClient.h:732
                                  -
                                  MQTTProperties properties
                                  MQTT V5 input properties.
                                  Definition: MQTTAsync.h:1422
                                  -
                                  enum MQTTReasonCodes reasonCode
                                  MQTT V5 reason code returned.
                                  Definition: MQTTAsync.h:593
                                  +
                                  MQTTProperties properties
                                  MQTT V5 input properties.
                                  Definition: MQTTAsync.h:1426
                                  +
                                  enum MQTTReasonCodes reasonCode
                                  MQTT V5 reason code returned.
                                  Definition: MQTTAsync.h:597
                                  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
                                  -
                                  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
                                  +
                                  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
                                  struct MQTTAsync_successData5::@4::@6 pub
                                  For publish, the message being sent to the server.
                                  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
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:946
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:950
                                  char * clientID
                                  string client id
                                  Definition: MQTTPacket.h:121
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTClient.h:809
                                  -
                                  int sslVersion
                                  The SSL/TLS version to use.
                                  Definition: MQTTAsync.h:1090
                                  +
                                  int sslVersion
                                  The SSL/TLS version to use.
                                  Definition: MQTTAsync.h:1094
                                  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
                                  bool password
                                  3.1 password
                                  Definition: MQTTPacket.h:114
                                  int Socket_getch(int socket, char *c)
                                  Reads one byte from a socket.
                                  Definition: Socket.c:339
                                  @@ -551,11 +552,11 @@

                                  struct MQTTClient_willOptions::@17 payload
                                  The LWT payload in binary form.
                                  int payloadlen
                                  payload length
                                  Definition: MQTTPacket.h:204
                                  union MQTTAsync_successData::@1 alt
                                  A union of the different values that can be returned for subscribe, unsubscribe and publish.
                                  -
                                  int maxInflight
                                  This controls how many messages can be in-flight simultaneously.
                                  Definition: MQTTAsync.h:1219
                                  -
                                  willMessages * will
                                  the MQTT will message, if any
                                  Definition: Clients.h:134
                                  +
                                  int maxInflight
                                  This controls how many messages can be in-flight simultaneously.
                                  Definition: MQTTAsync.h:1223
                                  +
                                  willMessages * will
                                  the MQTT will message, if any
                                  Definition: Clients.h:136
                                  Data for a connect packet.
                                  Definition: MQTTPacket.h:89
                                  int Socket_continueWrites(fd_set *pwset, int *socket)
                                  Continue any outstanding writes for a socket set.
                                  Definition: Socket.c:990
                                  -
                                  int disableDefaultTrustStore
                                  Don't load default SSL CA.
                                  Definition: MQTTAsync.h:1136
                                  +
                                  int disableDefaultTrustStore
                                  Don't load default SSL CA.
                                  Definition: MQTTAsync.h:1140
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTClient.h:273
                                  void ListEmpty(List *aList)
                                  Removes and frees all items in a list, leaving the list ready for new items.
                                  Definition: LinkedList.c:359
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTClient.h:230
                                  @@ -563,15 +564,15 @@

                                  int messageIDCompare(void *a, void *b)
                                  List callback function for comparing Message structures by message id.
                                  Definition: MQTTProtocolClient.c:65
                                  static const char * UTF8_char_validate(int len, const char *data)
                                  Validate a single UTF-8 character.
                                  Definition: utf-8.c:76
                                  int do_openssl_init
                                  1 = we do openssl init, 0 = leave it to the application
                                  Definition: MQTTClient.h:232
                                  -
                                  The data returned on completion of a successful API call in the response callback onSuccess.
                                  Definition: MQTTAsync.h:587
                                  +
                                  The data returned on completion of a successful API call in the response callback onSuccess.
                                  Definition: MQTTAsync.h:591
                                  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
                                  -
                                  const char * CApath
                                  From the OpenSSL documentation: If CApath is not NULL, it points to a directory containing CA certifi...
                                  Definition: MQTTAsync.h:1104
                                  +
                                  const char * CApath
                                  From the OpenSSL documentation: If CApath is not NULL, it points to a directory containing CA certifi...
                                  Definition: MQTTAsync.h:1108
                                  Persistence_keys pkeys
                                  A function pointer to an implementation of Persistence_keys().
                                  Definition: MQTTClientPersistence.h:243
                                  unsigned char readChar(char **pptr)
                                  Reads one character from the input buffer.
                                  Definition: MQTTPacket.c:425
                                  int max_count
                                  max number of properties that the currently allocated array can store
                                  Definition: MQTTProperties.h:115
                                  static Tree heap
                                  Tree that holds the allocation records.
                                  Definition: Heap.c:79
                                  MQTTResponse MQTTClient_connect5(MQTTClient handle, MQTTClient_connectOptions *options, MQTTProperties *connectProperties, MQTTProperties *willProperties)
                                  Attempts to connect a previously-created client (see MQTTClient_create()) to an MQTT server using MQT...
                                  Definition: MQTTClient.c:1670
                                  -
                                  Options for the ::MQTTAsync_disconnect call.
                                  Definition: MQTTAsync.h:1390
                                  +
                                  Options for the ::MQTTAsync_disconnect call.
                                  Definition: MQTTAsync.h:1394
                                  Persistence_remove premove
                                  A function pointer to an implementation of Persistence_remove().
                                  Definition: MQTTClientPersistence.h:239
                                  MQTTClient_nameValue * MQTTClient_getVersionInfo(void)
                                  This function returns version information about the library.
                                  Definition: MQTTClient.c:2896
                                  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 @@

                                  MQTTProperties properties
                                  MQTT 5.0 properties.
                                  Definition: MQTTPacket.h:189
                                  int MQTTProtocol_startPublish(Clients *pubclient, Publish *publish, int qos, int retained, Messages **mm)
                                  Start a new publish exchange.
                                  Definition: MQTTProtocolClient.c:163
                                  int payloadlen
                                  The length of the MQTT message payload in bytes.
                                  Definition: MQTTClient.h:275
                                  -
                                  static FILE * trace_destination
                                  flag to indicate if trace is to be sent to a stream
                                  Definition: Log.c:99
                                  +
                                  static FILE * trace_destination
                                  flag to indicate if trace is to be sent to a stream
                                  Definition: Log.c:103
                                  Definition: Clients.h:78
                                  int SocketBuffer_newDefQ(void)
                                  Create a new default queue when one has just been used.
                                  Definition: SocketBuffer.c:79
                                  const char * MQTTClient_strerror(int code)
                                  Returns a pointer to the string representation of the error or NULL.
                                  Definition: MQTTClient.c:2932
                                  @@ -589,17 +590,17 @@

                                  int HeapDump(FILE *file)
                                  Dump the state of the heap.
                                  Definition: Heap.c:462
                                  List * clientsds
                                  list of client socket descriptors
                                  Definition: Socket.h:114
                                  const char * username
                                  MQTT v3.1 user name.
                                  Definition: Clients.h:120
                                  -
                                  raw websocket frame data
                                  Definition: WebSocket.c:148
                                  +
                                  raw websocket frame data
                                  Definition: WebSocket.c:150
                                  int pstcontainskey(void *handle, char *key)
                                  Returns whether if a wire message is persisted in the client persistence directory.
                                  Definition: MQTTPersistenceDefault.c:405
                                  bool dup
                                  DUP flag bit.
                                  Definition: MQTTPacket.h:79
                                  Client will message data.
                                  Definition: Clients.h:69
                                  -
                                  int Thread_destroy_cond(cond_type condvar)
                                  Destroy a condition variable.
                                  Definition: Thread.c:444
                                  +
                                  int Thread_destroy_cond(cond_type condvar)
                                  Destroy a condition variable.
                                  Definition: Thread.c:437
                                  int maxInflightMessages
                                  The maximum number of messages in flight.
                                  Definition: MQTTClient.h:944
                                  int pstclose(void *handle)
                                  Delete client persistence directory (if empty).
                                  Definition: MQTTPersistenceDefault.c:371
                                  -
                                  char *const * serverURIs
                                  Definition: MQTTAsync.h:1288
                                  -
                                  int maxRetryInterval
                                  Maximum retry interval in seconds.
                                  Definition: MQTTAsync.h:1307
                                  +
                                  char *const * serverURIs
                                  Definition: MQTTAsync.h:1292
                                  +
                                  int maxRetryInterval
                                  Maximum retry interval in seconds.
                                  Definition: MQTTAsync.h:1311
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTClient.h:614
                                  -
                                  int keepAliveInterval
                                  The "keep alive" interval, measured in seconds, defines the maximum time that should pass without com...
                                  Definition: MQTTAsync.h:1193
                                  +
                                  int keepAliveInterval
                                  The "keep alive" interval, measured in seconds, defines the maximum time that should pass without com...
                                  Definition: MQTTAsync.h:1197
                                  ListElement * ListInsert(List *aList, void *content, size_t size, ListElement *index)
                                  Insert an item to a list at a specific position.
                                  Definition: LinkedList.c:107
                                  unsigned int cleanstart
                                  MQTT V5 clean start flag.
                                  Definition: Clients.h:124
                                  int Socket_noPendingWrites(int socket)
                                  Indicate whether any data is pending outbound for a socket.
                                  Definition: Socket.c:424
                                  @@ -607,45 +608,45 @@

                                  void * ListPopTail(List *aList)
                                  Removes but does not free the last item in a list.
                                  Definition: LinkedList.c:306
                                  Header header
                                  MQTT header byte.
                                  Definition: MQTTPacket.h:173
                                  char * payload
                                  binary payload, length delimited
                                  Definition: MQTTPacket.h:203
                                  -
                                  void * ssl_psk_context
                                  Application-specific contex for ssl_psk_cb Exists only if struct_version >= 4.
                                  Definition: MQTTAsync.h:1129
                                  +
                                  void * ssl_psk_context
                                  Application-specific contex for ssl_psk_cb Exists only if struct_version >= 4.
                                  Definition: MQTTAsync.h:1133
                                  const void * password
                                  MQTT v3.1 binary password.
                                  Definition: Clients.h:122
                                  int SocketBuffer_initialize(void)
                                  Initialize the socketBuffer module.
                                  Definition: SocketBuffer.c:102
                                  -
                                  int MQTTPacket_send_pubcomp(int MQTTVersion, int msgid, networkHandles *net, const char *clientID)
                                  Send an MQTT PUBCOMP packet down a socket.
                                  Definition: MQTTPacket.c:763
                                  +
                                  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
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTClient.h:618
                                  -
                                  List * messageQueue
                                  inbound complete but undelivered messages
                                  Definition: Clients.h:137
                                  +
                                  List * messageQueue
                                  inbound complete but undelivered messages
                                  Definition: Clients.h:139
                                  unsigned int cleansession
                                  MQTT V3 clean session flag.
                                  Definition: Clients.h:123
                                  -
                                  int MQTTVersion
                                  the version of MQTT being used
                                  Definition: MQTTAsync.h:614
                                  -
                                  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
                                  +
                                  int MQTTVersion
                                  the version of MQTT being used
                                  Definition: MQTTAsync.h:618
                                  +
                                  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
                                  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
                                  -
                                  int msgid
                                  The message identifier is reserved for internal use by the MQTT client and server.
                                  Definition: MQTTAsync.h:313
                                  -
                                  const char * value
                                  value string
                                  Definition: MQTTAsync.h:1160
                                  +
                                  int msgid
                                  The message identifier is reserved for internal use by the MQTT client and server.
                                  Definition: MQTTAsync.h:317
                                  +
                                  const char * value
                                  value string
                                  Definition: MQTTAsync.h:1164
                                  sem_type Thread_create_sem(int *rc)
                                  Create a new semaphore.
                                  Definition: Thread.c:190
                                  unsigned int protos_len
                                  The length of the vector protos vector Exists only if struct_version >= 5.
                                  Definition: MQTTClient.h:767
                                  -
                                  static int max_lines_per_file
                                  maximum number of lines to write to one trace file
                                  Definition: Log.c:103
                                  +
                                  static int max_lines_per_file
                                  maximum number of lines to write to one trace file
                                  Definition: Log.c:107
                                  Structure to hold all data for one tree.
                                  Definition: Tree.h:76
                                  void * ptr
                                  pointer to the allocated storage
                                  Definition: Heap.c:72
                                  -
                                  List * outboundMsgs
                                  outbound in flight messages
                                  Definition: Clients.h:136
                                  +
                                  List * outboundMsgs
                                  outbound in flight messages
                                  Definition: Clients.h:138
                                  Each item on the heap is recorded with this structure.
                                  Definition: Heap.c:68
                                  -
                                  const char * username
                                  MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
                                  Definition: MQTTAsync.h:463
                                  +
                                  const char * username
                                  MQTT servers that support the MQTT v3.1 protocol provide authentication and authorisation by user nam...
                                  Definition: MQTTAsync.h:467
                                  Options for the MQTTClient_createWithOptions call.
                                  Definition: MQTTClient.h:536
                                  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
                                  Publications * MQTTProtocol_storePublication(Publish *publish, int *len)
                                  Store message data for possible retry.
                                  Definition: MQTTProtocolClient.c:254
                                  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
                                  Persistence_open popen
                                  A function pointer to an implementation of Persistence_open().
                                  Definition: MQTTClientPersistence.h:223
                                  -
                                  int Thread_post_sem(sem_type sem)
                                  Post a semaphore.
                                  Definition: Thread.c:313
                                  +
                                  int Thread_post_sem(sem_type sem)
                                  Post a semaphore.
                                  Definition: Thread.c:306
                                  int UTF8_validateString(const char *string)
                                  Validate a null-terminated string has only UTF-8 characters.
                                  Definition: utf-8.c:156
                                  int MQTTPacket_encode(char *buf, size_t length)
                                  Encodes the message length according to the MQTT algorithm.
                                  Definition: MQTTPacket.c:297
                                  -
                                  char * destinationName
                                  the topic destination for the message
                                  Definition: MQTTAsync.h:573
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:456
                                  +
                                  char * destinationName
                                  the topic destination for the message
                                  Definition: MQTTAsync.h:577
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:460
                                  unsigned int connected
                                  whether it is currently connected
                                  Definition: Clients.h:125
                                  ListElement * ListAppend(List *aList, void *content, size_t size)
                                  Append an item to a list.
                                  Definition: LinkedList.c:90
                                  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
                                  size_t current_size
                                  current size of the heap in bytes
                                  Definition: Heap.h:64
                                  -
                                  void * beforeWrite_context
                                  context to be used with the persistence beforeWrite callbacks
                                  Definition: Clients.h:143
                                  +
                                  void * beforeWrite_context
                                  context to be used with the persistence beforeWrite callbacks
                                  Definition: Clients.h:145
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTSubscribeOpts.h:38
                                  static int ListUnlink(List *aList, void *content, int(*callback)(void *, void *), int freeContent)
                                  Removes and optionally frees an element in a list by comparing the content.
                                  Definition: LinkedList.c:201
                                  -
                                  int retryInterval
                                  The time interval in seconds after which unacknowledged publish requests are retried during a TCP ses...
                                  Definition: MQTTAsync.h:1249
                                  -
                                  void MQTTProtocol_emptyMessageList(List *msgList)
                                  Empty a message list, leaving it able to accept new messages.
                                  Definition: MQTTProtocolClient.c:874
                                  +
                                  int retryInterval
                                  The time interval in seconds after which unacknowledged publish requests are retried during a TCP ses...
                                  Definition: MQTTAsync.h:1253
                                  +
                                  void MQTTProtocol_emptyMessageList(List *msgList)
                                  Empty a message list, leaving it able to accept new messages.
                                  Definition: MQTTProtocolClient.c:890
                                  bool retain
                                  retained flag bit
                                  Definition: MQTTPacket.h:77
                                  static const char * packet_names[]
                                  List of the predefined MQTT v3/v5 packet names.
                                  Definition: MQTTPacket.c:50
                                  int MQTTProtocol_unsubscribe(Clients *client, List *topics, int msgID, MQTTProperties *props)
                                  MQTT outgoing unsubscribe processing for a client.
                                  Definition: MQTTProtocolOut.c:413
                                  @@ -653,69 +654,69 @@

                                  char ** buffers
                                  number of buffers/buflens/frees
                                  Definition: Socket.h:99
                                  static char * readUTFlen(char **pptr, char *enddata, int *len)
                                  Reads a "UTF" string from the input buffer.
                                  Definition: MQTTPacket.c:380
                                  const char * password
                                  MQTT servers that support the MQTT v3.1.1 protocol provide authentication and authorisation by user n...
                                  Definition: MQTTClient.h:880
                                  -
                                  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
                                  +
                                  int MQTTPacket_send_unsubscribe(List *topics, MQTTProperties *props, int msgid, int dup, Clients *client)
                                  Send an MQTT unsubscribe packet down a socket.
                                  Definition: MQTTPacketOut.c:362
                                  const char * username
                                  MQTT servers that support the MQTT v3.1.1 protocol provide authentication and authorisation by user n...
                                  Definition: MQTTClient.h:874
                                  Data for one of the ack packets.
                                  Definition: MQTTPacket.h:214
                                  -
                                  char * MQTTStrdup(const char *src)
                                  Duplicate a string, safely, allocating space on the heap.
                                  Definition: MQTTProtocolClient.c:937
                                  +
                                  char * MQTTStrdup(const char *src)
                                  Duplicate a string, safely, allocating space on the heap.
                                  Definition: MQTTProtocolClient.c:953
                                  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 Socket_outTerminate(void)
                                  Terminate the socket module.
                                  Definition: Socket.c:152
                                  Definition: MQTTAsyncUtils.h:148
                                  Definition: MQTTProperties.c:28
                                  -
                                  const char * httpProxy
                                  HTTP proxy for websockets.
                                  Definition: MQTTAsync.h:1346
                                  +
                                  const char * httpProxy
                                  HTTP proxy for websockets.
                                  Definition: MQTTAsync.h:1350
                                  Persistence_containskey pcontainskey
                                  A function pointer to an implementation of Persistence_containskey().
                                  Definition: MQTTClientPersistence.h:251
                                  unsigned char retainHandling
                                  0 - send retained messages at the time of the subscribe (original MQTT behaviour) 1 - send retained m...
                                  Definition: MQTTSubscribeOpts.h:55
                                  int Socket_error(char *aString, int sock)
                                  Gets the specific error corresponding to SOCKET_ERROR.
                                  Definition: Socket.c:102
                                  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_onSuccess5 * onSuccess5
                                  A pointer to a callback function to be called if the disconnect successfully completes.
                                  Definition: MQTTAsync.h:1432
                                  +
                                  MQTTAsync_onSuccess5 * onSuccess5
                                  A pointer to a callback function to be called if the disconnect successfully completes.
                                  Definition: MQTTAsync.h:1436
                                  int MQTTPersistence_restoreMessageQueue(Clients *c)
                                  Restores a queue of messages from persistence to memory.
                                  Definition: MQTTPersistence.c:856
                                  const char * Messages_get(int index, enum LOG_LEVELS log_level)
                                  Get a log message by its index.
                                  Definition: Messages.c:94
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:1055
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:1059
                                  int readInt(char **pptr)
                                  Calculates an integer from two bytes read from the input buffer.
                                  Definition: MQTTPacket.c:359
                                  Definition: Log.h:55
                                  void * TreeAddByIndex(Tree *aTree, void *content, size_t size, int index)
                                  Add an item to a tree.
                                  Definition: Tree.c:210
                                  int websocket
                                  socket has been upgraded to use web sockets
                                  Definition: Clients.h:92
                                  const char * privateKeyPassword
                                  The password to load the client's privateKey if encrypted.
                                  Definition: MQTTClient.h:687
                                  -
                                  Initialization options.
                                  Definition: MQTTAsync.h:217
                                  +
                                  Initialization options.
                                  Definition: MQTTAsync.h:221
                                  Persistence_clear pclear
                                  A function pointer to an implementation of Persistence_clear().
                                  Definition: MQTTClientPersistence.h:247
                                  void MQTTPersistence_wrapMsgID(Clients *client)
                                  Checks whether the message IDs wrapped by looking for the largest gap between two consecutive message...
                                  Definition: MQTTPersistence.c:605
                                  -
                                  int qos
                                  The quality of service (QoS) assigned to the message.
                                  Definition: MQTTAsync.h:281
                                  -
                                  MQTTAsync_token token
                                  A token identifying the failed request.
                                  Definition: MQTTAsync.h:524
                                  +
                                  int qos
                                  The quality of service (QoS) assigned to the message.
                                  Definition: MQTTAsync.h:285
                                  +
                                  MQTTAsync_token token
                                  A token identifying the failed request.
                                  Definition: MQTTAsync.h:528
                                  int msgId
                                  MQTT message id.
                                  Definition: MQTTPacket.h:202
                                  static heap_info state
                                  global heap state information
                                  Definition: Heap.c:58
                                  int retryInterval
                                  The time interval in seconds after which unacknowledged publish requests are retried during a TCP ses...
                                  Definition: MQTTClient.h:892
                                  int(* compare)(void *, void *, int)
                                  comparison function
                                  Definition: Tree.h:81
                                  -
                                  MQTTAsync_token token
                                  A token is returned from the call.
                                  Definition: MQTTAsync.h:724
                                  +
                                  MQTTAsync_token token
                                  A token is returned from the call.
                                  Definition: MQTTAsync.h:728
                                  List * qoss
                                  list of granted QoSs (MQTT 3/4) / reason codes (MQTT 5)
                                  Definition: MQTTPacket.h:177
                                  -
                                  const unsigned char * protos
                                  The protocol-lists must be in wire-format, which is defined as a vector of non-empty,...
                                  Definition: MQTTAsync.h:1145
                                  -
                                  int Thread_lock_mutex(mutex_type mutex)
                                  Lock a mutex which has alrea.
                                  Definition: Thread.c:112
                                  +
                                  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
                                  +
                                  int Thread_lock_mutex(mutex_type mutex)
                                  Lock a mutex which has alrea.
                                  Definition: Thread.c:111
                                  void SocketBuffer_queueChar(int socket, char c)
                                  Queued a Charactor to a specific socket.
                                  Definition: SocketBuffer.c:303
                                  int pending_socketcompare(void *a, void *b)
                                  List callback function for comparing pending_writes by socket.
                                  Definition: SocketBuffer.c:388
                                  -
                                  void * afterRead_context
                                  context to be used with the persistence afterRead callback
                                  Definition: Clients.h:144
                                  +
                                  void * afterRead_context
                                  context to be used with the persistence afterRead callback
                                  Definition: Clients.h:146
                                  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
                                  -
                                  int msgID
                                  the MQTT message id
                                  Definition: Clients.h:130
                                  +
                                  int msgID
                                  the MQTT message id
                                  Definition: Clients.h:132
                                  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
                                  int MQTTPersistence_clear(Clients *c)
                                  Clears the persistent store.
                                  Definition: MQTTPersistence.c:166
                                  static socket_queue * def_queue
                                  Default input queue buffer.
                                  Definition: SocketBuffer.c:45
                                  uint8_t mask[4]
                                  the websockets mask the payload is masked with, if any
                                  Definition: MQTTPacket.h:207
                                  -
                                  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
                                  +
                                  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
                                  int passwordlen
                                  MQTT password length.
                                  Definition: Clients.h:121
                                  MQTTProperties properties
                                  The MQTT V5 properties associated with the message.
                                  Definition: MQTTClient.h:325
                                  -
                                  const char * name
                                  name string
                                  Definition: MQTTAsync.h:1159
                                  +
                                  const char * name
                                  name string
                                  Definition: MQTTAsync.h:1163
                                  int * frees
                                  array of lengths of buffers
                                  Definition: Socket.h:101
                                  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
                                  int MQTTPersistence_close(Clients *c)
                                  Close persistent store.
                                  Definition: MQTTPersistence.c:137
                                  -
                                  MQTTProperties properties
                                  The MQTT V5 properties associated with the message.
                                  Definition: MQTTAsync.h:317
                                  +
                                  MQTTProperties properties
                                  The MQTT V5 properties associated with the message.
                                  Definition: MQTTAsync.h:321
                                  MQTTProperties properties
                                  MQTT 5.0 properties.
                                  Definition: MQTTPacket.h:176
                                  -
                                  MQTTAsync_onFailure5 * onFailure5
                                  A pointer to a callback function to be called if the connect fails.
                                  Definition: MQTTAsync.h:1338
                                  +
                                  MQTTAsync_onFailure5 * onFailure5
                                  A pointer to a callback function to be called if the connect fails.
                                  Definition: MQTTAsync.h:1342
                                  int pstremove(void *handle, char *key)
                                  Delete a persisted message from the client persistence directory.
                                  Definition: MQTTPersistenceDefault.c:322
                                  -
                                  MQTTProperties properties
                                  The MQTT properties on the ack, if any.
                                  Definition: MQTTAsync.h:544
                                  -
                                  MQTTProperties * willProperties
                                  MQTT V5 properties for the will message in the connect.
                                  Definition: MQTTAsync.h:1326
                                  -
                                  The data returned on completion of a successful API call in the response callback onSuccess.
                                  Definition: MQTTAsync.h:556
                                  +
                                  MQTTProperties properties
                                  The MQTT properties on the ack, if any.
                                  Definition: MQTTAsync.h:548
                                  +
                                  MQTTProperties * willProperties
                                  MQTT V5 properties for the will message in the connect.
                                  Definition: MQTTAsync.h:1330
                                  +
                                  The data returned on completion of a successful API call in the response callback onSuccess.
                                  Definition: MQTTAsync.h:560
                                  A structure containing the function pointers to a persistence implementation and the context or state...
                                  Definition: MQTTClientPersistence.h:215
                                  -
                                  int keepAliveInterval
                                  the MQTT keep alive interval
                                  Definition: Clients.h:131
                                  +
                                  int keepAliveInterval
                                  the MQTT keep alive interval
                                  Definition: Clients.h:133
                                  struct MQTTAsync_successData5::@4::@5 sub
                                  For subscribeMany, the list of reasonCodes returned by the server.
                                  int MQTTVersion
                                  the version of MQTT
                                  Definition: MQTTPacket.h:188
                                  -
                                  The data returned on completion of an unsuccessful API call in the response callback onFailure.
                                  Definition: MQTTAsync.h:521
                                  +
                                  The data returned on completion of an unsuccessful API call in the response callback onFailure.
                                  Definition: MQTTAsync.h:525
                                  char * Socket_getaddrname(struct sockaddr *sa, int sock)
                                  Convert a numeric address to character string.
                                  Definition: Socket.c:1036
                                  Bitfields for the MQTT header byte.
                                  Definition: MQTTPacket.h:63
                                  Structure to hold all data for one list.
                                  Definition: LinkedList.h:67
                                  @@ -725,38 +726,38 @@

                                  Definition: Thread.h:46
                                  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
                                  const char * message
                                  The LWT payload in string form.
                                  Definition: MQTTClient.h:622
                                  -
                                  MQTTPersistence_beforeWrite * beforeWrite
                                  persistence write callback
                                  Definition: Clients.h:141
                                  -
                                  enum MQTTReasonCodes reasonCode
                                  Reason code for MQTTV5 disconnect.
                                  Definition: MQTTAsync.h:1426
                                  +
                                  MQTTPersistence_beforeWrite * beforeWrite
                                  persistence write callback
                                  Definition: Clients.h:143
                                  +
                                  enum MQTTReasonCodes reasonCode
                                  Reason code for MQTTV5 disconnect.
                                  Definition: MQTTAsync.h:1430
                                  MQTTProperties properties
                                  MQTT 5.0 properties.
                                  Definition: MQTTPacket.h:155
                                  struct MQTTAsync_connectData::@0 binarypwd
                                  The password parameter of the MQTT authentication.
                                  struct MQTTAsync_connectOptions::@10 binarypwd
                                  Optional binary password.
                                  -
                                  void MQTTPacket_free_packet(MQTTPacket *pack)
                                  Free allocated storage for a various packet tyoes.
                                  Definition: MQTTPacket.c:905
                                  -
                                  const char * httpsProxy
                                  HTTPS proxy for websockets.
                                  Definition: MQTTAsync.h:1350
                                  +
                                  void MQTTPacket_free_packet(MQTTPacket *pack)
                                  Free allocated storage for a various packet tyoes.
                                  Definition: MQTTPacket.c:921
                                  +
                                  const char * httpsProxy
                                  HTTPS proxy for websockets.
                                  Definition: MQTTAsync.h:1354
                                  void * mymalloc(char *file, int line, size_t size)
                                  Allocates a block of memory.
                                  Definition: Heap.c:158
                                  int len
                                  number of elements in the following array (1 to 4)
                                  Definition: utf-8.c:46
                                  -
                                  MQTTAsync_connectOptions defines several settings that control the way the client connects to an MQTT...
                                  Definition: MQTTAsync.h:1168
                                  -
                                  void * context
                                  A pointer to any application-specific context.
                                  Definition: MQTTAsync.h:718
                                  +
                                  MQTTAsync_connectOptions defines several settings that control the way the client connects to an MQTT...
                                  Definition: MQTTAsync.h:1172
                                  +
                                  void * context
                                  A pointer to any application-specific context.
                                  Definition: MQTTAsync.h:722
                                  size_t buflen
                                  total length of the buffer
                                  Definition: SocketBuffer.h:43
                                  MQTT version 5.0 response information.
                                  Definition: MQTTClient.h:998
                                  -
                                  unsigned int protos_len
                                  The length of the vector protos vector Exists only if struct_version >= 5.
                                  Definition: MQTTAsync.h:1151
                                  +
                                  unsigned int protos_len
                                  The length of the vector protos vector Exists only if struct_version >= 5.
                                  Definition: MQTTAsync.h:1155
                                  ListElement * last
                                  last element in the list
                                  Definition: LinkedList.h:70
                                  char struct_id[4]
                                  The eyecatcher for this structure.
                                  Definition: MQTTClient.h:539
                                  Data related to one client.
                                  Definition: Clients.h:117
                                  ListElement * ListFind(List *aList, void *content)
                                  Finds an element in a list by comparing the content pointers, rather than the contents.
                                  Definition: LinkedList.c:140
                                  void Heap_unlink(char *file, int line, void *p)
                                  Remove an item from the recorded heap without actually freeing it.
                                  Definition: Heap.c:300
                                  -
                                  size_t pos
                                  current position within the buffer
                                  Definition: WebSocket.c:151
                                  -
                                  int Thread_unlock_mutex(mutex_type mutex)
                                  Unlock a mutex which has already been locked.
                                  Definition: Thread.c:133
                                  +
                                  size_t pos
                                  current position within the buffer
                                  Definition: WebSocket.c:153
                                  +
                                  int Thread_unlock_mutex(mutex_type mutex)
                                  Unlock a mutex which has already been locked.
                                  Definition: Thread.c:132
                                  ListElement * first
                                  first element in the list
                                  Definition: LinkedList.h:69
                                  pf new_packets[]
                                  Array of functions to build packets, indexed according to packet code.
                                  Definition: MQTTPacket.c:73
                                  void * context
                                  A pointer to any data required to initialize the persistent store.
                                  Definition: MQTTClientPersistence.h:219
                                  int Heap_initialize(void)
                                  Heap initialization.
                                  Definition: Heap.c:406
                                  char * willTopic
                                  will topic
                                  Definition: MQTTPacket.h:122
                                  -
                                  const void * data
                                  binary payload data
                                  Definition: MQTTAsync.h:1020
                                  +
                                  const void * data
                                  binary payload data
                                  Definition: MQTTAsync.h:1024
                                  mutex_type Thread_create_mutex(int *rc)
                                  Create a new mutex.
                                  Definition: Thread.c:88
                                  unsigned char noLocal
                                  To not receive our own publications, set to 1.
                                  Definition: MQTTSubscribeOpts.h:45
                                  -
                                  MQTTAsync_onFailure * onFailure
                                  A pointer to a callback function to be called if the connect fails.
                                  Definition: MQTTAsync.h:1266
                                  -
                                  MQTTAsync_onFailure5 * onFailure5
                                  A pointer to a callback function to be called if the API call successfully completes.
                                  Definition: MQTTAsync.h:736
                                  -
                                  void MQTTPacket_freePublish(Publish *pack)
                                  Free allocated storage for a publish packet.
                                  Definition: MQTTPacket.c:601
                                  +
                                  MQTTAsync_onFailure * onFailure
                                  A pointer to a callback function to be called if the connect fails.
                                  Definition: MQTTAsync.h:1270
                                  +
                                  MQTTAsync_onFailure5 * onFailure5
                                  A pointer to a callback function to be called if the API call successfully completes.
                                  Definition: MQTTAsync.h:740
                                  +
                                  void MQTTPacket_freePublish(Publish *pack)
                                  Free allocated storage for a publish packet.
                                  Definition: MQTTPacket.c:609
                                  void writeUTF(char **pptr, const char *string)
                                  Writes a "UTF" string to an output buffer.
                                  Definition: MQTTPacket.c:464
                                  ListElement * ListPrevElement(List *aList, ListElement **pos)
                                  Backward iteration through a list.
                                  Definition: LinkedList.c:424
                                  int count
                                  number of property entries in the array
                                  Definition: MQTTProperties.h:114
                                  @@ -765,60 +766,61 @@

                                  char * Protocol
                                  MQTT protocol name.
                                  Definition: MQTTPacket.h:120
                                  const char * MQTTPacket_name(int ptype)
                                  Converts an MQTT packet code into its name.
                                  Definition: MQTTPacket.c:65
                                  void writeInt(char **pptr, int anInt)
                                  Writes an integer as 2 bytes to an output buffer.
                                  Definition: MQTTPacket.c:450
                                  -
                                  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
                                  +
                                  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
                                  MQTTProperty * array
                                  array of properties
                                  Definition: MQTTProperties.h:117
                                  -
                                  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
                                  +
                                  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
                                  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
                                  -
                                  const void * data
                                  binary password data
                                  Definition: MQTTAsync.h:1313
                                  +
                                  const void * data
                                  binary password data
                                  Definition: MQTTAsync.h:1317
                                  union Connack::@23 flags
                                  connack flags byte
                                  char byte
                                  the whole byte
                                  Definition: MQTTPacket.h:65
                                  Definition: StackTrace.c:53
                                  int MQTTVersion
                                  current MQTT version being used to connect
                                  Definition: MQTTAsyncUtils.h:83
                                  -
                                  static char * trace_destination_name
                                  the name of the trace file
                                  Definition: Log.c:100
                                  -
                                  MQTTAsync_message message
                                  the message being sent to the server
                                  Definition: MQTTAsync.h:607
                                  +
                                  static char * trace_destination_name
                                  the name of the trace file
                                  Definition: Log.c:104
                                  +
                                  MQTTAsync_message message
                                  the message being sent to the server
                                  Definition: MQTTAsync.h:611
                                  char upper
                                  upper limit of valid range
                                  Definition: utf-8.c:50
                                  int retained
                                  The retained flag serves two purposes depending on whether the message it is associated with is being...
                                  Definition: MQTTClient.h:310
                                  int ListDetachItem(List *aList, void *content, int(*callback)(void *, void *))
                                  Removes but does not free an element in a list by comparing the content.
                                  Definition: LinkedList.c:335
                                  int MQTTClient_connect(MQTTClient handle, MQTTClient_connectOptions *options)
                                  This function attempts to connect a previously-created client (see MQTTClient_create()) to an MQTT se...
                                  Definition: MQTTClient.c:1656
                                  void SocketBuffer_interrupted(int socket, size_t actual_len)
                                  A socket read was interrupted so we need to queue data.
                                  Definition: SocketBuffer.c:252
                                  -
                                  int reasonCodeCount
                                  the number of reason codes in the reasonCodes array
                                  Definition: MQTTAsync.h:601
                                  +
                                  int reasonCodeCount
                                  the number of reason codes in the reasonCodes array
                                  Definition: MQTTAsync.h:605
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTClient.h:671
                                  static int Internal_heap_unlink(char *file, int line, void *p)
                                  Remove an item from the recorded heap without actually freeing it.
                                  Definition: Heap.c:245
                                  char * FindString(char *filename, const char *eyecatcher_input)
                                  Finds an eyecatcher in a binary file and returns the following value.
                                  Definition: MQTTVersion.c:74
                                  -
                                  MQTTProperties properties
                                  MQTT V5 input properties.
                                  Definition: MQTTAsync.h:740
                                  +
                                  MQTTProperties properties
                                  MQTT V5 input properties.
                                  Definition: MQTTAsync.h:744
                                  int(* Persistence_open)(void **handle, const char *clientID, const char *serverURI, void *context)
                                  Initialize the persistent store.
                                  Definition: MQTTClientPersistence.h:113
                                  -
                                  Definition: Log.c:76
                                  +
                                  Definition: Log.c:80
                                  void * MQTTPacket_Factory(int MQTTVersion, networkHandles *net, int *error)
                                  Reads one MQTT packet from a socket.
                                  Definition: MQTTPacket.c:103
                                  int sslVersion
                                  The SSL/TLS version to use.
                                  Definition: MQTTClient.h:706
                                  int pstopen(void **handle, const char *clientID, const char *serverURI, void *context)
                                  Create persistence directory for the client: context/clientID-serverURI.
                                  Definition: MQTTPersistenceDefault.c:65
                                  Definition: SHA1.h:39
                                  int MQTTClient_waitForCompletion(MQTTClient handle, MQTTClient_deliveryToken mdt, unsigned long timeout)
                                  This function is called by the client application to synchronize execution of the main thread with co...
                                  Definition: MQTTClient.c:2786
                                  Definition: MQTTAsyncUtils.h:88
                                  -
                                  int do_openssl_init
                                  1 = we do openssl init, 0 = leave it to the application
                                  Definition: MQTTAsync.h:224
                                  -
                                  int MQTTPacket_VBIdecode(int(*getcharfn)(char *, int), unsigned int *value)
                                  Decodes the message length according to the MQTT algorithm.
                                  Definition: MQTTPacket.c:1012
                                  +
                                  int do_openssl_init
                                  1 = we do openssl init, 0 = leave it to the application
                                  Definition: MQTTAsync.h:228
                                  +
                                  int MQTTPacket_VBIdecode(int(*getcharfn)(char *, int), unsigned int *value)
                                  Decodes the message length according to the MQTT algorithm.
                                  Definition: MQTTPacket.c:1028
                                  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
                                  void MQTTResponse_free(MQTTResponse response)
                                  Frees the storage associated with the MQTT response.
                                  Definition: MQTTClient.c:626
                                  Header header
                                  MQTT header byte.
                                  Definition: MQTTPacket.h:199
                                  -
                                  int automaticReconnect
                                  Reconnect automatically in the case of a connection being lost?
                                  Definition: MQTTAsync.h:1299
                                  +
                                  int automaticReconnect
                                  Reconnect automatically in the case of a connection being lost?
                                  Definition: MQTTAsync.h:1303
                                  int Socket_addSocket(int newSd)
                                  Add a socket to the list of socket to check with select.
                                  Definition: Socket.c:170
                                  -
                                  MQTTAsync_onSuccess5 * onSuccess5
                                  A pointer to a callback function to be called if the API call successfully completes.
                                  Definition: MQTTAsync.h:730
                                  +
                                  MQTTAsync_onSuccess5 * onSuccess5
                                  A pointer to a callback function to be called if the API call successfully completes.
                                  Definition: MQTTAsync.h:734
                                  int pstmkdir(char *pPathname)
                                  Function to create a directory.
                                  Definition: MQTTPersistenceDefault.c:165
                                  int MQTTPersistence_beforeWrite(void *context, int bufcount, char *buffers[], int buflens[])
                                  A callback which is invoked just before a write to persistence.
                                  Definition: MQTTClientPersistence.h:264
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:263
                                  -
                                  void writeInt4(char **pptr, int anInt)
                                  Writes an integer as 4 bytes to an output buffer.
                                  Definition: MQTTPacket.c:925
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:267
                                  +
                                  void writeInt4(char **pptr, int anInt)
                                  Writes an integer as 4 bytes to an output buffer.
                                  Definition: MQTTPacket.c:941
                                  void ListFree(List *aList)
                                  Removes and frees all items in a list, and frees the list itself.
                                  Definition: LinkedList.c:381
                                  void Socket_clearPendingWrite(int socket)
                                  Clear a socket from the pending write list - if one was added with Socket_addPendingWrite.
                                  Definition: Socket.c:594
                                  -
                                  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
                                  +
                                  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
                                  char * file
                                  the name of the source file where the storage was allocated
                                  Definition: Heap.c:70
                                  int MQTTClient_setCommandTimeout(MQTTClient handle, unsigned long milliSeconds)
                                  Sets the timeout value for un/subscribe commands when waiting for the un/suback response from the ser...
                                  Definition: MQTTClient.c:2881
                                  int(* Persistence_containskey)(void *handle, char *key)
                                  Returns whether any data has been persisted using the specified key.
                                  Definition: MQTTClientPersistence.h:208
                                  int MQTTProtocol_handlePingresps(void *pack, int sock)
                                  Process an incoming pingresp packet for a socket.
                                  Definition: MQTTProtocolOut.c:351
                                  -
                                  int len
                                  binary payload length
                                  Definition: MQTTAsync.h:1019
                                  +
                                  int len
                                  binary payload length
                                  Definition: MQTTAsync.h:1023
                                  int connectTimeout
                                  The time interval in seconds to allow a connect to complete.
                                  Definition: MQTTClient.h:884
                                  int MQTTProtocol_handlePubrels(void *pack, int sock)
                                  Process an incoming pubrel packet for a socket.
                                  Definition: MQTTProtocolClient.c:526
                                  -
                                  int MQTTPacket_send_pingreq(networkHandles *net, const char *clientID)
                                  Send an MQTT PINGREQ packet down a socket.
                                  Definition: MQTTPacketOut.c:203
                                  +
                                  int MQTTPacket_send_pingreq(networkHandles *net, const char *clientID)
                                  Send an MQTT PINGREQ packet down a socket.
                                  Definition: MQTTPacketOut.c:201
                                  +
                                  void Thread_start(thread_fn fn, void *parameter)
                                  Start a new thread.
                                  Definition: Thread.c:59
                                  struct MQTTAsync_successData5::@4::@8 unsub
                                  For unsubscribeMany, the list of reasonCodes returned by the server.
                                  -
                                  int minRetryInterval
                                  Minimum retry interval in seconds.
                                  Definition: MQTTAsync.h:1303
                                  +
                                  int minRetryInterval
                                  Minimum retry interval in seconds.
                                  Definition: MQTTAsync.h:1307
                                  static int clientSockCompare(void *a, void *b)
                                  List callback function for comparing clients by socket.
                                  Definition: MQTTClient.c:666
                                  void * MQTTPersistence_restorePacket(int MQTTVersion, char *buffer, size_t buflen)
                                  Returns a MQTT packet restored from persisted data.
                                  Definition: MQTTPersistence.c:363
                                  int MQTTProtocol_handlePubcomps(void *pack, int sock)
                                  Process an incoming pubcomp packet for a socket.
                                  Definition: MQTTProtocolClient.c:605
                                  @@ -832,29 +834,29 @@

                                  int MQTTProtocol_handlePubacks(void *pack, int sock)
                                  Process an incoming puback packet for a socket.
                                  Definition: MQTTProtocolClient.c:411
                                  struct ListElementStruct * next
                                  pointer to next list element
                                  Definition: LinkedList.h:75
                                  bool username
                                  3.1 user name
                                  Definition: MQTTPacket.h:115
                                  -
                                  int payloadlen
                                  The length of the MQTT message payload in bytes.
                                  Definition: MQTTAsync.h:265
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:222
                                  +
                                  int payloadlen
                                  The length of the MQTT message payload in bytes.
                                  Definition: MQTTAsync.h:269
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:226
                                  int MQTTPacket_send_disconnect(Clients *client, enum MQTTReasonCodes reason, MQTTProperties *props)
                                  Send an MQTT disconnect packet down a socket.
                                  Definition: MQTTPacket.c:508
                                  int MQTTProtocol_assignMsgId(Clients *client)
                                  Assign a new message id for a client.
                                  Definition: MQTTProtocolClient.c:78
                                  -
                                  int sessionPresent
                                  the session present flag returned from the server
                                  Definition: MQTTAsync.h:615
                                  +
                                  int sessionPresent
                                  the session present flag returned from the server
                                  Definition: MQTTAsync.h:619
                                  MQTTLenString data
                                  The value of a string property, or the name of a user property.
                                  Definition: MQTTProperties.h:103
                                  -
                                  int sessionPresent
                                  the session present flag returned from the server
                                  Definition: MQTTAsync.h:580
                                  -
                                  MQTTAsync_token token
                                  A token identifying the successful request.
                                  Definition: MQTTAsync.h:592
                                  +
                                  int sessionPresent
                                  the session present flag returned from the server
                                  Definition: MQTTAsync.h:584
                                  +
                                  MQTTAsync_token token
                                  A token identifying the successful request.
                                  Definition: MQTTAsync.h:596
                                  void * myrealloc(char *file, int line, void *p, size_t size)
                                  Reallocates a block of memory.
                                  Definition: Heap.c:320
                                  struct MQTTAsync_willOptions::@9 payload
                                  The LWT payload in binary form.
                                  void * content
                                  pointer to element content
                                  Definition: LinkedList.h:76
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:1002
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:1006
                                  int MQTTPersistence_restorePackets(Clients *c)
                                  Restores the persisted records to the outbound and inbound message queues of the client.
                                  Definition: MQTTPersistence.c:185
                                  -
                                  char * serverURI
                                  the connection string of the server
                                  Definition: MQTTAsync.h:613
                                  +
                                  char * serverURI
                                  the connection string of the server
                                  Definition: MQTTAsync.h:617
                                  void myfree(char *file, int line, void *p)
                                  Frees a block of memory.
                                  Definition: Heap.c:277
                                  -
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:1182
                                  +
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTAsync.h:1186
                                  int MQTTPacket_decode(networkHandles *net, size_t *value)
                                  Decodes the message length according to the MQTT algorithm.
                                  Definition: MQTTPacket.c:325
                                  size_t * buflens
                                  array of byte buffers
                                  Definition: Socket.h:100
                                  char * clientID
                                  the string id of the client
                                  Definition: Clients.h:119
                                  The MQTT V5 subscribe options, apart from QoS which existed before V5.
                                  Definition: MQTTSubscribeOpts.h:21
                                  unsigned int MQTTVersion
                                  the version of MQTT
                                  Definition: MQTTPacket.h:154
                                  Definition: MQTTProtocol.h:35
                                  -
                                  MQTTAsync_token token
                                  A token identifying the failed request.
                                  Definition: MQTTAsync.h:540
                                  +
                                  MQTTAsync_token token
                                  A token identifying the failed request.
                                  Definition: MQTTAsync.h:544
                                  struct NodeStruct * parent
                                  pointer to parent tree node, in case we need it
                                  Definition: Tree.h:79
                                  Client publication message data.
                                  Definition: Clients.h:53
                                  int struct_version
                                  The version number of this structure.
                                  Definition: MQTTClient.h:541
                                  @@ -862,11 +864,11 @@

                                  unsigned int willQoS
                                  will QoS value
                                  Definition: MQTTPacket.h:112
                                  void * Heap_findItem(void *p)
                                  Utility to find an item in the heap.
                                  Definition: Heap.c:368
                                  fd_set pending_wset
                                  socket pending write set for select
                                  Definition: Socket.h:118
                                  -
                                  int * qosList
                                  For subscribeMany, if more than one subscription was requested, the list of granted QoSs of the subsc...
                                  Definition: MQTTAsync.h:568
                                  +
                                  int * qosList
                                  For subscribeMany, if more than one subscription was requested, the list of granted QoSs of the subsc...
                                  Definition: MQTTAsync.h:572
                                  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 4785aba1d..e54be5099 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 274faae36..52c52df55 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 e7af39d90..6d6c1446a 100644 --- a/docs/MQTTClient_internal/html/Heap_8c.html +++ b/docs/MQTTClient_internal/html/Heap_8c.html @@ -88,11 +88,11 @@
                                  - - - - - + + + + +

                                  @@ -214,8 +214,8 @@

                                  - - + + @@ -323,8 +323,8 @@

                                  - - + + @@ -424,8 +424,8 @@

                                  - - + + @@ -529,8 +529,8 @@

                                  - - + + @@ -583,8 +583,8 @@

                                  - - + + @@ -644,8 +644,8 @@

                                  - - + + @@ -706,7 +706,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/Heap_8c__incl.map b/docs/MQTTClient_internal/html/Heap_8c__incl.map index d8e8a9c40..9e11ce77a 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 113a92cfd..ed0ab7e09 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 fd880a6af..0b1039647 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 9423ccb58..325f93970 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 7579e6a39..d3e0ad5ba 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 9b587f9d4..c33cf8d65 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 0e659060a..02445b137 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 3e112fa4a..b08be8206 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 9ccc12a70..a80f4b7c5 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 bbd461f2d..83180b608 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 7a3007752..c420bcf8f 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 0baca7fe7..30ee599df 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 b25795259..24906b673 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 8ecf2b8c5..0394d8e69 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 5aeb5b73a..34b00a386 100644 --- a/docs/MQTTClient_internal/html/LinkedList_8c.html +++ b/docs/MQTTClient_internal/html/LinkedList_8c.html @@ -80,9 +80,9 @@
                                  - - - + + +

                                  @@ -243,8 +243,8 @@

                                  - - + + @@ -341,10 +341,10 @@

                                  - - - - + + + + @@ -424,10 +424,10 @@

                                  - - - - + + + + @@ -499,9 +499,9 @@

                                  - - - + + + @@ -554,8 +554,8 @@

                                  - - + + @@ -589,8 +589,8 @@

                                  - - + + @@ -645,8 +645,8 @@

                                  - - + + @@ -705,8 +705,8 @@

                                  - - + + @@ -855,10 +855,10 @@

                                  - - - - + + + + @@ -893,8 +893,8 @@

                                  - - + + @@ -947,10 +947,10 @@

                                  - - - - + + + + @@ -1018,9 +1018,9 @@

                                  - - - + + + @@ -1093,7 +1093,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/LinkedList_8c__incl.map b/docs/MQTTClient_internal/html/LinkedList_8c__incl.map index 9b9e0d35e..004e314c1 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 acf832f51..f61f59b9b 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 16b39792f..1c16d6071 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 67572be7f..d2829a52f 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 5b43265d0..98b4be2e1 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 1ad1d650e..b7bbe68bb 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 e642d044d..9d7248378 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 17a07f44d..95904c4de 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 79e716e9b..c84f1ad2a 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 cf9a1dab2..cdfc4598a 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 e99dabfaf..6ef013c79 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 d049c5f87..496fee992 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 cc6e4b90d..5d33b2bc0 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 f199c0ac3..42c65fabf 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 b329da16b..9137c993f 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 3f3b7479f..716771a58 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 171afb16b..74c0cabeb 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 58c238458..01155d125 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 f998b4fb2..60006e268 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 bfef95b9f..3bacb712f 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 190046b94..16bd0ef68 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 90626c01e..a8d2a6338 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 ea3386b0c..27548558e 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 5e9e5e72c..daecb09db 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 c52b5b68a..5322fa0d8 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 c68eb433c..d4b0f0897 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 7384b1f45..770687d8b 100644 --- a/docs/MQTTClient_internal/html/Log_8c.html +++ b/docs/MQTTClient_internal/html/Log_8c.html @@ -95,15 +95,15 @@
                                  - - - - - - - - - + + + + + + + + +

                                  @@ -359,7 +359,11 @@

                                  Initial value:
                                  =
                                  {
                                  +
                                  +
                                  +
                                  TRACE_MINIMUM,
                                  +
                                  400,
                                  INVALID_LEVEL
                                  }
                                  @@ -369,7 +373,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/Log_8c__incl.map b/docs/MQTTClient_internal/html/Log_8c__incl.map index 5787ee9e8..c444a0744 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 a4fb7e717..9bdaa2368 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 cd2ac6320..a930472f8 100644 --- a/docs/MQTTClient_internal/html/MQTTClientPersistence_8h.html +++ b/docs/MQTTClient_internal/html/MQTTClientPersistence_8h.html @@ -78,8 +78,8 @@
                                  - - + +

                                  @@ -403,7 +403,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/MQTTClientPersistence_8h__dep__incl.map b/docs/MQTTClient_internal/html/MQTTClientPersistence_8h__dep__incl.map index 1a12f5371..94b4cc65a 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 599af9ba0..24323cdc5 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 0fad9e2db..7feb1f0fb 100644 --- a/docs/MQTTClient_internal/html/MQTTClient_8c.html +++ b/docs/MQTTClient_internal/html/MQTTClient_8c.html @@ -94,11 +94,11 @@
                                  - - - - - + + + + +

                                  @@ -664,9 +664,9 @@

                                  - - - + + + @@ -743,8 +743,8 @@

                                  - - + + @@ -778,8 +778,8 @@

                                  - - + + @@ -825,8 +825,8 @@

                                  - - + + @@ -924,8 +924,8 @@

                                  - - + + @@ -1002,8 +1002,8 @@

                                  - - + + @@ -1084,9 +1084,9 @@

                                  - - - + + + @@ -1174,8 +1174,8 @@

                                  - - + + @@ -1235,10 +1235,10 @@

                                  - - - - + + + + @@ -1298,9 +1298,9 @@

                                  - - - + + + @@ -1428,8 +1428,8 @@

                                  - - + + @@ -1520,8 +1520,8 @@

                                  - - + + @@ -1602,8 +1602,8 @@

                                  - - + + @@ -1656,10 +1656,10 @@

                                  - - - - + + + + @@ -1726,9 +1726,9 @@

                                  - - - + + + @@ -1788,9 +1788,9 @@

                                  - - - + + + @@ -1864,8 +1864,8 @@

                                  - - + + @@ -1911,10 +1911,10 @@

                                  - - - - + + + + @@ -1967,9 +1967,9 @@

                                  - - - + + + @@ -2022,9 +2022,9 @@

                                  - - - + + + @@ -2084,8 +2084,8 @@

                                  - - + + @@ -2138,8 +2138,8 @@

                                  - - + + @@ -2197,14 +2197,14 @@

                                  - - - - - - - - + + + + + + + + @@ -2267,7 +2267,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/MQTTClient_8c__incl.map b/docs/MQTTClient_internal/html/MQTTClient_8c__incl.map index 99ef71690..a22ac513d 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 1b986a236..c0f171812 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 90773c4fc..d0b23e7ed 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 83f99a34b..8e6b75092 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 e97c46459..ff091cd7e 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 61930167d..a437828c5 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 2e0263cca..458ae50d1 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 25f01626a..9f9f7db57 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 49fa9eb9e..9066ad702 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 b78f7d501..4eeae13fe 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 61ce811f0..f8a0ee5ed 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 060a65ec9..ca7640944 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 d89f75fc2..cfca563bf 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 10da20a3b..027dfefcd 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 cd9524560..a3aabad01 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 1d0290710..a6f3cadd9 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 916cf7036..eb99c8560 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 899c7f7f2..9adbcc45e 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 7dfe951dc..7a307099b 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 fde735b1e..ed7e4dff5 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 c3e0071ea..66c0f882d 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 1e448de66..886d121a8 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 0030c50e3..e17b11695 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 acfa332b3..10e5e0764 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 773ff69c6..f8a904805 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 ed3671c7c..25e7af431 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 e1f1d3897..be12d3bb4 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 a7f276712..952065327 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 a3f9903d5..54a5b12ad 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 93ca4de0b..821437145 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 392301fd9..38c49b074 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 51277a418..1ea24be16 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 52035083e..01cd177a0 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 80f4206d4..80414cb97 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 f32485632..b11167965 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 02791012a..9d485ae78 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 245d1ded9..a237652c7 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 52e4cec12..12d674cd9 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 2b1c9ba7b..88c952984 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 1ef505a6f..7b8219fa8 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 e76b837d3..bf7ded139 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 b847e7d30..f31643576 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 e5a71c04f..3dd652277 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 8126e1977..5ea426ac8 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 2572ec412..3588d4624 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 73b3ac0e3..dec6c8354 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 1a4ae0243..bf5cb7c19 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 baf1b7b5e..f6da2a97d 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 be4b65f34..7a0263fb3 100644 --- a/docs/MQTTClient_internal/html/MQTTPacketOut_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPacketOut_8c.html @@ -82,9 +82,9 @@
                                  - - - + + +

                                  @@ -173,8 +173,8 @@

                                  - - + + @@ -260,16 +260,16 @@

                                  - - - - - - - - - - + + + + + + + + + + @@ -315,12 +315,12 @@

                                  - - - - - - + + + + + + @@ -400,16 +400,16 @@

                                  - - - - - - - - - - + + + + + + + + + + @@ -476,15 +476,15 @@

                                  - - - - - - - - - + + + + + + + + + @@ -544,15 +544,15 @@

                                  - - - - - - - - - + + + + + + + + + @@ -612,15 +612,15 @@

                                  - - - - - - - - - + + + + + + + + + @@ -629,7 +629,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/MQTTPacketOut_8c__incl.map b/docs/MQTTClient_internal/html/MQTTPacketOut_8c__incl.map index 1442a5650..badae6d27 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 063eedab2..d38205bcc 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 d5476748b..2c61b5817 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 af65f799b..9cb910bbe 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 742d67c33..94771f40f 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 c52279887..df8550f1a 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 57e2e8fa2..4ce6da626 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 406240c47..588664ff3 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 178bb9f5f..e16b47153 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 a1b05b2b3..9607ea7a4 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 7823ae9e9..edfc2a0cb 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 d90204744..70623392d 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 444ec719c..2ffded980 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 9a860e676..357919060 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 a625d0215..4eb096094 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 b072c2f8e..87705969c 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 7e50e09c4..d38208529 100644 --- a/docs/MQTTClient_internal/html/MQTTPacket_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPacket_8c.html @@ -88,9 +88,9 @@
                                  - - - + + +

                                  @@ -293,9 +293,9 @@

                                  - - - + + + @@ -423,11 +423,11 @@

                                  - - - - - + + + + + @@ -461,8 +461,8 @@

                                  - - + + @@ -548,9 +548,9 @@

                                  - - - + + + @@ -584,9 +584,9 @@

                                  - - - + + + @@ -725,9 +725,9 @@

                                  - - - + + + @@ -800,10 +800,10 @@

                                  - - - - + + + + @@ -878,12 +878,12 @@

                                  - - - - - - + + + + + + @@ -934,13 +934,13 @@

                                  - - - - - - - + + + + + + + @@ -1000,14 +1000,14 @@

                                  - - - - - - - - + + + + + + + + @@ -1067,14 +1067,14 @@

                                  - - - - - - - - + + + + + + + + @@ -1148,13 +1148,13 @@

                                  - - - - - - - + + + + + + + @@ -1214,14 +1214,14 @@

                                  - - - - - - - - + + + + + + + + @@ -1288,14 +1288,14 @@

                                  - - - - - - - - + + + + + + + + @@ -1357,10 +1357,10 @@

                                  - - - - + + + + @@ -1525,9 +1525,9 @@

                                  - - - + + + @@ -1588,8 +1588,8 @@

                                  - - + + @@ -1678,8 +1678,8 @@

                                  - - + + @@ -1798,8 +1798,8 @@

                                  - - + + @@ -1872,15 +1872,15 @@

                                  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 265f1f75d..e338e41d3 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 0dbd10eaf..0b2c7d2ed 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 f1daa0c32..58370205b 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 fb6194bb8..5d2496ee3 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 e2fc06a8b..514723bb3 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 519fa5ad3..315431abd 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 35a14b80b..05b91703c 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 6eae0fb57..916e1d595 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 aefac2493..177103fe3 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 47fec1fe5..e973382aa 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 eb955e0e9..71731449a 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 28edf4d46..b0ab10eeb 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 cb4304e47..7037ce1b5 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 216462970..4c396e01b 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 4f2ebf73d..a54eb5ba4 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 570d0f060..ba5e5e550 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 29b50efad..fb605bcdb 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 c038af244..bf421c9f6 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 1e21a2aec..a89657dd1 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 f5bf4d85b..17592faaa 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 91300a4c0..af10bb6de 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 1cb37d8b4..ae4d94ee5 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 89b560827..647fc98da 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 10e86c162..ff7717494 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 f0d28ea85..3c75b229c 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 3637d20d9..386a53b9b 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 93ec20c47..f29cc6c98 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 e7003cd1b..e88884588 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 263606329..9a85858ca 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 248325739..105b01471 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 6c30608cd..b37acb9f8 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 c2098cf4b..bc16f10e3 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 59c28ad8f..3b05e5ae0 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 c141fe387..a42c7c15b 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 b1574994a..a4a4405df 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 4db663eb9..3236468b4 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 75a13c3dc..8e99f80af 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 973ffad66..889946185 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 6f8531c82..64d3ecdc8 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 4cb8b17b4..463603fdd 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 757b73d60..9421dee09 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c.html @@ -87,14 +87,14 @@
                                  - - - - - - - - + + + + + + + +

                                  @@ -360,8 +360,8 @@

                                  - - + + @@ -418,8 +418,8 @@

                                  - - + + @@ -459,7 +459,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c__incl.map b/docs/MQTTClient_internal/html/MQTTPersistenceDefault_8c__incl.map index deceeec1d..42dfc1024 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 904aa4eff..484585fb9 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 0f6ceb1f1..cc206e506 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 45d2afa6a..59f0fef4c 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 d5a3ce946..58df3d941 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 49d4f7b37..1f57950a5 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 78dd5dad0..6ce0d465f 100644 --- a/docs/MQTTClient_internal/html/MQTTPersistence_8c.html +++ b/docs/MQTTClient_internal/html/MQTTPersistence_8c.html @@ -84,9 +84,9 @@
                                  - - - + + +

                                  @@ -203,9 +203,9 @@

                                  - - - + + + @@ -258,16 +258,16 @@

                                  - - - - - - - - - - + + + + + + + + + + @@ -313,19 +313,19 @@

                                  - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -377,10 +377,10 @@

                                  - - - - + + + + @@ -534,8 +534,8 @@

                                  - - + + @@ -640,18 +640,18 @@

                                  - - - - - - - - - - - - + + + + + + + + + + + + @@ -685,8 +685,8 @@

                                  - - + + @@ -695,7 +695,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/MQTTPersistence_8c__incl.map b/docs/MQTTClient_internal/html/MQTTPersistence_8c__incl.map index 499bd4616..7d3129ed2 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 46b0359b0..a2c6ab08b 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 06c3ef166..a8539fb94 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 61d2f9b30..75e156059 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 235b5cf26..369568c28 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 f2a266700..d01b7d2ad 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 9f91c1ce3..5c9f8ff44 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 8eea54182..9321891ea 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 4870947e5..11b229b9d 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 59086f728..3cea4e0fa 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 e56330dfa..14b1bbc6e 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 0b60f80d3..ccf280ec5 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 4bdf691d5..18e977970 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 240c31855..90e3aa993 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 f6172688f..c2aa9730f 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 2ce7c5fae..bc0ef221f 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 788d713e4..51e77243d 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c.html +++ b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c.html @@ -86,10 +86,10 @@
                                  - - - - + + + +

                                  @@ -245,10 +245,10 @@

                                  - - - - + + + + @@ -315,10 +315,10 @@

                                  - - - - + + + + @@ -352,13 +352,13 @@

                                  - - - - - - - + + + + + + + @@ -392,16 +392,16 @@

                                  - - - - - - - - - - + + + + + + + + + + @@ -435,15 +435,15 @@

                                  - - - - - - - - - + + + + + + + + + @@ -489,9 +489,9 @@

                                  - - - + + + @@ -537,9 +537,9 @@

                                  - - - + + + @@ -585,9 +585,9 @@

                                  - - - + + + @@ -633,9 +633,9 @@

                                  - - - + + + @@ -681,9 +681,9 @@

                                  - - - + + + @@ -717,8 +717,8 @@

                                  - - + + @@ -752,11 +752,11 @@

                                  - - - - - + + + + + @@ -816,11 +816,11 @@

                                  - - - - - + + + + + @@ -872,8 +872,8 @@

                                  - - + + @@ -940,19 +940,19 @@

                                  - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -1020,14 +1020,14 @@

                                  - - - - - - - - + + + + + + + + @@ -1073,9 +1073,9 @@

                                  - - - + + + @@ -1110,9 +1110,9 @@

                                  - - - + + + @@ -1165,8 +1165,8 @@

                                  - - + + @@ -1175,7 +1175,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/MQTTProtocolClient_8c__incl.map b/docs/MQTTClient_internal/html/MQTTProtocolClient_8c__incl.map index c59f57b8c..cd1db7d62 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 ae04ffa83..80a8b2ff2 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 86ce0f5df..634d8eb7d 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 74d9eb23d..99584a140 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 387f7edcb..92a03c0c8 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 4aea4640d..d3e9e52f5 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 265ef7f8a..820c9d7fa 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 796457ce2..6647f668c 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 e38ad8138..5c570c9c6 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 47b86e6db..1d36df969 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 a06363996..fbdc217b7 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 88b2399c6..0d798b084 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 d513292ca..951b5f27d 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 a5fef20ec..b6879db44 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 bbc51ba5a..f1beaee53 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 c53b30a9a..8e861238e 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 9ac9e2a7f..1b862fd4e 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 2c68aee6c..4ba2c3aea 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 411e47829..25885f53a 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 6e8850293..93fa487e0 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 e3352ddf4..addcb08a8 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 41942ac70..692d97bbe 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 18e2bb5da..101dec799 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 66f2e0e4b..7d0d1df4d 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 fcf83c550..8ec8b196a 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 44f62b27b..e90444eb0 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 12930be77..0dd619232 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 1132474a4..9f53860be 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 1df997c95..05f9f81a9 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 3cd05903d..c7efe89d5 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 a2108fd6b..8e7abc4e2 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 d554c0022..a54ebf6ed 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 de072bb13..cf4b26c85 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 eef96bdf4..f02b37b78 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 5a5591c67..13b759b8a 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 b31510c87..4f137bc9f 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 057319870..d556ae82b 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 d7ea4dbb7..56e475744 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 2bb260f54..3fa79dd52 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 abb9684e4..836c41884 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 79ad8e7f0..e88f25e17 100644 --- a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c.html +++ b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c.html @@ -85,10 +85,10 @@
                                  - - - - + + + +

                                  @@ -288,9 +288,9 @@

                                  - - - + + + @@ -336,9 +336,9 @@

                                  - - - + + + @@ -384,9 +384,9 @@

                                  - - - + + + @@ -503,17 +503,17 @@

                                  - - - - - - - - - - - + + + + + + + + + + + @@ -571,16 +571,16 @@

                                  - - - - - - - - - - + + + + + + + + + + @@ -589,7 +589,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/MQTTProtocolOut_8c__incl.map b/docs/MQTTClient_internal/html/MQTTProtocolOut_8c__incl.map index b94be4d5a..9050b27a6 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 bc0618ccf..13a464610 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 edb90fbe0..8227a9026 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 cf2c44a1b..7ab61a726 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 a762299d6..e90b183c2 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 4f4ab120c..a6adbbe55 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 931d5072f..a8f957780 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 2190c6e19..eba6531da 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 aee53fea2..ecce0e076 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 d52787d3f..1a83c2a3e 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 23ccf0b3a..bce4d3095 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 16b900cb8..26306b503 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 d3dfb590d..73829ad0d 100644 --- a/docs/MQTTClient_internal/html/MQTTVersion_8c.html +++ b/docs/MQTTClient_internal/html/MQTTVersion_8c.html @@ -90,17 +90,17 @@
                                  - - - - - - - - - - - + + + + + + + + + + +

                                  @@ -213,7 +213,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/MQTTVersion_8c__incl.map b/docs/MQTTClient_internal/html/MQTTVersion_8c__incl.map index 8cfc333da..a4268738a 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 78f89a290..21a97f44a 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 1fcda765d..2cef042c8 100644 --- a/docs/MQTTClient_internal/html/Messages_8c.html +++ b/docs/MQTTClient_internal/html/Messages_8c.html @@ -84,10 +84,10 @@
                                  - - - - + + + +

                                  @@ -197,7 +197,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/Messages_8c__incl.map b/docs/MQTTClient_internal/html/Messages_8c__incl.map index 627954673..b6303d0b5 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 8e6d712d7..551a0c53d 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 ef7cb62bf..718848116 100644 --- a/docs/MQTTClient_internal/html/SSLSocket_8c.html +++ b/docs/MQTTClient_internal/html/SSLSocket_8c.html @@ -74,7 +74,7 @@ diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c.html b/docs/MQTTClient_internal/html/SocketBuffer_8c.html index f3fb0027f..bf7ae3c67 100644 --- a/docs/MQTTClient_internal/html/SocketBuffer_8c.html +++ b/docs/MQTTClient_internal/html/SocketBuffer_8c.html @@ -86,10 +86,10 @@
                                  - - - - + + + +

                                  @@ -233,15 +233,15 @@

                                  - - - - - - - - - + + + + + + + + + @@ -276,13 +276,13 @@

                                  - - - - - - - + + + + + + + @@ -328,11 +328,11 @@

                                  - - - - - + + + + + @@ -385,10 +385,10 @@

                                  - - - - + + + + @@ -423,10 +423,10 @@

                                  - - - - + + + + @@ -471,13 +471,13 @@

                                  - - - - - - - + + + + + + + @@ -550,9 +550,9 @@

                                  - - - + + + @@ -597,11 +597,11 @@

                                  - - - - - + + + + + @@ -654,10 +654,10 @@

                                  - - - - + + + + @@ -692,12 +692,12 @@

                                  - - - - - - + + + + + + @@ -744,7 +744,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/SocketBuffer_8c__incl.map b/docs/MQTTClient_internal/html/SocketBuffer_8c__incl.map index 0bdbb249c..e1b034891 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 276d3922e..b4d548139 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 796f89dce..5a6565bac 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 a95310925..cfcb4288e 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 ecf1b8344..e076dc05b 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 d08c30d56..3f8c0a2bf 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 52a79d77f..050ee051c 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 dd1cd991f..e16c22ed8 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 3b1b9365b..6be621082 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 fb39ab682..7fdd66940 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 123176b0e..dc2337769 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 df8c8d981..da8043274 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 3b34ef1ab..92ffbf6b8 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 dec7bb9b2..6136645a7 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 695a0155e..4e1b40b5a 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 330ab97c4..279a0bd5f 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 dfd541afc..bdb67f6b4 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 ef7cdd294..44a9cf835 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 f56c0a9c1..b7a8a9728 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 5f650a28f..dd9400410 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 61d7b56e3..6b8b7acbc 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 126a29557..00d41f0df 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 c0ca907bf..efdc55ea2 100644 --- a/docs/MQTTClient_internal/html/Socket_8c.html +++ b/docs/MQTTClient_internal/html/Socket_8c.html @@ -88,11 +88,11 @@
                                  - - - - - + + + + +

                                  @@ -243,13 +243,13 @@

                                  - - - - - - - + + + + + + + @@ -284,12 +284,12 @@

                                  - - - - - - + + + + + + @@ -349,13 +349,13 @@

                                  - - - - - - - + + + + + + + @@ -416,22 +416,22 @@

                                  - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -466,9 +466,9 @@

                                  - - - + + + @@ -503,14 +503,14 @@

                                  - - - - - - - - + + + + + + + + @@ -556,19 +556,19 @@

                                  - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -614,8 +614,8 @@

                                  - - + + @@ -701,18 +701,18 @@

                                  - - - - - - - - - - - - + + + + + + + + + + + + @@ -771,21 +771,21 @@

                                  - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -820,10 +820,10 @@

                                  - - - - + + + + @@ -882,15 +882,15 @@

                                  - - - - - - - - - + + + + + + + + + @@ -950,26 +950,26 @@

                                  - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -998,10 +998,10 @@

                                  - - - - + + + + @@ -1063,17 +1063,17 @@

                                  - - - - - - - - - - - + + + + + + + + + + + @@ -1160,9 +1160,9 @@

                                  - - - + + + @@ -1171,7 +1171,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/Socket_8c__incl.map b/docs/MQTTClient_internal/html/Socket_8c__incl.map index 22dfcc927..7ae861674 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 6ed4f5ee9..9c4cb6c8a 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 6da0324bf..4e41b391d 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 9c9e052f7..1161a4e9e 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 9e690c766..c65eb714c 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 21856383e..ea7803c52 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 395aedfd5..7b3ba33bf 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 4c79d1427..9db27c0be 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 4b516125c..0d6a7faf3 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 684be34ca..e984998fd 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 1ac46c15b..f8fca464c 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 42e5877c1..00198d11f 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 0682c8acd..431379088 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 92a6a6178..9cdcf5a70 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 0da672444..bd9a95616 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 287868f61..7cdf80abd 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 f9fa30a96..1c3e2ec1b 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 93a9693dc..61b19a35c 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 74401f117..5eec689ae 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 7ff3b7865..e2210da34 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 cdc10cb54..f074bffbe 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 3a588cf82..9626e22a9 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 1301fa79e..605ceec93 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 bdfd8a6d7..483489749 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 6c457c067..b6e4b13d4 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 91013e9dd..2500aa9d1 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 cd24aecd9..adaa4424b 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 ddb669c8e..17c67c445 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 d3684326a..bd7378e32 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 a918f7e0c..2a4c0db1f 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 189475d09..3620818ca 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 71bcf0abc..0c9f2ea0b 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 53bea20d4..ad4fdd072 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 1ff520216..4d781a23f 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 b6de1289c..765bf40bf 100644 --- a/docs/MQTTClient_internal/html/Thread_8c.html +++ b/docs/MQTTClient_internal/html/Thread_8c.html @@ -89,23 +89,23 @@
                                  - - - - - - - - - + + + + + + + + +

                                  - - - + + + @@ -203,8 +203,8 @@

                                  - - + + @@ -227,6 +227,12 @@

                                  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 @@

                                  Create a new semaphore.

                                  +
                                  Parameters
                                  + + +
                                  rcreturn code: 0 for success, negative otherwise
                                  +
                                  +
                                  Returns
                                  the new condition variable
                                  @@ -415,14 +427,14 @@

                                  -

                                  ◆ Thread_start()

                                  + +

                                  ◆ Thread_start()

                                  - + @@ -449,7 +461,6 @@

                                  Returns
                                  the new thread
                                  @@ -552,7 +563,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/Thread_8c__incl.map b/docs/MQTTClient_internal/html/Thread_8c__incl.map index 94403285f..601375ea2 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 949400f05..4aa5c81f0 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 aae6355ed..4346051b1 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 0b697fbcc..b2c687e13 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 d50c35827..caa0f8403 100644 --- a/docs/MQTTClient_internal/html/Tree_8c.html +++ b/docs/MQTTClient_internal/html/Tree_8c.html @@ -82,10 +82,10 @@
                                  - - - - + + + +

                                  thread_type Thread_start void Thread_start ( thread_fn  fn,
                                  @@ -250,9 +250,9 @@

                                  - - - + + + @@ -281,9 +281,9 @@

                                  - - - + + + @@ -378,7 +378,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/Tree_8c__incl.map b/docs/MQTTClient_internal/html/Tree_8c__incl.map index 46e865ce5..395d047c7 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 9e10fe6ff..db03c0c42 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 74baa6521..51056827c 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 8351d5a90..553e3ff29 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 8053fbee4..1ae9f88e8 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 ea2941de3..f395e1472 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 066f344b9..27cdc7416 100644 --- a/docs/MQTTClient_internal/html/annotated.html +++ b/docs/MQTTClient_internal/html/annotated.html @@ -144,7 +144,7 @@ diff --git a/docs/MQTTClient_internal/html/classes.html b/docs/MQTTClient_internal/html/classes.html index 66489094f..0ad5c503b 100644 --- a/docs/MQTTClient_internal/html/classes.html +++ b/docs/MQTTClient_internal/html/classes.html @@ -191,7 +191,7 @@ diff --git a/docs/MQTTClient_internal/html/files.html b/docs/MQTTClient_internal/html/files.html index 985cb48f4..e93c29769 100644 --- a/docs/MQTTClient_internal/html/files.html +++ b/docs/MQTTClient_internal/html/files.html @@ -93,7 +93,7 @@ diff --git a/docs/MQTTClient_internal/html/functions.html b/docs/MQTTClient_internal/html/functions.html index ed617644a..f83f2684c 100644 --- a/docs/MQTTClient_internal/html/functions.html +++ b/docs/MQTTClient_internal/html/functions.html @@ -72,7 +72,7 @@

                                  - _ -

                                    diff --git a/docs/MQTTClient_internal/html/functions_a.html b/docs/MQTTClient_internal/html/functions_a.html index 4b19ee4ee..303acb3eb 100644 --- a/docs/MQTTClient_internal/html/functions_a.html +++ b/docs/MQTTClient_internal/html/functions_a.html @@ -95,7 +95,7 @@

                                    - a -

                                      diff --git a/docs/MQTTClient_internal/html/functions_b.html b/docs/MQTTClient_internal/html/functions_b.html index 48dc73a18..b8bc602d7 100644 --- a/docs/MQTTClient_internal/html/functions_b.html +++ b/docs/MQTTClient_internal/html/functions_b.html @@ -93,7 +93,7 @@

                                      - b -

                                        diff --git a/docs/MQTTClient_internal/html/functions_c.html b/docs/MQTTClient_internal/html/functions_c.html index 0aec4302d..6206c6af0 100644 --- a/docs/MQTTClient_internal/html/functions_c.html +++ b/docs/MQTTClient_internal/html/functions_c.html @@ -137,7 +137,7 @@

                                        - c -

                                          diff --git a/docs/MQTTClient_internal/html/functions_d.html b/docs/MQTTClient_internal/html/functions_d.html index b55bf0f93..3e259b4ea 100644 --- a/docs/MQTTClient_internal/html/functions_d.html +++ b/docs/MQTTClient_internal/html/functions_d.html @@ -98,7 +98,7 @@

                                          - d -

                                            diff --git a/docs/MQTTClient_internal/html/functions_e.html b/docs/MQTTClient_internal/html/functions_e.html index 04811425d..2010311ee 100644 --- a/docs/MQTTClient_internal/html/functions_e.html +++ b/docs/MQTTClient_internal/html/functions_e.html @@ -77,7 +77,7 @@

                                            - e -

                                              diff --git a/docs/MQTTClient_internal/html/functions_f.html b/docs/MQTTClient_internal/html/functions_f.html index 61ef5cfbb..f53415e8d 100644 --- a/docs/MQTTClient_internal/html/functions_f.html +++ b/docs/MQTTClient_internal/html/functions_f.html @@ -85,7 +85,7 @@

                                              - f -

                                                diff --git a/docs/MQTTClient_internal/html/functions_g.html b/docs/MQTTClient_internal/html/functions_g.html index 2ec70b922..94735cfe2 100644 --- a/docs/MQTTClient_internal/html/functions_g.html +++ b/docs/MQTTClient_internal/html/functions_g.html @@ -72,7 +72,7 @@

                                                - g -

                                                  diff --git a/docs/MQTTClient_internal/html/functions_h.html b/docs/MQTTClient_internal/html/functions_h.html index 4efed2c1d..98e8f23a9 100644 --- a/docs/MQTTClient_internal/html/functions_h.html +++ b/docs/MQTTClient_internal/html/functions_h.html @@ -95,7 +95,7 @@

                                                  - h -

                                                    diff --git a/docs/MQTTClient_internal/html/functions_i.html b/docs/MQTTClient_internal/html/functions_i.html index 53f97961e..2c1c554a3 100644 --- a/docs/MQTTClient_internal/html/functions_i.html +++ b/docs/MQTTClient_internal/html/functions_i.html @@ -84,7 +84,7 @@

                                                    - i -

                                                      diff --git a/docs/MQTTClient_internal/html/functions_k.html b/docs/MQTTClient_internal/html/functions_k.html index 013c11dd9..79cd5de44 100644 --- a/docs/MQTTClient_internal/html/functions_k.html +++ b/docs/MQTTClient_internal/html/functions_k.html @@ -81,7 +81,7 @@

                                                      - k -

                                                        diff --git a/docs/MQTTClient_internal/html/functions_l.html b/docs/MQTTClient_internal/html/functions_l.html index 6fb47e502..6c3aa4ec6 100644 --- a/docs/MQTTClient_internal/html/functions_l.html +++ b/docs/MQTTClient_internal/html/functions_l.html @@ -88,7 +88,7 @@

                                                        - l -

                                                          diff --git a/docs/MQTTClient_internal/html/functions_m.html b/docs/MQTTClient_internal/html/functions_m.html index ebd59570d..6165c4278 100644 --- a/docs/MQTTClient_internal/html/functions_m.html +++ b/docs/MQTTClient_internal/html/functions_m.html @@ -142,7 +142,7 @@

                                                          - m -

                                                            diff --git a/docs/MQTTClient_internal/html/functions_n.html b/docs/MQTTClient_internal/html/functions_n.html index acb8a7d34..be6e24b3b 100644 --- a/docs/MQTTClient_internal/html/functions_n.html +++ b/docs/MQTTClient_internal/html/functions_n.html @@ -84,7 +84,7 @@

                                                            - n -

                                                              diff --git a/docs/MQTTClient_internal/html/functions_o.html b/docs/MQTTClient_internal/html/functions_o.html index ec10bf3c7..469d305f6 100644 --- a/docs/MQTTClient_internal/html/functions_o.html +++ b/docs/MQTTClient_internal/html/functions_o.html @@ -92,7 +92,7 @@

                                                              - o -

                                                                diff --git a/docs/MQTTClient_internal/html/functions_p.html b/docs/MQTTClient_internal/html/functions_p.html index d8758b44a..3ad28c6ba 100644 --- a/docs/MQTTClient_internal/html/functions_p.html +++ b/docs/MQTTClient_internal/html/functions_p.html @@ -113,6 +113,12 @@

                                                                - p -

                                                                • phandle : Clients
                                                                • +
                                                                • ping_due +: Clients +
                                                                • +
                                                                • ping_due_time +: Clients +
                                                                • pkeys : MQTTClient_persistence
                                                                • @@ -174,7 +180,7 @@

                                                                  - p -

                                                                    diff --git a/docs/MQTTClient_internal/html/functions_q.html b/docs/MQTTClient_internal/html/functions_q.html index b47e42fad..937d561ae 100644 --- a/docs/MQTTClient_internal/html/functions_q.html +++ b/docs/MQTTClient_internal/html/functions_q.html @@ -83,7 +83,7 @@

                                                                    - q -

                                                                      diff --git a/docs/MQTTClient_internal/html/functions_r.html b/docs/MQTTClient_internal/html/functions_r.html index ff0771b4d..140d5c4b8 100644 --- a/docs/MQTTClient_internal/html/functions_r.html +++ b/docs/MQTTClient_internal/html/functions_r.html @@ -122,7 +122,7 @@

                                                                      - r -

                                                                        diff --git a/docs/MQTTClient_internal/html/functions_s.html b/docs/MQTTClient_internal/html/functions_s.html index a6e612eff..77c01db4f 100644 --- a/docs/MQTTClient_internal/html/functions_s.html +++ b/docs/MQTTClient_internal/html/functions_s.html @@ -167,7 +167,7 @@

                                                                        - s -

                                                                          diff --git a/docs/MQTTClient_internal/html/functions_t.html b/docs/MQTTClient_internal/html/functions_t.html index 80440909b..103cd93d0 100644 --- a/docs/MQTTClient_internal/html/functions_t.html +++ b/docs/MQTTClient_internal/html/functions_t.html @@ -99,7 +99,7 @@

                                                                          - t -

                                                                            diff --git a/docs/MQTTClient_internal/html/functions_u.html b/docs/MQTTClient_internal/html/functions_u.html index 75bb77fdb..c1dc6b112 100644 --- a/docs/MQTTClient_internal/html/functions_u.html +++ b/docs/MQTTClient_internal/html/functions_u.html @@ -79,7 +79,7 @@

                                                                            - u -

                                                                              diff --git a/docs/MQTTClient_internal/html/functions_v.html b/docs/MQTTClient_internal/html/functions_v.html index 76ae7758c..bc77f28d2 100644 --- a/docs/MQTTClient_internal/html/functions_v.html +++ b/docs/MQTTClient_internal/html/functions_v.html @@ -80,7 +80,7 @@

                                                                              - v -

                                                                                diff --git a/docs/MQTTClient_internal/html/functions_vars.html b/docs/MQTTClient_internal/html/functions_vars.html index 5fc3b0140..0c952280e 100644 --- a/docs/MQTTClient_internal/html/functions_vars.html +++ b/docs/MQTTClient_internal/html/functions_vars.html @@ -72,7 +72,7 @@

                                                                                - _ -

                                                                                  diff --git a/docs/MQTTClient_internal/html/functions_vars_a.html b/docs/MQTTClient_internal/html/functions_vars_a.html index c421b99ff..044a57762 100644 --- a/docs/MQTTClient_internal/html/functions_vars_a.html +++ b/docs/MQTTClient_internal/html/functions_vars_a.html @@ -95,7 +95,7 @@

                                                                                  - a -

                                                                                    diff --git a/docs/MQTTClient_internal/html/functions_vars_b.html b/docs/MQTTClient_internal/html/functions_vars_b.html index af9ee99e5..4852f3c43 100644 --- a/docs/MQTTClient_internal/html/functions_vars_b.html +++ b/docs/MQTTClient_internal/html/functions_vars_b.html @@ -93,7 +93,7 @@

                                                                                    - b -

                                                                                      diff --git a/docs/MQTTClient_internal/html/functions_vars_c.html b/docs/MQTTClient_internal/html/functions_vars_c.html index b0b1b9d59..2d064b99d 100644 --- a/docs/MQTTClient_internal/html/functions_vars_c.html +++ b/docs/MQTTClient_internal/html/functions_vars_c.html @@ -137,7 +137,7 @@

                                                                                      - c -

                                                                                        diff --git a/docs/MQTTClient_internal/html/functions_vars_d.html b/docs/MQTTClient_internal/html/functions_vars_d.html index 1c3c0b988..076d4bca7 100644 --- a/docs/MQTTClient_internal/html/functions_vars_d.html +++ b/docs/MQTTClient_internal/html/functions_vars_d.html @@ -98,7 +98,7 @@

                                                                                        - d -

                                                                                          diff --git a/docs/MQTTClient_internal/html/functions_vars_e.html b/docs/MQTTClient_internal/html/functions_vars_e.html index 6ed7414e9..387a0bed6 100644 --- a/docs/MQTTClient_internal/html/functions_vars_e.html +++ b/docs/MQTTClient_internal/html/functions_vars_e.html @@ -77,7 +77,7 @@

                                                                                          - e -

                                                                                            diff --git a/docs/MQTTClient_internal/html/functions_vars_f.html b/docs/MQTTClient_internal/html/functions_vars_f.html index 3be805e23..a3db431af 100644 --- a/docs/MQTTClient_internal/html/functions_vars_f.html +++ b/docs/MQTTClient_internal/html/functions_vars_f.html @@ -85,7 +85,7 @@

                                                                                            - f -

                                                                                              diff --git a/docs/MQTTClient_internal/html/functions_vars_g.html b/docs/MQTTClient_internal/html/functions_vars_g.html index d47a22341..904cb7dc9 100644 --- a/docs/MQTTClient_internal/html/functions_vars_g.html +++ b/docs/MQTTClient_internal/html/functions_vars_g.html @@ -72,7 +72,7 @@

                                                                                              - g -

                                                                                                diff --git a/docs/MQTTClient_internal/html/functions_vars_h.html b/docs/MQTTClient_internal/html/functions_vars_h.html index 52192087f..779aa5809 100644 --- a/docs/MQTTClient_internal/html/functions_vars_h.html +++ b/docs/MQTTClient_internal/html/functions_vars_h.html @@ -95,7 +95,7 @@

                                                                                                - h -

                                                                                                  diff --git a/docs/MQTTClient_internal/html/functions_vars_i.html b/docs/MQTTClient_internal/html/functions_vars_i.html index c6f54ba10..a5cf62c2c 100644 --- a/docs/MQTTClient_internal/html/functions_vars_i.html +++ b/docs/MQTTClient_internal/html/functions_vars_i.html @@ -84,7 +84,7 @@

                                                                                                  - i -

                                                                                                    diff --git a/docs/MQTTClient_internal/html/functions_vars_k.html b/docs/MQTTClient_internal/html/functions_vars_k.html index 9bcbfda94..132b39629 100644 --- a/docs/MQTTClient_internal/html/functions_vars_k.html +++ b/docs/MQTTClient_internal/html/functions_vars_k.html @@ -81,7 +81,7 @@

                                                                                                    - k -

                                                                                                      diff --git a/docs/MQTTClient_internal/html/functions_vars_l.html b/docs/MQTTClient_internal/html/functions_vars_l.html index 863af8748..ad7aa5bef 100644 --- a/docs/MQTTClient_internal/html/functions_vars_l.html +++ b/docs/MQTTClient_internal/html/functions_vars_l.html @@ -88,7 +88,7 @@

                                                                                                      - l -

                                                                                                        diff --git a/docs/MQTTClient_internal/html/functions_vars_m.html b/docs/MQTTClient_internal/html/functions_vars_m.html index ec2a763c5..a7db336a7 100644 --- a/docs/MQTTClient_internal/html/functions_vars_m.html +++ b/docs/MQTTClient_internal/html/functions_vars_m.html @@ -142,7 +142,7 @@

                                                                                                        - m -

                                                                                                          diff --git a/docs/MQTTClient_internal/html/functions_vars_n.html b/docs/MQTTClient_internal/html/functions_vars_n.html index 098672393..221d73911 100644 --- a/docs/MQTTClient_internal/html/functions_vars_n.html +++ b/docs/MQTTClient_internal/html/functions_vars_n.html @@ -84,7 +84,7 @@

                                                                                                          - n -

                                                                                                            diff --git a/docs/MQTTClient_internal/html/functions_vars_o.html b/docs/MQTTClient_internal/html/functions_vars_o.html index d65ce04db..d7fec1979 100644 --- a/docs/MQTTClient_internal/html/functions_vars_o.html +++ b/docs/MQTTClient_internal/html/functions_vars_o.html @@ -92,7 +92,7 @@

                                                                                                            - o -

                                                                                                              diff --git a/docs/MQTTClient_internal/html/functions_vars_p.html b/docs/MQTTClient_internal/html/functions_vars_p.html index 4688559c2..b4bb82810 100644 --- a/docs/MQTTClient_internal/html/functions_vars_p.html +++ b/docs/MQTTClient_internal/html/functions_vars_p.html @@ -113,6 +113,12 @@

                                                                                                              - p -

                                                                                                              • phandle : Clients
                                                                                                              • +
                                                                                                              • ping_due +: Clients +
                                                                                                              • +
                                                                                                              • ping_due_time +: Clients +
                                                                                                              • pkeys : MQTTClient_persistence
                                                                                                              • @@ -174,7 +180,7 @@

                                                                                                                - p -

                                                                                                                  diff --git a/docs/MQTTClient_internal/html/functions_vars_q.html b/docs/MQTTClient_internal/html/functions_vars_q.html index c1d9ef268..d0a6f4d5a 100644 --- a/docs/MQTTClient_internal/html/functions_vars_q.html +++ b/docs/MQTTClient_internal/html/functions_vars_q.html @@ -83,7 +83,7 @@

                                                                                                                  - q -

                                                                                                                    diff --git a/docs/MQTTClient_internal/html/functions_vars_r.html b/docs/MQTTClient_internal/html/functions_vars_r.html index 455d2f387..620c05e5d 100644 --- a/docs/MQTTClient_internal/html/functions_vars_r.html +++ b/docs/MQTTClient_internal/html/functions_vars_r.html @@ -122,7 +122,7 @@

                                                                                                                    - r -

                                                                                                                      diff --git a/docs/MQTTClient_internal/html/functions_vars_s.html b/docs/MQTTClient_internal/html/functions_vars_s.html index 555c8eb1c..f3969a036 100644 --- a/docs/MQTTClient_internal/html/functions_vars_s.html +++ b/docs/MQTTClient_internal/html/functions_vars_s.html @@ -167,7 +167,7 @@

                                                                                                                      - s -

                                                                                                                        diff --git a/docs/MQTTClient_internal/html/functions_vars_t.html b/docs/MQTTClient_internal/html/functions_vars_t.html index 43e623b57..d0d53a410 100644 --- a/docs/MQTTClient_internal/html/functions_vars_t.html +++ b/docs/MQTTClient_internal/html/functions_vars_t.html @@ -99,7 +99,7 @@

                                                                                                                        - t -

                                                                                                                          diff --git a/docs/MQTTClient_internal/html/functions_vars_u.html b/docs/MQTTClient_internal/html/functions_vars_u.html index 1ab4d51f3..37b8e3232 100644 --- a/docs/MQTTClient_internal/html/functions_vars_u.html +++ b/docs/MQTTClient_internal/html/functions_vars_u.html @@ -79,7 +79,7 @@

                                                                                                                          - u -

                                                                                                                            diff --git a/docs/MQTTClient_internal/html/functions_vars_v.html b/docs/MQTTClient_internal/html/functions_vars_v.html index c9fe81ae6..116897a44 100644 --- a/docs/MQTTClient_internal/html/functions_vars_v.html +++ b/docs/MQTTClient_internal/html/functions_vars_v.html @@ -80,7 +80,7 @@

                                                                                                                            - v -

                                                                                                                              diff --git a/docs/MQTTClient_internal/html/functions_vars_w.html b/docs/MQTTClient_internal/html/functions_vars_w.html index 6129d2c5d..e1ce0a22c 100644 --- a/docs/MQTTClient_internal/html/functions_vars_w.html +++ b/docs/MQTTClient_internal/html/functions_vars_w.html @@ -96,7 +96,7 @@

                                                                                                                              - w -

                                                                                                                                diff --git a/docs/MQTTClient_internal/html/functions_w.html b/docs/MQTTClient_internal/html/functions_w.html index 61a8e98dd..a9b9c559e 100644 --- a/docs/MQTTClient_internal/html/functions_w.html +++ b/docs/MQTTClient_internal/html/functions_w.html @@ -96,7 +96,7 @@

                                                                                                                                - w -

                                                                                                                                  diff --git a/docs/MQTTClient_internal/html/globals.html b/docs/MQTTClient_internal/html/globals.html index a6668400a..083d11384 100644 --- a/docs/MQTTClient_internal/html/globals.html +++ b/docs/MQTTClient_internal/html/globals.html @@ -72,7 +72,7 @@

                                                                                                                                  - _ -

                                                                                                                                    diff --git a/docs/MQTTClient_internal/html/globals_a.html b/docs/MQTTClient_internal/html/globals_a.html index 0a3226386..b023f838a 100644 --- a/docs/MQTTClient_internal/html/globals_a.html +++ b/docs/MQTTClient_internal/html/globals_a.html @@ -72,7 +72,7 @@

                                                                                                                                    - a -

                                                                                                                                      diff --git a/docs/MQTTClient_internal/html/globals_b.html b/docs/MQTTClient_internal/html/globals_b.html index 2876b04bb..82f43b595 100644 --- a/docs/MQTTClient_internal/html/globals_b.html +++ b/docs/MQTTClient_internal/html/globals_b.html @@ -72,7 +72,7 @@

                                                                                                                                      - b -

                                                                                                                                        diff --git a/docs/MQTTClient_internal/html/globals_c.html b/docs/MQTTClient_internal/html/globals_c.html index 5da36afa2..43b908af6 100644 --- a/docs/MQTTClient_internal/html/globals_c.html +++ b/docs/MQTTClient_internal/html/globals_c.html @@ -84,7 +84,7 @@

                                                                                                                                        - c -

                                                                                                                                          diff --git a/docs/MQTTClient_internal/html/globals_d.html b/docs/MQTTClient_internal/html/globals_d.html index eb9bda609..4e1791d3f 100644 --- a/docs/MQTTClient_internal/html/globals_d.html +++ b/docs/MQTTClient_internal/html/globals_d.html @@ -72,7 +72,7 @@

                                                                                                                                          - d -

                                                                                                                                            diff --git a/docs/MQTTClient_internal/html/globals_defs.html b/docs/MQTTClient_internal/html/globals_defs.html index b45e79ea9..1d6d49cb8 100644 --- a/docs/MQTTClient_internal/html/globals_defs.html +++ b/docs/MQTTClient_internal/html/globals_defs.html @@ -85,7 +85,7 @@ diff --git a/docs/MQTTClient_internal/html/globals_f.html b/docs/MQTTClient_internal/html/globals_f.html index e75bae13c..99e920e4d 100644 --- a/docs/MQTTClient_internal/html/globals_f.html +++ b/docs/MQTTClient_internal/html/globals_f.html @@ -72,7 +72,7 @@

                                                                                                                                            - f -

                                                                                                                                              diff --git a/docs/MQTTClient_internal/html/globals_func.html b/docs/MQTTClient_internal/html/globals_func.html index 95e673778..f7774e6b3 100644 --- a/docs/MQTTClient_internal/html/globals_func.html +++ b/docs/MQTTClient_internal/html/globals_func.html @@ -84,7 +84,7 @@

                                                                                                                                              - c -

                                                                                                                                                diff --git a/docs/MQTTClient_internal/html/globals_func_f.html b/docs/MQTTClient_internal/html/globals_func_f.html index 0b40a54bf..359f91521 100644 --- a/docs/MQTTClient_internal/html/globals_func_f.html +++ b/docs/MQTTClient_internal/html/globals_func_f.html @@ -72,7 +72,7 @@

                                                                                                                                                - f -

                                                                                                                                                  diff --git a/docs/MQTTClient_internal/html/globals_func_h.html b/docs/MQTTClient_internal/html/globals_func_h.html index 51f74d91c..2c9271b39 100644 --- a/docs/MQTTClient_internal/html/globals_func_h.html +++ b/docs/MQTTClient_internal/html/globals_func_h.html @@ -96,7 +96,7 @@

                                                                                                                                                  - h -

                                                                                                                                                    diff --git a/docs/MQTTClient_internal/html/globals_func_i.html b/docs/MQTTClient_internal/html/globals_func_i.html index 153f1159e..80ae18790 100644 --- a/docs/MQTTClient_internal/html/globals_func_i.html +++ b/docs/MQTTClient_internal/html/globals_func_i.html @@ -78,7 +78,7 @@

                                                                                                                                                    - i -

                                                                                                                                                      diff --git a/docs/MQTTClient_internal/html/globals_func_l.html b/docs/MQTTClient_internal/html/globals_func_l.html index 2b6783681..d60d4aea7 100644 --- a/docs/MQTTClient_internal/html/globals_func_l.html +++ b/docs/MQTTClient_internal/html/globals_func_l.html @@ -135,7 +135,7 @@

                                                                                                                                                      - l -

                                                                                                                                                        diff --git a/docs/MQTTClient_internal/html/globals_func_m.html b/docs/MQTTClient_internal/html/globals_func_m.html index 320d136c1..48d92b84d 100644 --- a/docs/MQTTClient_internal/html/globals_func_m.html +++ b/docs/MQTTClient_internal/html/globals_func_m.html @@ -402,7 +402,7 @@

                                                                                                                                                        - m -

                                                                                                                                                          diff --git a/docs/MQTTClient_internal/html/globals_func_p.html b/docs/MQTTClient_internal/html/globals_func_p.html index 48dc89ae0..2a3636882 100644 --- a/docs/MQTTClient_internal/html/globals_func_p.html +++ b/docs/MQTTClient_internal/html/globals_func_p.html @@ -102,7 +102,7 @@

                                                                                                                                                          - p -

                                                                                                                                                            diff --git a/docs/MQTTClient_internal/html/globals_func_r.html b/docs/MQTTClient_internal/html/globals_func_r.html index 3a9945e86..95b59c28c 100644 --- a/docs/MQTTClient_internal/html/globals_func_r.html +++ b/docs/MQTTClient_internal/html/globals_func_r.html @@ -84,7 +84,7 @@

                                                                                                                                                            - r -

                                                                                                                                                              diff --git a/docs/MQTTClient_internal/html/globals_func_s.html b/docs/MQTTClient_internal/html/globals_func_s.html index 4b6a24f6d..e513522e3 100644 --- a/docs/MQTTClient_internal/html/globals_func_s.html +++ b/docs/MQTTClient_internal/html/globals_func_s.html @@ -180,7 +180,7 @@

                                                                                                                                                              - s -

                                                                                                                                                                diff --git a/docs/MQTTClient_internal/html/globals_func_t.html b/docs/MQTTClient_internal/html/globals_func_t.html index 7d114a896..d5b0742ce 100644 --- a/docs/MQTTClient_internal/html/globals_func_t.html +++ b/docs/MQTTClient_internal/html/globals_func_t.html @@ -99,7 +99,7 @@

                                                                                                                                                                - t -

                                                                                                                                                                  : Thread.c
                                                                                                                                                                • Thread_start() -: Thread.c +: Thread.c
                                                                                                                                                                • Thread_unlock_mutex() : Thread.c @@ -126,7 +126,7 @@

                                                                                                                                                                  - t -

                                                                                                                                                                    diff --git a/docs/MQTTClient_internal/html/globals_func_u.html b/docs/MQTTClient_internal/html/globals_func_u.html index 3ca025e9e..e5ef93fa7 100644 --- a/docs/MQTTClient_internal/html/globals_func_u.html +++ b/docs/MQTTClient_internal/html/globals_func_u.html @@ -78,7 +78,7 @@

                                                                                                                                                                    - u -

                                                                                                                                                                      diff --git a/docs/MQTTClient_internal/html/globals_func_w.html b/docs/MQTTClient_internal/html/globals_func_w.html index 2e4f6629e..5da270169 100644 --- a/docs/MQTTClient_internal/html/globals_func_w.html +++ b/docs/MQTTClient_internal/html/globals_func_w.html @@ -84,7 +84,7 @@

                                                                                                                                                                      - w -

                                                                                                                                                                        diff --git a/docs/MQTTClient_internal/html/globals_h.html b/docs/MQTTClient_internal/html/globals_h.html index 755f39506..3f2a9b399 100644 --- a/docs/MQTTClient_internal/html/globals_h.html +++ b/docs/MQTTClient_internal/html/globals_h.html @@ -99,7 +99,7 @@

                                                                                                                                                                        - h -

                                                                                                                                                                          diff --git a/docs/MQTTClient_internal/html/globals_i.html b/docs/MQTTClient_internal/html/globals_i.html index 346b98ec4..30efe5d67 100644 --- a/docs/MQTTClient_internal/html/globals_i.html +++ b/docs/MQTTClient_internal/html/globals_i.html @@ -78,7 +78,7 @@

                                                                                                                                                                          - i -

                                                                                                                                                                            diff --git a/docs/MQTTClient_internal/html/globals_l.html b/docs/MQTTClient_internal/html/globals_l.html index 4aa8bb566..2b8c85079 100644 --- a/docs/MQTTClient_internal/html/globals_l.html +++ b/docs/MQTTClient_internal/html/globals_l.html @@ -144,7 +144,7 @@

                                                                                                                                                                            - l -

                                                                                                                                                                              diff --git a/docs/MQTTClient_internal/html/globals_m.html b/docs/MQTTClient_internal/html/globals_m.html index 70abc2d56..cb4932bac 100644 --- a/docs/MQTTClient_internal/html/globals_m.html +++ b/docs/MQTTClient_internal/html/globals_m.html @@ -426,7 +426,7 @@

                                                                                                                                                                              - m -

                                                                                                                                                                                diff --git a/docs/MQTTClient_internal/html/globals_n.html b/docs/MQTTClient_internal/html/globals_n.html index 935f5244f..c7dca2637 100644 --- a/docs/MQTTClient_internal/html/globals_n.html +++ b/docs/MQTTClient_internal/html/globals_n.html @@ -72,7 +72,7 @@

                                                                                                                                                                                - n -

                                                                                                                                                                                  diff --git a/docs/MQTTClient_internal/html/globals_p.html b/docs/MQTTClient_internal/html/globals_p.html index 455fb494d..c5b951e5d 100644 --- a/docs/MQTTClient_internal/html/globals_p.html +++ b/docs/MQTTClient_internal/html/globals_p.html @@ -129,7 +129,7 @@

                                                                                                                                                                                  - p -

                                                                                                                                                                                    diff --git a/docs/MQTTClient_internal/html/globals_q.html b/docs/MQTTClient_internal/html/globals_q.html index 9e2cadb9b..8a395d3bc 100644 --- a/docs/MQTTClient_internal/html/globals_q.html +++ b/docs/MQTTClient_internal/html/globals_q.html @@ -72,7 +72,7 @@

                                                                                                                                                                                    - q -

                                                                                                                                                                                      diff --git a/docs/MQTTClient_internal/html/globals_r.html b/docs/MQTTClient_internal/html/globals_r.html index 136a7179e..0e04b6cec 100644 --- a/docs/MQTTClient_internal/html/globals_r.html +++ b/docs/MQTTClient_internal/html/globals_r.html @@ -84,7 +84,7 @@

                                                                                                                                                                                      - r -

                                                                                                                                                                                        diff --git a/docs/MQTTClient_internal/html/globals_s.html b/docs/MQTTClient_internal/html/globals_s.html index 0c5cb2394..cb8c73851 100644 --- a/docs/MQTTClient_internal/html/globals_s.html +++ b/docs/MQTTClient_internal/html/globals_s.html @@ -183,7 +183,7 @@

                                                                                                                                                                                        - s -

                                                                                                                                                                                          diff --git a/docs/MQTTClient_internal/html/globals_t.html b/docs/MQTTClient_internal/html/globals_t.html index 50c013e4d..76c182dba 100644 --- a/docs/MQTTClient_internal/html/globals_t.html +++ b/docs/MQTTClient_internal/html/globals_t.html @@ -99,7 +99,7 @@

                                                                                                                                                                                          - t -

                                                                                                                                                                                            : Thread.c
                                                                                                                                                                                          • Thread_start() -: Thread.c +: Thread.c
                                                                                                                                                                                          • Thread_unlock_mutex() : Thread.c @@ -135,7 +135,7 @@

                                                                                                                                                                                            - t -

                                                                                                                                                                                              diff --git a/docs/MQTTClient_internal/html/globals_type.html b/docs/MQTTClient_internal/html/globals_type.html index 27108ebc0..beb6f5b25 100644 --- a/docs/MQTTClient_internal/html/globals_type.html +++ b/docs/MQTTClient_internal/html/globals_type.html @@ -97,7 +97,7 @@ diff --git a/docs/MQTTClient_internal/html/globals_u.html b/docs/MQTTClient_internal/html/globals_u.html index 1cd6f27d3..c67d69daf 100644 --- a/docs/MQTTClient_internal/html/globals_u.html +++ b/docs/MQTTClient_internal/html/globals_u.html @@ -81,7 +81,7 @@

                                                                                                                                                                                              - u -

                                                                                                                                                                                                diff --git a/docs/MQTTClient_internal/html/globals_v.html b/docs/MQTTClient_internal/html/globals_v.html index 8460a06e0..0c08c7d54 100644 --- a/docs/MQTTClient_internal/html/globals_v.html +++ b/docs/MQTTClient_internal/html/globals_v.html @@ -72,7 +72,7 @@

                                                                                                                                                                                                - v -

                                                                                                                                                                                                  diff --git a/docs/MQTTClient_internal/html/globals_vars.html b/docs/MQTTClient_internal/html/globals_vars.html index 378bdd3af..b96d153bb 100644 --- a/docs/MQTTClient_internal/html/globals_vars.html +++ b/docs/MQTTClient_internal/html/globals_vars.html @@ -121,7 +121,7 @@ diff --git a/docs/MQTTClient_internal/html/globals_w.html b/docs/MQTTClient_internal/html/globals_w.html index ce2b23656..ca0485761 100644 --- a/docs/MQTTClient_internal/html/globals_w.html +++ b/docs/MQTTClient_internal/html/globals_w.html @@ -87,7 +87,7 @@

                                                                                                                                                                                                  - w -

                                                                                                                                                                                                    diff --git a/docs/MQTTClient_internal/html/graph_legend.html b/docs/MQTTClient_internal/html/graph_legend.html index 463258961..1dd86eedf 100644 --- a/docs/MQTTClient_internal/html/graph_legend.html +++ b/docs/MQTTClient_internal/html/graph_legend.html @@ -129,7 +129,7 @@ diff --git a/docs/MQTTClient_internal/html/graph_legend.png b/docs/MQTTClient_internal/html/graph_legend.png index 383ed6e9d..f77bb2124 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 98533ea01..f20fc159d 100644 --- a/docs/MQTTClient_internal/html/index.html +++ b/docs/MQTTClient_internal/html/index.html @@ -74,7 +74,7 @@ diff --git a/docs/MQTTClient_internal/html/search/all_10.js b/docs/MQTTClient_internal/html/search/all_10.js index 2035bba9f..f051457fa 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 8e3e85ee6..bbb6bba22 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 6931b207d..d7af1aa96 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 6bfb5830f..8c89358ec 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 01046d010..4f3282d4e 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 41e1b3a81..a9f360923 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 29b2baeec..2c478b299 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 0fda252a3..f3e201938 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 dbe74f5ce..f56dc0eae 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 5e08a117d..7cb09cb95 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 7266b1d10..0a67fe7c5 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 37abe4619..3826a3864 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 a760ec8e9..0bffbbab5 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 457e3a3a8..5affc6a63 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 145ae2e2f..5433f21d7 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 33b33e4ab..8b1ced2bf 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 1b5f36d21..78b3d9295 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 f53e35e9d..32e6451ed 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 33f96c2ff..5d98c64cf 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 541a8936e..a34833c84 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 2193eba76..c9ca0aa75 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 1a43176d7..545ff3f90 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 20d76fea0..6fcb15a3c 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 bf6723868..c32b60dbe 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 96ecd6af8..830954294 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 0c29959c6..390befc87 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 2466d6f3a..2cf269905 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 1b03be7ce..8aa1bc77a 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 cd7e58a8f..3763af41d 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 efab3852d..00a767d6d 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 3f3930142..042cbd557 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 890a05180..bb635c894 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 a7825f9b0..cadec74ba 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 a54983d45..a2a27bb6b 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 d6f8e84ce..96ddab889 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 fdbe3eb1b..daeb9738a 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 cea93b891..e5a4ff7a5 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 74585d961..1fa5d9a55 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 062d91f90..54398a552 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 fe5b83938..d77c9150d 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 050684fdb..0f452dbfd 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 a40063f26..1ec80a382 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 971ac4518..2ebffca3a 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 a78aca7ce..4efd28519 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 5253d0ddf..ec381cbfb 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 628c9ee7f..e2c8650a0 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 74d12b8f4..7812d99d5 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 51bada370..b9ee7b73b 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 09e5fb8c7..4eb1e032a 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 1ce32ad84..a62a659cc 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 5cf32da06..79c8c4d24 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 6c01a3181..430c1303b 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 b7f090823..fc810424d 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 ea24f545f..e9cbf16c5 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 332187c4b..7914cc585 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 1fe71e0d7..66398a7f7 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 da19b963d..2381b68cb 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 d8b79f2ce..dd07174bf 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 c649120bc..d5f16a244 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 4439163e8..229573837 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 15c328300..5a3782080 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 5031208b6..997ec20af 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 f1241380f..489df2d5e 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 e5c1a494e..02c0fb723 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 d049a68d1..7e69015b5 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 fedbf8d5e..98edfb0fa 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 576de3403..a8e413e08 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 9353bc2fb..41a5fd10b 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 8f264079d..8264b22e0 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 c50c6efd4..8b9542381 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 ae55f9929..448aaadd0 100644 --- a/docs/MQTTClient_internal/html/structAck.html +++ b/docs/MQTTClient_internal/html/structAck.html @@ -78,11 +78,11 @@
                                                                                                                                                                                                    Collaboration graph
                                                                                                                                                                                                    - - - - - + + + + +
                                                                                                                                                                                                    [legend]

                                  @@ -134,7 +134,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structAck__coll__graph.map b/docs/MQTTClient_internal/html/structAck__coll__graph.map index 5a75283c9..a02e7b07c 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 cbe4eac5f..9fee85fe3 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 60da8009d..d6bf9ccca 100644 --- a/docs/MQTTClient_internal/html/structClientStates.html +++ b/docs/MQTTClient_internal/html/structClientStates.html @@ -78,9 +78,9 @@
                                  Collaboration graph
                                  - - - + + +
                                  [legend]

                                  @@ -101,7 +101,7 @@ diff --git a/docs/MQTTClient_internal/html/structClientStates__coll__graph.map b/docs/MQTTClient_internal/html/structClientStates__coll__graph.map index b6b368017..09ed7a572 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 87699d365..ce5cb6278 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 9f015ef1d..513fd784e 100644 --- a/docs/MQTTClient_internal/html/structClients.html +++ b/docs/MQTTClient_internal/html/structClients.html @@ -78,13 +78,13 @@
                                  Collaboration graph
                                  - - - - - - - + + + + + + +
                                  [legend]
                                  @@ -125,9 +125,17 @@ + + + + + + @@ -219,7 +227,7 @@ diff --git a/docs/MQTTClient_internal/html/structClients__coll__graph.map b/docs/MQTTClient_internal/html/structClients__coll__graph.map index d63ba2f7a..3e7d632a0 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 0a6e9a0f5..02e5d8312 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 13c753d7a..60eb0ac66 100644 --- a/docs/MQTTClient_internal/html/structConnack.html +++ b/docs/MQTTClient_internal/html/structConnack.html @@ -78,11 +78,11 @@
                                  Collaboration graph
                                  - - - - - + + + + +
                                  [legend]
                                  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
                                  @@ -151,7 +151,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structConnack__coll__graph.map b/docs/MQTTClient_internal/html/structConnack__coll__graph.map index 2ebbfc13f..78bd57690 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 78726b651..478139f3f 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 86a6c8e98..64cb64558 100644 --- a/docs/MQTTClient_internal/html/structConnect.html +++ b/docs/MQTTClient_internal/html/structConnect.html @@ -78,8 +78,8 @@
                                  Collaboration graph
                                  - - + +
                                  [legend]

                                  @@ -163,7 +163,7 @@ diff --git a/docs/MQTTClient_internal/html/structConnect__coll__graph.map b/docs/MQTTClient_internal/html/structConnect__coll__graph.map index d3bfcf4df..4acbb2cc0 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 0d77ea386..ff6951672 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 d35d609d9..cd64f7866 100644 --- a/docs/MQTTClient_internal/html/structList.html +++ b/docs/MQTTClient_internal/html/structList.html @@ -78,8 +78,8 @@
                                  Collaboration graph
                                  - - + +
                                  [legend]
                                  @@ -114,7 +114,7 @@ diff --git a/docs/MQTTClient_internal/html/structListElementStruct.html b/docs/MQTTClient_internal/html/structListElementStruct.html index 3d85160b7..1fddabd75 100644 --- a/docs/MQTTClient_internal/html/structListElementStruct.html +++ b/docs/MQTTClient_internal/html/structListElementStruct.html @@ -78,7 +78,7 @@
                                  Collaboration graph
                                  - +
                                  [legend]
                                  @@ -105,7 +105,7 @@ diff --git a/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.map b/docs/MQTTClient_internal/html/structListElementStruct__coll__graph.map index e141e34b6..83284a918 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 02bcd6926..40f8faa62 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 8c4828d64..7c9b8c7ca 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 64e06ee83..50623dce5 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 940740d57..da575a15f 100644 --- a/docs/MQTTClient_internal/html/structLog__nameValue.html +++ b/docs/MQTTClient_internal/html/structLog__nameValue.html @@ -84,7 +84,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html index f94b45b2b..82a7003cc 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__SSLOptions.html @@ -323,7 +323,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__command.html b/docs/MQTTClient_internal/html/structMQTTAsync__command.html index f7733492a..d3a179ef1 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__command.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__command.html @@ -73,11 +73,11 @@
                                  Collaboration graph
                                  - - - - - + + + + +
                                  [legend]

                                  @@ -193,7 +193,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__command__coll__graph.map index 11bc4109b..832f35022 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 eab451847..8a0cd6a24 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 ea27ef862..de124fbff 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__connectData.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__connectData.html @@ -175,7 +175,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html index 0a324194d..96685d8fc 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions.html @@ -78,13 +78,13 @@
                                  Collaboration graph
                                  - - - - - - - + + + + + + +
                                  [legend]

                                  @@ -526,7 +526,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__connectOptions__coll__graph.map index fe64c8367..c680baa93 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 5abee9db9..306368a2f 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 2869950ff..423ba0770 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__createOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__createOptions.html @@ -168,7 +168,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html index affe19d3e..17c557c18 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions.html @@ -78,10 +78,10 @@
                                  Collaboration graph
                                  - - - - + + + +
                                  [legend]

                                  @@ -247,7 +247,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__disconnectOptions__coll__graph.map index 45f8cb9f1..593088595 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 ed2309054..c01419404 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 36b02a8c4..de323627b 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__failureData.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__failureData.html @@ -114,7 +114,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html index e86576020..7bd2f40c6 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5.html @@ -78,10 +78,10 @@
                                  Collaboration graph
                                  - - - - + + + +
                                  [legend]

                                  @@ -177,7 +177,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__failureData5__coll__graph.map index 57ca9a582..35b6c762d 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 41d0db5b8..d1d5024e9 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 d294897fc..6a9f0fb39 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__init__options.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__init__options.html @@ -130,7 +130,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__message.html b/docs/MQTTClient_internal/html/structMQTTAsync__message.html index 57c37d22a..0314c0a50 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__message.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__message.html @@ -78,10 +78,10 @@
                                  Collaboration graph
                                  - - - - + + + +
                                  [legend]

                                  @@ -240,7 +240,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__message__coll__graph.map index 0ed7b5ca8..c31fe07e1 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 c124273e6..313fab981 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 fdf0aa8a5..a564f9ad6 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__nameValue.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__nameValue.html @@ -93,7 +93,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html index 3d73bc4c1..0476bcd38 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand.html @@ -73,23 +73,23 @@
                                  Collaboration graph
                                  - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + +
                                  [legend]

                                  @@ -117,7 +117,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__queuedCommand__coll__graph.map index 8ecea4058..1d624395e 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 6c09aec4f..f120edd77 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 2182e3377..e2d7a957f 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions.html @@ -78,11 +78,11 @@
                                  Collaboration graph
                                  - - - - - + + + + +
                                  [legend]
                                  @@ -272,7 +272,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__responseOptions__coll__graph.map index ea879d41c..e332422e9 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 e6f98aace..fc1962939 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 ae16f9455..8b2f2f0b3 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__struct.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__struct.html @@ -73,22 +73,22 @@
                                  Collaboration graph
                                  - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + +
                                  [legend]

                                  @@ -215,7 +215,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__struct__coll__graph.map index 3daba5310..4ca5957f6 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 1b1837793..18b729017 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 1cd4f72ce..80513d7b2 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__successData.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__successData.html @@ -78,11 +78,11 @@
                                  Collaboration graph
                                  - - - - - + + + + +
                                  [legend]
                                  @@ -176,7 +176,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html b/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html index ce319c814..eed95c663 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__successData5.html @@ -78,11 +78,11 @@
                                  Collaboration graph
                                  - - - - - + + + + +
                                  [legend]

                                  @@ -226,7 +226,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTAsync__successData5__coll__graph.map index 0cb9deac1..e391c1d91 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 525224dee..93881805c 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 7ac0c4012..73bf27056 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 2b70b97ec..2c862529f 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 b8d9e6f85..35acb0a39 100644 --- a/docs/MQTTClient_internal/html/structMQTTAsync__willOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTAsync__willOptions.html @@ -172,7 +172,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html index 885d2e6d0..7847cbfb6 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__SSLOptions.html @@ -323,7 +323,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html index 853fb7b4c..0b85f3259 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions.html @@ -78,10 +78,10 @@
                                  Collaboration graph
                                  - - - - + + + +
                                  [legend]

                                  @@ -429,7 +429,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__connectOptions__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTClient__connectOptions__coll__graph.map index 09beeae7e..7a5b11e7f 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 980fbcacc..277a7f5bd 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 37cfc23f8..b5a933a28 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__createOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__createOptions.html @@ -147,7 +147,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__init__options.html b/docs/MQTTClient_internal/html/structMQTTClient__init__options.html index fe4a0cde2..721a6687a 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__init__options.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__init__options.html @@ -130,7 +130,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__message.html b/docs/MQTTClient_internal/html/structMQTTClient__message.html index b817078b3..fc0df7772 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__message.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__message.html @@ -78,10 +78,10 @@
                                  Collaboration graph
                                  - - - - + + + +
                                  [legend]

                                  @@ -224,7 +224,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTClient__message__coll__graph.map index 1af5886a4..d61a3c225 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 33794feaf..4b551c64a 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 769c9e939..467f54adb 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__nameValue.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__nameValue.html @@ -92,7 +92,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTClient__persistence.html b/docs/MQTTClient_internal/html/structMQTTClient__persistence.html index 0fe0e4169..b939f4bcf 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__persistence.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__persistence.html @@ -121,7 +121,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html b/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html index 370be0f99..baa585a60 100644 --- a/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html +++ b/docs/MQTTClient_internal/html/structMQTTClient__willOptions.html @@ -172,7 +172,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTClients.html b/docs/MQTTClient_internal/html/structMQTTClients.html index abaf44ca5..759ac3b08 100644 --- a/docs/MQTTClient_internal/html/structMQTTClients.html +++ b/docs/MQTTClient_internal/html/structMQTTClients.html @@ -73,16 +73,16 @@
                                  Collaboration graph
                                  - - - - - - - - - - + + + + + + + + + +
                                  [legend]

                                  @@ -152,7 +152,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTClients__coll__graph.map index f0a447859..38953a661 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 a22c94b52..18ae0d29c 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 4d057c936..b01d1e614 100644 --- a/docs/MQTTClient_internal/html/structMQTTLenString.html +++ b/docs/MQTTClient_internal/html/structMQTTLenString.html @@ -93,7 +93,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTPacket.html b/docs/MQTTClient_internal/html/structMQTTPacket.html index a34f0c3f1..f95a9a56e 100644 --- a/docs/MQTTClient_internal/html/structMQTTPacket.html +++ b/docs/MQTTClient_internal/html/structMQTTPacket.html @@ -78,8 +78,8 @@
                                  Collaboration graph
                                  - - + +
                                  [legend]
                                  @@ -98,7 +98,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTPacket__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTPacket__coll__graph.map index 6f94b6832..dd17f8a51 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 ff80fc2d5..d087c8299 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 323e35599..0de6b4d5b 100644 --- a/docs/MQTTClient_internal/html/structMQTTPersistence__message.html +++ b/docs/MQTTClient_internal/html/structMQTTPersistence__message.html @@ -73,10 +73,10 @@
                                  Collaboration graph
                                  - - - - + + + +
                                  [legend]
                                  @@ -116,7 +116,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTPersistence__message__coll__graph.map index 0627adb24..2d5405fd1 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 ed751b70b..be72c6813 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 bfde610d7..757619090 100644 --- a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry.html +++ b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry.html @@ -73,11 +73,11 @@
                                  Collaboration graph
                                  - - - - - + + + + +
                                  [legend]
                                  @@ -102,7 +102,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTPersistence__qEntry__coll__graph.map index bb315bd07..344bc306d 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 e7e379927..1128aafcf 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 9f4c76039..be5bc67a4 100644 --- a/docs/MQTTClient_internal/html/structMQTTProperties.html +++ b/docs/MQTTClient_internal/html/structMQTTProperties.html @@ -78,9 +78,9 @@
                                  Collaboration graph
                                  - - - + + +
                                  [legend]
                                  @@ -111,7 +111,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTProperties__coll__graph.map index 75e17e229..f72caa66a 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 9b1420b1b..71cfbd9e1 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 8daf80b12..7816ef86d 100644 --- a/docs/MQTTClient_internal/html/structMQTTProperty.html +++ b/docs/MQTTClient_internal/html/structMQTTProperty.html @@ -78,8 +78,8 @@
                                  Collaboration graph
                                  - - + +
                                  [legend]
                                  @@ -144,7 +144,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTProperty__coll__graph.map index 5536d3609..1294e1703 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 308388e1d..de2e88dbf 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 00b10372e..2b3133472 100644 --- a/docs/MQTTClient_internal/html/structMQTTProtocol.html +++ b/docs/MQTTClient_internal/html/structMQTTProtocol.html @@ -73,9 +73,9 @@
                                  Collaboration graph
                                  - - - + + +
                                  [legend]

                                  @@ -100,7 +100,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTProtocol__coll__graph.map index 6fad5d2c4..e1b9f00ae 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 420abb93b..c5ec871ca 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 fa8b6c757..89f579bd6 100644 --- a/docs/MQTTClient_internal/html/structMQTTResponse.html +++ b/docs/MQTTClient_internal/html/structMQTTResponse.html @@ -78,10 +78,10 @@
                                  Collaboration graph
                                  - - - - + + + +
                                  [legend]
                                  @@ -111,7 +111,7 @@ diff --git a/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.map b/docs/MQTTClient_internal/html/structMQTTResponse__coll__graph.map index 7b3d57b2d..63fc513b5 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 0af3f3ead..276aa1195 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 5877e4d09..24df11f2f 100644 --- a/docs/MQTTClient_internal/html/structMQTTSubscribe__options.html +++ b/docs/MQTTClient_internal/html/structMQTTSubscribe__options.html @@ -170,7 +170,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structMessages.html b/docs/MQTTClient_internal/html/structMessages.html index 31c8dcc7a..77b9ffa29 100644 --- a/docs/MQTTClient_internal/html/structMessages.html +++ b/docs/MQTTClient_internal/html/structMessages.html @@ -78,11 +78,11 @@
                                  Collaboration graph
                                  - - - - - + + + + +
                                  [legend]

                                  @@ -132,7 +132,7 @@ diff --git a/docs/MQTTClient_internal/html/structMessages__coll__graph.map b/docs/MQTTClient_internal/html/structMessages__coll__graph.map index ab5b9de89..3f856c28e 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 a1c190ae7..73e8aa3fb 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 f86bcf351..e0918c58d 100644 --- a/docs/MQTTClient_internal/html/structNodeStruct.html +++ b/docs/MQTTClient_internal/html/structNodeStruct.html @@ -78,7 +78,7 @@
                                  Collaboration graph
                                  - +
                                  [legend]
                                  @@ -112,7 +112,7 @@ diff --git a/docs/MQTTClient_internal/html/structNodeStruct__coll__graph.map b/docs/MQTTClient_internal/html/structNodeStruct__coll__graph.map index 0f55a14c1..510675d2d 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 1ff636eea..042dbe3d5 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 5e880f08c..0eaf19017 100644 --- a/docs/MQTTClient_internal/html/structPacketBuffers.html +++ b/docs/MQTTClient_internal/html/structPacketBuffers.html @@ -109,7 +109,7 @@ diff --git a/docs/MQTTClient_internal/html/structPublications.html b/docs/MQTTClient_internal/html/structPublications.html index 0563350f1..16c000b7a 100644 --- a/docs/MQTTClient_internal/html/structPublications.html +++ b/docs/MQTTClient_internal/html/structPublications.html @@ -103,7 +103,7 @@ diff --git a/docs/MQTTClient_internal/html/structPublish.html b/docs/MQTTClient_internal/html/structPublish.html index feaec6ef9..0fc99a93c 100644 --- a/docs/MQTTClient_internal/html/structPublish.html +++ b/docs/MQTTClient_internal/html/structPublish.html @@ -78,11 +78,11 @@
                                  Collaboration graph
                                  - - - - - + + + + +
                                  [legend]
                                  @@ -149,7 +149,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structPublish__coll__graph.map b/docs/MQTTClient_internal/html/structPublish__coll__graph.map index 5dff59e6a..effdd71d6 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 cdc50b3ab..82a51a45f 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 799718369..ae1eab85c 100644 --- a/docs/MQTTClient_internal/html/structSHA__CTX__S.html +++ b/docs/MQTTClient_internal/html/structSHA__CTX__S.html @@ -97,7 +97,7 @@ diff --git a/docs/MQTTClient_internal/html/structSockets.html b/docs/MQTTClient_internal/html/structSockets.html index 6abe8d905..0c8bbd953 100644 --- a/docs/MQTTClient_internal/html/structSockets.html +++ b/docs/MQTTClient_internal/html/structSockets.html @@ -78,9 +78,9 @@
                                  Collaboration graph
                                  - - - + + +
                                  [legend]

                                  @@ -127,7 +127,7 @@ diff --git a/docs/MQTTClient_internal/html/structSockets__coll__graph.map b/docs/MQTTClient_internal/html/structSockets__coll__graph.map index 477ac1b44..9755b5f63 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 775d3c3c9..f538a346b 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 a7cbb0866..b89b8717c 100644 --- a/docs/MQTTClient_internal/html/structSuback.html +++ b/docs/MQTTClient_internal/html/structSuback.html @@ -78,13 +78,13 @@
                                  Collaboration graph
                                  - - - - - - - + + + + + + +
                                  [legend]
                                  @@ -136,7 +136,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structSuback__coll__graph.map b/docs/MQTTClient_internal/html/structSuback__coll__graph.map index 3de2eb7ac..0f712931e 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 d393b0b84..94a4a7612 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 a6e3ba509..572bd63aa 100644 --- a/docs/MQTTClient_internal/html/structTree.html +++ b/docs/MQTTClient_internal/html/structTree.html @@ -78,8 +78,8 @@
                                  Collaboration graph
                                  - - + +
                                  [legend]

                                  @@ -126,7 +126,7 @@ diff --git a/docs/MQTTClient_internal/html/structTree__coll__graph.map b/docs/MQTTClient_internal/html/structTree__coll__graph.map index bd7174da9..4a4c6b383 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 4a5c77dfb..3ffb9cc92 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 a69b782d2..ca9ab4a67 100644 --- a/docs/MQTTClient_internal/html/structUnsuback.html +++ b/docs/MQTTClient_internal/html/structUnsuback.html @@ -78,13 +78,13 @@
                                  Collaboration graph
                                  - - - - - - - + + + + + + +
                                  [legend]
                                  @@ -136,7 +136,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/structUnsuback__coll__graph.map b/docs/MQTTClient_internal/html/structUnsuback__coll__graph.map index 1c4e12d6f..51f75a68a 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 5c300f00d..db3eb5567 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 54a9f8a0c..fc806c25c 100644 --- a/docs/MQTTClient_internal/html/structcond__type__struct.html +++ b/docs/MQTTClient_internal/html/structcond__type__struct.html @@ -84,7 +84,7 @@ diff --git a/docs/MQTTClient_internal/html/structframeData.html b/docs/MQTTClient_internal/html/structframeData.html index 268fb6c76..47e422562 100644 --- a/docs/MQTTClient_internal/html/structframeData.html +++ b/docs/MQTTClient_internal/html/structframeData.html @@ -105,7 +105,7 @@ diff --git a/docs/MQTTClient_internal/html/structheap__info.html b/docs/MQTTClient_internal/html/structheap__info.html index 6d3b2044c..59d234ca9 100644 --- a/docs/MQTTClient_internal/html/structheap__info.html +++ b/docs/MQTTClient_internal/html/structheap__info.html @@ -93,7 +93,7 @@ diff --git a/docs/MQTTClient_internal/html/structnameToType.html b/docs/MQTTClient_internal/html/structnameToType.html index a27e38b68..3bc56f44e 100644 --- a/docs/MQTTClient_internal/html/structnameToType.html +++ b/docs/MQTTClient_internal/html/structnameToType.html @@ -84,7 +84,7 @@ diff --git a/docs/MQTTClient_internal/html/structnetworkHandles.html b/docs/MQTTClient_internal/html/structnetworkHandles.html index e08e5dee9..4f7f427b7 100644 --- a/docs/MQTTClient_internal/html/structnetworkHandles.html +++ b/docs/MQTTClient_internal/html/structnetworkHandles.html @@ -73,8 +73,8 @@
                                  Collaboration graph
                                  - - + +
                                  [legend]

                                  @@ -115,7 +115,7 @@ diff --git a/docs/MQTTClient_internal/html/structnetworkHandles__coll__graph.map b/docs/MQTTClient_internal/html/structnetworkHandles__coll__graph.map index d19ab76e6..07f9d22cc 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 0726f8994..8e0ac9a06 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 989326804..01b713026 100644 --- a/docs/MQTTClient_internal/html/structpending__write.html +++ b/docs/MQTTClient_internal/html/structpending__write.html @@ -73,8 +73,8 @@
                                  Collaboration graph
                                  - - + +
                                  [legend]
                                  @@ -93,7 +93,7 @@ diff --git a/docs/MQTTClient_internal/html/structpending__write__coll__graph.map b/docs/MQTTClient_internal/html/structpending__write__coll__graph.map index 827edb85f..8fafc6145 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 f12a71af3..dffbbd920 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 f6720f476..606df5771 100644 --- a/docs/MQTTClient_internal/html/structpending__writes.html +++ b/docs/MQTTClient_internal/html/structpending__writes.html @@ -96,7 +96,7 @@ diff --git a/docs/MQTTClient_internal/html/structprops__rc__parms.html b/docs/MQTTClient_internal/html/structprops__rc__parms.html index e3a06ffac..ae8414c21 100644 --- a/docs/MQTTClient_internal/html/structprops__rc__parms.html +++ b/docs/MQTTClient_internal/html/structprops__rc__parms.html @@ -73,20 +73,20 @@
                                  Collaboration graph
                                  - - - - - - - - - - - - - - + + + + + + + + + + + + + +
                                  [legend]
                                  @@ -108,7 +108,7 @@ 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 ded452452..a7328d40a 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 6d7ab6de1..add03aa3a 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 9f94acd4d..b1f6a3918 100644 --- a/docs/MQTTClient_internal/html/structqEntry.html +++ b/docs/MQTTClient_internal/html/structqEntry.html @@ -73,12 +73,12 @@
                                  Collaboration graph
                                  - - - - - - + + + + + +
                                  [legend]
                                  @@ -107,7 +107,7 @@ diff --git a/docs/MQTTClient_internal/html/structqEntry__coll__graph.map b/docs/MQTTClient_internal/html/structqEntry__coll__graph.map index f97c8a210..b6d4709b2 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 a67eb634e..14a21df60 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 7afc3ac42..6962a528c 100644 --- a/docs/MQTTClient_internal/html/structsocket__queue.html +++ b/docs/MQTTClient_internal/html/structsocket__queue.html @@ -102,7 +102,7 @@ diff --git a/docs/MQTTClient_internal/html/structstackEntry.html b/docs/MQTTClient_internal/html/structstackEntry.html index 72e611487..5a94cd9a5 100644 --- a/docs/MQTTClient_internal/html/structstackEntry.html +++ b/docs/MQTTClient_internal/html/structstackEntry.html @@ -87,7 +87,7 @@ diff --git a/docs/MQTTClient_internal/html/structstorageElement.html b/docs/MQTTClient_internal/html/structstorageElement.html index c06fb53be..dfe419774 100644 --- a/docs/MQTTClient_internal/html/structstorageElement.html +++ b/docs/MQTTClient_internal/html/structstorageElement.html @@ -99,7 +99,7 @@ diff --git a/docs/MQTTClient_internal/html/structthreadEntry.html b/docs/MQTTClient_internal/html/structthreadEntry.html index 15e2946b6..d453ec2bc 100644 --- a/docs/MQTTClient_internal/html/structthreadEntry.html +++ b/docs/MQTTClient_internal/html/structthreadEntry.html @@ -73,8 +73,8 @@
                                  Collaboration graph
                                  - - + +
                                  [legend]
                                  @@ -99,7 +99,7 @@ diff --git a/docs/MQTTClient_internal/html/structthreadEntry__coll__graph.map b/docs/MQTTClient_internal/html/structthreadEntry__coll__graph.map index 39dfa14c8..94e6c5c14 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 92d3926ef..5bd5950f2 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 c89f41da0..1bc6e11e2 100644 --- a/docs/MQTTClient_internal/html/structtraceEntry.html +++ b/docs/MQTTClient_internal/html/structtraceEntry.html @@ -108,7 +108,7 @@ diff --git a/docs/MQTTClient_internal/html/structtrace__settings__type.html b/docs/MQTTClient_internal/html/structtrace__settings__type.html index 7fb970501..c88f1ec9c 100644 --- a/docs/MQTTClient_internal/html/structtrace__settings__type.html +++ b/docs/MQTTClient_internal/html/structtrace__settings__type.html @@ -90,7 +90,7 @@ diff --git a/docs/MQTTClient_internal/html/structwillMessages.html b/docs/MQTTClient_internal/html/structwillMessages.html index d0e081868..f13301374 100644 --- a/docs/MQTTClient_internal/html/structwillMessages.html +++ b/docs/MQTTClient_internal/html/structwillMessages.html @@ -100,7 +100,7 @@ diff --git a/docs/MQTTClient_internal/html/structws__frame.html b/docs/MQTTClient_internal/html/structws__frame.html index cf376b5b3..4f80d5634 100644 --- a/docs/MQTTClient_internal/html/structws__frame.html +++ b/docs/MQTTClient_internal/html/structws__frame.html @@ -91,7 +91,7 @@ diff --git a/docs/MQTTClient_internal/html/tabs.css b/docs/MQTTClient_internal/html/tabs.css index 85a0cd5b5..7d45d36c1 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 42791a12b..78b749cc5 100644 --- a/docs/MQTTClient_internal/html/unionHeader.html +++ b/docs/MQTTClient_internal/html/unionHeader.html @@ -109,7 +109,7 @@ diff --git a/docs/MQTTClient_internal/html/utf-8_8c.html b/docs/MQTTClient_internal/html/utf-8_8c.html index 8ea8fac76..5db95c87b 100644 --- a/docs/MQTTClient_internal/html/utf-8_8c.html +++ b/docs/MQTTClient_internal/html/utf-8_8c.html @@ -82,9 +82,9 @@
                                  - - - + + +
                                  @@ -221,8 +221,8 @@

                                  - - + + @@ -257,9 +257,9 @@

                                  - - - + + + @@ -297,7 +297,7 @@

                                  diff --git a/docs/MQTTClient_internal/html/utf-8_8c__incl.map b/docs/MQTTClient_internal/html/utf-8_8c__incl.map index 427fe2b13..90b8861e7 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 4a86b33b1..6bb048918 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 2bcca9f4d..0b76369d3 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 e69733ea4..f488baf2f 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 3f44660f8..7fbbb294f 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 ceb577dc7..579d834cf 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