From: Rafał Miłecki Date: Mon, 20 Mar 2017 16:35:21 +0000 (+0100) Subject: Fix replying to "QU" questions received on unicast interface X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fmdnsd.git;a=commitdiff_plain;h=9f1cc226e4be47d32e4df796c94cbee1437960aa Fix replying to "QU" questions received on unicast interface We may receive questions on unicast interface, e.g. when another client is refreshing its entries. "QU" questions are "questions requesting unicast responses" which means we should obviously send unicast replies. Old code wasn't setting "to" variable correctly so IP address wasn't passed back to the interface layer. It means replies were never sent. Signed-off-by: Rafał Miłecki --- diff --git a/dns.c b/dns.c index b19ad17..51a0150 100644 --- a/dns.c +++ b/dns.c @@ -351,15 +351,14 @@ parse_answer(struct interface *iface, uint8_t *buffer, int len, uint8_t **b, int static void parse_question(struct interface *iface, struct sockaddr *from, char *name, struct dns_question *q) { - struct sockaddr *to; + struct sockaddr *to = NULL; char *host; /* TODO: Multicast if more than one quarter of TTL has passed */ - if ((q->class & CLASS_UNICAST) && iface->multicast) { - iface = iface->peer; + if (q->class & CLASS_UNICAST) { to = from; - } else { - to = NULL; + if (iface->multicast) + iface = iface->peer; } DBG(1, "Q -> %s %s\n", dns_type_string(q->type), name);