mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
mdns example: fix print result for IPv6 addresses
This commit is contained in:
parent
1a027734af
commit
fbef5297fc
@ -147,7 +147,7 @@ static void mdns_print_results(mdns_result_t * results){
|
|||||||
}
|
}
|
||||||
a = r->addr;
|
a = r->addr;
|
||||||
while(a){
|
while(a){
|
||||||
if(a->addr.type == MDNS_IP_PROTOCOL_V6){
|
if(a->addr.type == IPADDR_TYPE_V6){
|
||||||
printf(" AAAA: " IPV6STR "\n", IPV62STR(a->addr.u_addr.ip6));
|
printf(" AAAA: " IPV6STR "\n", IPV62STR(a->addr.u_addr.ip6));
|
||||||
} else {
|
} else {
|
||||||
printf(" A : " IPSTR "\n", IP2STR(&(a->addr.u_addr.ip4)));
|
printf(" A : " IPSTR "\n", IP2STR(&(a->addr.u_addr.ip4)));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user