From 7b69d622fa87217ab85b1dc4879396b65bf75702 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 20 Nov 2005 00:56:17 +0000 Subject: deal with multiple address assigned to one interface git-svn-id: file:///home/lennart/svn/public/nss-mdns/trunk@88 0ee8848e-81ea-0310-a63a-f631d1a40d77 --- src/query.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src/query.c') diff --git a/src/query.c b/src/query.c index 7a3e0bd..fe5d541 100644 --- a/src/query.c +++ b/src/query.c @@ -120,6 +120,7 @@ static int send_dns_packet(int fd, struct dns_packet *p) { struct ifreq ifreq[32]; struct ifconf ifconf; int n_sent = 0; + int last_index = -1; assert(fd >= 0 && p); assert(dns_packet_check_valid(p) >= 0); @@ -181,8 +182,14 @@ static int send_dns_packet(int fd, struct dns_packet *p) { if (ioctl(fd, SIOCGIFINDEX, &ifreq[i]) < 0) continue; /* See above why we ignore this error */ - - pkti->ipi_ifindex = ifreq[i].ifr_ifindex; + + /* Only send the the packet once per interface. We assume that + * multiple addresses assigned to the same interface follow + * immediately one after the other.*/ + if (last_index == ifreq[i].ifr_ifindex) + continue; + + last_index = pkti->ipi_ifindex = ifreq[i].ifr_ifindex; for (;;) { -- cgit