Searched refs:mqtt_output_append_u8 (Results 1 - 1 of 1) sorted by relevance

/seL4-camkes-master/projects/lwip/src/apps/mqtt/
H A Dmqtt.c451 mqtt_output_append_u8(struct mqtt_ringbuf_t *rb, u8_t value) function
498 mqtt_output_append_u8(rb, (((msg_type & 0x0f) << 4) | ((fdup & 1) << 3) | ((fqos & 3) << 1) | (fretain & 1)));
501 mqtt_output_append_u8(rb, (r_length & 0x7f) | (r_length >= 128 ? 0x80 : 0));
1220 mqtt_output_append_u8(&client->output, LWIP_MIN(qos, 2));
1402 mqtt_output_append_u8(&client->output, 4);
1404 mqtt_output_append_u8(&client->output, flags);

Completed in 28 milliseconds