ESP-IDF
fini_message()
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
fini_message()
fini_message() function
Syntax
Show:
Summary
Declaration
from
mqtt_msg.c:98
static
mqtt_message_t
*
fini_message
(
mqtt_connection_t
*
connection
,
int
type
,
int
dup
,
int
qos
,
int
retain
)
;
Arguments
Argument
connection
type
dup
qos
retain
Related Functions
Found 32 other functions taking a
mqtt_connection
argument:
Function
fail_message()
append_property()
fail_message()
set_message_header_size()
append_string()
update_property_len_value()
init_message()
fini_message()
append_message_id()
append_message_id()
mqtt_msg_buffer_destroy()
mqtt_msg_buffer_init()
mqtt_msg_connect()
mqtt_msg_publish()
mqtt_msg_puback()
mqtt_msg_pubrec()
mqtt_msg_pubrel()
mqtt_msg_pubcomp()
mqtt_msg_subscribe()
mqtt_msg_unsubscribe()
mqtt_msg_pingreq()
mqtt_msg_disconnect()
mqtt5_msg_connect()
mqtt5_msg_publish()
mqtt5_msg_subscribe()
mqtt5_msg_unsubscribe()
mqtt5_msg_disconnect()
mqtt5_msg_pubcomp()
mqtt5_msg_pubrel()
mqtt5_msg_pubrec()
mqtt5_msg_puback()
mqtt_msg_pingresp()
Examples
References
from
examples
Code
Location
Referrer
static
mqtt_message_t
*
fini_message
(
mqtt_connection_t
*
connection
,
int
type
,
int
dup
,
int
qos
,
int
retain
)
mqtt_msg.c:98
return
fini_message
(
connection
,
MQTT_MSG_TYPE_CONNECT
,
0
,
0
,
0
)
;
mqtt_msg.c:436
mqtt_msg_connect()
return
fini_message
(
connection
,
MQTT_MSG_TYPE_PUBLISH
,
0
,
qos
,
retain
)
;
mqtt_msg.c:476
mqtt_msg_publish()
return
fini_message
(
connection
,
MQTT_MSG_TYPE_PUBACK
,
0
,
0
,
0
)
;
mqtt_msg.c:485
mqtt_msg_puback()
return
fini_message
(
connection
,
MQTT_MSG_TYPE_PUBREC
,
0
,
0
,
0
)
;
mqtt_msg.c:494
mqtt_msg_pubrec()
return
fini_message
(
connection
,
MQTT_MSG_TYPE_PUBREL
,
0
,
1
,
0
)
;
mqtt_msg.c:503
mqtt_msg_pubrel()
return
fini_message
(
connection
,
MQTT_MSG_TYPE_PUBCOMP
,
0
,
0
,
0
)
;
mqtt_msg.c:512
mqtt_msg_pubcomp()
return
fini_message
(
connection
,
MQTT_MSG_TYPE_SUBSCRIBE
,
0
,
1
,
0
)
;
mqtt_msg.c:539
mqtt_msg_subscribe()
return
fini_message
(
connection
,
MQTT_MSG_TYPE_UNSUBSCRIBE
,
0
,
1
,
0
)
;
mqtt_msg.c:558
mqtt_msg_unsubscribe()
return
fini_message
(
connection
,
MQTT_MSG_TYPE_PINGREQ
,
0
,
0
,
0
)
;
mqtt_msg.c:564
mqtt_msg_pingreq()
return
fini_message
(
connection
,
MQTT_MSG_TYPE_PINGRESP
,
0
,
0
,
0
)
;
mqtt_msg.c:570
mqtt_msg_pingresp()
return
fini_message
(
connection
,
MQTT_MSG_TYPE_DISCONNECT
,
0
,
0
,
0
)
;
mqtt_msg.c:576
mqtt_msg_disconnect()
Call Tree
from
examples
fini_message()
is called by 11 functions and calls 1 function:
mqtt_msg_connect()
mqtt_msg_publish()
mqtt_msg_puback()
mqtt_msg_pubrec()
mqtt_msg_pubrel()
mqtt_msg_pubcomp()
mqtt_msg_subscribe()
mqtt_msg_unsubscribe()
mqtt_msg_pingreq()
mqtt_msg_pingresp()
mqtt_msg_disconnect()
All items filtered out
fini_message()
fail_message()
All items filtered out
Data Use
from
examples
fini_message()
reads 5 variables and writes 3 variables:
mqtt_connection::outbound_message
mqtt_connection::buffer
mqtt_message::length
mqtt_message::fragmented_msg_total_length
mqtt_message::fragmented_msg_data_offset
All items filtered out
fini_message()
mqtt_message::data
mqtt_message::length
mqtt_message::fragmented_msg_data_offset
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