diff options
| author | Our Air Quality <[email protected]> | 2019-04-04 12:57:36 +1100 |
|---|---|---|
| committer | Dirk Ziegelmeier <[email protected]> | 2019-04-30 12:38:07 +0200 |
| commit | 224b884c1ee8a4aa0b57b355c80a521f35b58e58 (patch) | |
| tree | 21760189af12e896e05d561246e30025dd46139c | |
| parent | c156cd2a3375f6c6df3d3a39344559f436f971ee (diff) | |
mDNS: output search queries to the IP v4 and v6 groups.
These had been broadcasting to the *_ANY addresses.
| -rw-r--r-- | src/apps/mdns/mdns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/apps/mdns/mdns.c b/src/apps/mdns/mdns.c index 5eb64e1a..da882f5d 100644 --- a/src/apps/mdns/mdns.c +++ b/src/apps/mdns/mdns.c @@ -2572,10 +2572,10 @@ mdns_search_service(const char *name, const char *service, enum mdns_sd_proto pr *request_id = slot; /* now prepare a MDNS request and send it (on specified interface) */ #if LWIP_IPV6 - mdns_send_request(req, netif, IP6_ADDR_ANY); + mdns_send_request(req, netif, &v6group); #endif #if LWIP_IPV4 - mdns_send_request(req, netif, IP4_ADDR_ANY); + mdns_send_request(req, netif, &v4group); #endif return ERR_OK; } |
