Home
last modified time | relevance | path

Searched refs:fixed_header_length (Results 1 – 1 of 1) sorted by relevance

/Zephyr-Core-3.7.0/subsys/net/lib/mqtt/
Dmqtt_encoder.c197 uint8_t fixed_header_length; in mqtt_encode_fixed_header() local
205 fixed_header_length = packet_length_encode(length, NULL); in mqtt_encode_fixed_header()
206 fixed_header_length += sizeof(uint8_t); in mqtt_encode_fixed_header()
208 NET_DBG("Fixed header length = %02x", fixed_header_length); in mqtt_encode_fixed_header()
211 buf->cur = start - fixed_header_length; in mqtt_encode_fixed_header()
219 buf->cur = buf->cur - fixed_header_length; in mqtt_encode_fixed_header()
220 buf->end = buf->cur + length + fixed_header_length; in mqtt_encode_fixed_header()