Lines Matching defs:after_topic
719 u16_t after_topic;
736 after_topic = 2 + topic_len;
738 if ((after_topic + (qos ? 2U : 1U)) > var_hdr_payload_bufsize) {
745 if (length < after_topic + 2U) {
746 LWIP_DEBUGF(MQTT_DEBUG_WARN,( "mqtt_message_received: Received short PUBLISH packet (after_topic)\n"));
749 client->inpub_pkt_id = ((u16_t)var_hdr_payload[after_topic] << 8) + (u16_t)var_hdr_payload[after_topic + 1];
750 after_topic += 2;
759 payload_length = length - after_topic;
760 payload_offset = after_topic;