Searched refs:mqtt_output_append_u8 (Results 1 – 2 of 2) sorted by relevance
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/apps/mqtt/ |
H A D | mqtt.c | 419 mqtt_output_append_u8(struct mqtt_ringbuf_t *rb, u8_t value) in mqtt_output_append_u8() function 466 …mqtt_output_append_u8(rb, (((msg_type & 0x0f) << 4) | ((dup & 1) << 3) | ((qos & 3) << 1) | (retai… in mqtt_output_append_fixed_header() 469 mqtt_output_append_u8(rb, (r_length & 0x7f) | (r_length >= 128 ? 0x80 : 0)); in mqtt_output_append_fixed_header() 1145 mqtt_output_append_u8(&client->output, LWIP_MIN(qos, 2)); in mqtt_sub_unsub() 1290 mqtt_output_append_u8(&client->output, 4); in mqtt_client_connect() 1292 mqtt_output_append_u8(&client->output, flags); in mqtt_client_connect()
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/apps/mqtt/ |
H A D | mqtt.c | 451 mqtt_output_append_u8(struct mqtt_ringbuf_t *rb, u8_t value) in mqtt_output_append_u8() function 498 …mqtt_output_append_u8(rb, (((msg_type & 0x0f) << 4) | ((fdup & 1) << 3) | ((fqos & 3) << 1) | (fre… in mqtt_output_append_fixed_header() 501 mqtt_output_append_u8(rb, (r_length & 0x7f) | (r_length >= 128 ? 0x80 : 0)); in mqtt_output_append_fixed_header() 1220 mqtt_output_append_u8(&client->output, LWIP_MIN(qos, 2)); in mqtt_sub_unsub() 1402 mqtt_output_append_u8(&client->output, 4); in mqtt_client_connect() 1404 mqtt_output_append_u8(&client->output, flags); in mqtt_client_connect()
|