Lines Matching refs:info
139 /* Lookup for text info on service instance */
270 struct mdns_rr_info info;
276 struct mdns_rr_info info;
763 /* Request for info about my service */
1045 * @param info The struct to fill with domain, type and class
1049 mdns_read_rr_info(struct mdns_packet *pkt, struct mdns_rr_info *info)
1052 pkt->parse_offset = mdns_readname(pkt->pbuf, pkt->parse_offset, &info->domain);
1062 info->type = lwip_ntohs(field16);
1069 info->klass = lwip_ntohs(field16);
1095 res = mdns_read_rr_info(pkt, &question->info);
1101 question->unicast = question->info.klass & 0x8000;
1102 question->info.klass &= 0x7FFF;
1137 res = mdns_read_rr_info(pkt, &answer->info);
1143 answer->cache_flush = answer->info.klass & 0x8000;
1144 answer->info.klass &= 0x7FFF;
1589 mdns_domain_debug_print(&q.info.domain);
1590 LWIP_DEBUGF(MDNS_DEBUG, (" type %d class %d\n", q.info.type, q.info.klass));
1597 reply.host_replies |= check_host(pkt->netif, &q.info, &reply.host_reverse_v6_replies);
1605 reply.serv_replies[i] |= check_service(service, &q.info);
1611 res = mdns_add_question(&reply, &q.info.domain, q.info.type, q.info.klass, 0);
1632 mdns_domain_debug_print(&ans.info.domain);
1633 LWIP_DEBUGF(MDNS_DEBUG, (" type %d class %d\n", ans.info.type, ans.info.klass));
1636 if (ans.info.type == DNS_RRTYPE_ANY || ans.info.klass == DNS_RRCLASS_ANY) {
1642 match = reply.host_replies & check_host(pkt->netif, &ans.info, &rev_v6);
1648 if (ans.info.type == DNS_RRTYPE_PTR) {
1696 match = reply.serv_replies[i] & check_service(service, &ans.info);
1702 if (ans.info.type == DNS_RRTYPE_PTR) {
1810 mdns_domain_debug_print(&ans.info.domain);
1811 LWIP_DEBUGF(MDNS_DEBUG, (" type %d class %d\n", ans.info.type, ans.info.klass));
1821 if (res == ERR_OK && mdns_domain_eq(&ans.info.domain, &domain)) {
1832 if ((res == ERR_OK) && mdns_domain_eq(&ans.info.domain, &domain)) {