Lines Matching defs:question
251 * question again in reply before answer) */
661 * Check which replies we should send for a host/netif based on question
662 * @param netif The network interface that received the question
663 * @param rr Domain/type/class from a question
730 * Check which replies we should send for a service based on question
732 * @param rr Domain/type/class from a question
888 * Write a question to an outpacket
889 * A question contains domain, type and class. Since an answer also starts with these fields this function is also
1000 /* Answer starts with same data as question, then more fields */
1075 * Read a question from the packet.
1079 * @param question The struct to fill with question data
1083 mdns_read_question(struct mdns_packet *pkt, struct mdns_question *question)
1094 memset(question, 0, sizeof(struct mdns_question));
1095 res = mdns_read_rr_info(pkt, &question->info);
1101 question->unicast = question->info.klass & 0x8000;
1102 question->info.klass &= 0x7FFF;
1556 * Handle question MDNS packet
1584 LWIP_DEBUGF(MDNS_DEBUG, ("MDNS: Failed to parse question, skipping query packet\n"));
1593 /* Reply unicast if any question is unicast */
1610 /* Add question to reply packet (legacy packet only has 1 question) */
1772 /* This should only happen if we fail to alloc/write question for legacy query */
1794 LWIP_DEBUGF(MDNS_DEBUG, ("MDNS: Failed to parse question, skipping response packet\n"));