ESP-IDF
mqtt5_config_storage_t::will_property_info
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
mqtt5_config_storage_t::will_property_info
mqtt5_config_storage_t::will_property_info field
Syntax
Show:
Summary
Declaration
from
mqtt5_client_priv.h:30
esp_mqtt5_connection_will_property_storage_t
will_property_info
;
Examples
References
from
examples
Code
Location
Referrer
esp_mqtt5_connection_will_property_storage_t
will_property_info
;
mqtt5_client_priv.h:30
free
(
client
->
mqtt5_config
->
will_property_info
.
content_type
)
;
mqtt5_client.c:310
esp_mqtt5_client_destory()
free
(
client
->
mqtt5_config
->
will_property_info
.
response_topic
)
;
mqtt5_client.c:311
esp_mqtt5_client_destory()
free
(
client
->
mqtt5_config
->
will_property_info
.
correlation_data
)
;
mqtt5_client.c:312
esp_mqtt5_client_destory()
esp_mqtt5_client_delete_user_property
(
client
->
mqtt5_config
->
will_property_info
.
user_property
)
;
mqtt5_client.c:316
esp_mqtt5_client_destory()
client
->
mqtt5_config
->
will_property_info
.
payload_format_indicator
=
connect_property
->
payload_format_indicator
;
mqtt5_client.c:608
esp_mqtt5_client_set_connect_property()
client
->
mqtt5_config
->
will_property_info
.
will_delay_interval
=
connect_property
->
will_delay_interval
;
mqtt5_client.c:611
esp_mqtt5_client_set_connect_property()
client
->
mqtt5_config
->
will_property_info
.
message_expiry_interval
=
connect_property
->
message_expiry_interval
;
mqtt5_client.c:614
esp_mqtt5_client_set_connect_property()
ESP_MEM_CHECK
(
TAG
,
esp_mqtt_set_if_config
(
connect_property
->
content_type
,
&
client
->
mqtt5_config
->
will_property_info
.
content_type
)
,
goto
_mqtt_set_config_failed
)
;
mqtt5_client.c:616
esp_mqtt5_client_set_connect_property()
ESP_MEM_CHECK
(
TAG
,
esp_mqtt_set_if_config
(
connect_property
->
response_topic
,
&
client
->
mqtt5_config
->
will_property_info
.
response_topic
)
,
goto
_mqtt_set_config_failed
)
;
mqtt5_client.c:617
esp_mqtt5_client_set_connect_property()
free
(
client
->
mqtt5_config
->
will_property_info
.
correlation_data
)
;
mqtt5_client.c:619
esp_mqtt5_client_set_connect_property()
client
->
mqtt5_config
->
will_property_info
.
correlation_data
=
malloc
(
connect_property
->
correlation_data_len
)
;
mqtt5_client.c:620
esp_mqtt5_client_set_connect_property()
ESP_MEM_CHECK
(
TAG
,
client
->
mqtt5_config
->
will_property_info
.
correlation_data
,
goto
_mqtt_set_config_failed
)
;
mqtt5_client.c:621
esp_mqtt5_client_set_connect_property()
memcpy
(
client
->
mqtt5_config
->
will_property_info
.
correlation_data
,
connect_property
->
correlation_data
,
connect_property
->
correlation_data_len
)
;
mqtt5_client.c:622
esp_mqtt5_client_set_connect_property()
client
->
mqtt5_config
->
will_property_info
.
correlation_data_len
=
connect_property
->
correlation_data_len
;
mqtt5_client.c:623
esp_mqtt5_client_set_connect_property()
esp_mqtt5_client_delete_user_property
(
client
->
mqtt5_config
->
will_property_info
.
user_property
)
;
mqtt5_client.c:626
esp_mqtt5_client_set_connect_property()
client
->
mqtt5_config
->
will_property_info
.
user_property
=
calloc
(
1
,
sizeof
(
struct
mqtt5_user_property_list_t
)
)
;
mqtt5_client.c:627
esp_mqtt5_client_set_connect_property()
ESP_MEM_CHECK
(
TAG
,
client
->
mqtt5_config
->
will_property_info
.
user_property
,
goto
_mqtt_set_config_failed
)
;
mqtt5_client.c:628
esp_mqtt5_client_set_connect_property()
STAILQ_INIT
(
client
->
mqtt5_config
->
will_property_info
.
user_property
)
;
mqtt5_client.c:629
esp_mqtt5_client_set_connect_property()
if
(
esp_mqtt5_user_property_copy
(
client
->
mqtt5_config
->
will_property_info
.
user_property
,
connect_property
->
will_user_property
)
!=
ESP_OK
)
{
mqtt5_client.c:630
esp_mqtt5_client_set_connect_property()
&
client
->
mqtt_state
.
connection
.
information
,
&
client
->
mqtt5_config
->
connect_property_info
,
&
client
->
mqtt5_config
->
will_property_info
)
;
mqtt_client.c:731
esp_mqtt_connect()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
mqtt5_config_storage_t::will_property_info
is read by 2 functions:
All items filtered out
mqtt5_config_storage_t::will_property_info
esp_mqtt5_client_destory()
esp_mqtt5_client_set_connect_property()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out