mdns: respond to discovery with the proper pseudo name _services._dns-sd._udp

Closes https://github.com/espressif/esp-idf/issues/4369
Closes IDFGH-2219
This commit is contained in:
David Cermak 2019-11-28 11:04:37 +01:00
parent c5e37c7073
commit 6ace6fbd85
1 changed files with 1 additions and 1 deletions

View File

@ -1251,7 +1251,7 @@ static void _mdns_create_answer_from_parsed_packet(mdns_parsed_packet_t * parsed
}
} else if (q->type == MDNS_TYPE_SDPTR) {
shared = true;
if (!_mdns_alloc_answer(&packet->answers, MDNS_TYPE_PTR, service->service, false, false)) {
if (!_mdns_alloc_answer(&packet->answers, MDNS_TYPE_SDPTR, service->service, false, false)) {
_mdns_free_tx_packet(packet);
return;
}