Merge branch 'bugfix/mdns_docs_usage' into 'master'

mdns: documentation: fixed inconsistent enum in example of reading mdns results

See merge request idf/esp-idf!4997
This commit is contained in:
Angus Gratton 2019-05-15 12:57:24 +08:00
commit 208e1ecc29

View file

@ -126,7 +126,7 @@ Example method to resolve local services::
}
a = r->addr;
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));
} else {
printf(" A : " IPSTR "\n", IP2STR(&(a->addr.u_addr.ip4)));