mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-16 20:12:13 +02:00
mdns: fixed forgotten merge conflicts in debug code
* Original commit: espressif/esp-idf@d9433ef692
This commit is contained in:
committed by
suren-gabrielyan-espressif
parent
cd3cc0be3b
commit
d20666f3a0
@ -5015,13 +5015,8 @@ void mdns_debug_packet(const uint8_t * data, size_t len)
|
|||||||
}
|
}
|
||||||
_mdns_dbg_printf("\n");
|
_mdns_dbg_printf("\n");
|
||||||
} else if (type == MDNS_TYPE_AAAA) {
|
} else if (type == MDNS_TYPE_AAAA) {
|
||||||
<<<<<<< HEAD
|
|
||||||
ip6_addr_t ip6;
|
|
||||||
memcpy(&ip6, data_ptr, MDNS_ANSWER_AAAA_SIZE);
|
|
||||||
=======
|
|
||||||
esp_ip6_addr_t ip6;
|
esp_ip6_addr_t ip6;
|
||||||
memcpy(&ip6, data_ptr, sizeof(esp_ip6_addr_t));
|
memcpy(&ip6, data_ptr, sizeof(esp_ip6_addr_t));
|
||||||
>>>>>>> mdns: update mdns to use esp-netif for mdns supported services such as STA, AP, ETH
|
|
||||||
_mdns_dbg_printf(IPV6STR "\n", IPV62STR(ip6));
|
_mdns_dbg_printf(IPV6STR "\n", IPV62STR(ip6));
|
||||||
} else if (type == MDNS_TYPE_A) {
|
} else if (type == MDNS_TYPE_A) {
|
||||||
esp_ip4_addr_t ip;
|
esp_ip4_addr_t ip;
|
||||||
|
Reference in New Issue
Block a user