Select one of the symbols to view example projects that use it.
 
Outline
#define _MQTT5_CLIENT_PRIV_H_
#include "mqtt5_client.h"
#include "mqtt_client_priv.h"
#include "mqtt5_msg.h"
mqtt5_topic_alias
mqtt5_topic_alias_list_t
mqtt5_topic_alias_handle_t
mqtt5_topic_alias_item_t
mqtt5_config_storage_t
esp_mqtt5_increment_packet_counter(esp_mqtt5_client_handle_t);
esp_mqtt5_decrement_packet_counter(esp_mqtt5_client_handle_t);
esp_mqtt5_parse_pubcomp(esp_mqtt5_client_handle_t);
esp_mqtt5_parse_puback(esp_mqtt5_client_handle_t);
esp_mqtt5_parse_unsuback(esp_mqtt5_client_handle_t);
esp_mqtt5_parse_suback(esp_mqtt5_client_handle_t);
esp_mqtt5_parse_connack(esp_mqtt5_client_handle_t, int *);
esp_mqtt5_client_destory(esp_mqtt5_client_handle_t);
esp_mqtt5_client_publish_check(esp_mqtt5_client_handle_t, int, int);
esp_mqtt5_client_subscribe_check(esp_mqtt5_client_handle_t, int);
esp_mqtt5_create_default_config(esp_mqtt5_client_handle_t);
esp_mqtt5_get_publish_data(esp_mqtt5_client_handle_t, uint8_t *, size_t, char **, size_t *, char **, size_t *);
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/mqtt/esp-mqtt/lib/include/mqtt5_client_priv.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _MQTT5_CLIENT_PRIV_H_ #define _MQTT5_CLIENT_PRIV_H_ #include "mqtt5_client.h" #include "mqtt_client_priv.h" #include "mqtt5_msg.h" #ifdef __cplusplus extern "C" { #endif typedef struct mqtt5_topic_alias { char *topic; uint16_t topic_len; uint16_t topic_alias; STAILQ_ENTRY(mqtt5_topic_alias) next; }{ ... } mqtt5_topic_alias_t; STAILQ_HEAD(mqtt5_topic_alias_list_t, mqtt5_topic_alias); typedef struct mqtt5_topic_alias_list_t *mqtt5_topic_alias_handle_t; typedef struct mqtt5_topic_alias *mqtt5_topic_alias_item_t; typedef struct { esp_mqtt5_connection_property_storage_t connect_property_info; esp_mqtt5_connection_will_property_storage_t will_property_info; esp_mqtt5_connection_server_resp_property_t server_resp_property_info; esp_mqtt5_disconnect_property_config_t disconnect_property_info; const esp_mqtt5_publish_property_config_t *publish_property_info; const esp_mqtt5_subscribe_property_config_t *subscribe_property_info; const esp_mqtt5_unsubscribe_property_config_t *unsubscribe_property_info; mqtt5_topic_alias_handle_t peer_topic_alias; }{ ... } mqtt5_config_storage_t; void esp_mqtt5_increment_packet_counter(esp_mqtt5_client_handle_t client); void esp_mqtt5_decrement_packet_counter(esp_mqtt5_client_handle_t client); void esp_mqtt5_parse_pubcomp(esp_mqtt5_client_handle_t client); void esp_mqtt5_parse_puback(esp_mqtt5_client_handle_t client); void esp_mqtt5_parse_unsuback(esp_mqtt5_client_handle_t client); void esp_mqtt5_parse_suback(esp_mqtt5_client_handle_t client); esp_err_t esp_mqtt5_parse_connack(esp_mqtt5_client_handle_t client, int *connect_rsp_code); void esp_mqtt5_client_destory(esp_mqtt5_client_handle_t client); esp_err_t esp_mqtt5_client_publish_check(esp_mqtt5_client_handle_t client, int qos, int retain); esp_err_t esp_mqtt5_client_subscribe_check(esp_mqtt5_client_handle_t client, int qos); esp_err_t esp_mqtt5_create_default_config(esp_mqtt5_client_handle_t client); esp_err_t esp_mqtt5_get_publish_data(esp_mqtt5_client_handle_t client, uint8_t *msg_buf, size_t msg_read_len, char **msg_topic, size_t *msg_topic_len, char **msg_data, size_t *msg_data_len); #ifdef __cplusplus }{...} #endif //__cplusplus /* ... */ #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.