ESP-IDF
mqtt_connection::buffer_length
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (2/5)...
Files
loading (3/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
mqtt_connection::buffer_length
mqtt_connection::buffer_length field
Syntax
Show:
Summary
Declaration
from
mqtt_msg.h:91
size_t
buffer_length
;
Examples
References
from
examples
Code
Location
Referrer
size_t
buffer_length
;
mqtt_msg.h:91
if
(
connection
->
outbound_message
.
length
>
connection
->
buffer_length
)
{
mqtt5_msg.c:73
update_property_len_value()
if
(
(
connection
->
outbound_message
.
length
+
len_occupy
+
(
data
?
data_len
:
0
)
+
(
property_type
?
1
:
0
)
)
>
connection
->
buffer_length
)
{
mqtt5_msg.c:92
append_property()
if
(
connection
->
outbound_message
.
length
+
2
>
connection
->
buffer_length
)
{
mqtt5_msg.c:133
append_message_id()
if
(
connection
->
outbound_message
.
length
+
data_length
>
connection
->
buffer_length
)
{
mqtt5_msg.c:794
mqtt5_msg_publish()
memcpy
(
connection
->
buffer
+
connection
->
outbound_message
.
length
,
data
,
connection
->
buffer_length
-
connection
->
outbound_message
.
length
)
;
mqtt5_msg.c:797
mqtt5_msg_publish()
connection
->
outbound_message
.
length
=
connection
->
buffer_length
;
mqtt5_msg.c:798
mqtt5_msg_publish()
if
(
connection
->
outbound_message
.
length
+
1
>
connection
->
buffer_length
)
{
mqtt5_msg.c:904
mqtt5_msg_subscribe()
int
write_len
=
remaining_len
>
connection
->
buffer_length
?
connection
->
buffer_length
:
remaining_len
;
mqtt_client.c:2149
esp_mqtt_client_publish()
if
(
connection
->
outbound_message
.
length
+
len
+
2
>
connection
->
buffer_length
)
{
mqtt_msg.c:51
append_string()
if
(
connection
->
outbound_message
.
length
+
2
>
connection
->
buffer_length
)
{
mqtt_msg.c:75
append_message_id()
if
(
connection
->
outbound_message
.
length
+
header_len
>
connection
->
buffer_length
)
{
mqtt_msg.c:352
mqtt_msg_connect()
if
(
connection
->
outbound_message
.
length
+
data_length
>
connection
->
buffer_length
)
{
mqtt_msg.c:464
mqtt_msg_publish()
memcpy
(
connection
->
buffer
+
connection
->
outbound_message
.
length
,
data
,
connection
->
buffer_length
-
connection
->
outbound_message
.
length
)
;
mqtt_msg.c:467
mqtt_msg_publish()
connection
->
outbound_message
.
length
=
connection
->
buffer_length
;
mqtt_msg.c:468
mqtt_msg_publish()
if
(
connection
->
outbound_message
.
length
+
1
>
connection
->
buffer_length
)
{
mqtt_msg.c:532
mqtt_msg_subscribe()
connection
->
buffer_length
=
buffer_size
;
mqtt_msg.c:626
mqtt_msg_buffer_init()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
mqtt_connection::buffer_length
is written by 1 function and is read by 11 functions:
mqtt_msg_buffer_init()
All items filtered out
mqtt_connection::buffer_length
esp_mqtt_client_publish()
append_string()
append_message_id()
mqtt_msg_connect()
mqtt_msg_publish()
mqtt_msg_subscribe()
update_property_len_value()
append_property()
append_message_id()
mqtt5_msg_publish()
mqtt5_msg_subscribe()
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