From c1960e5cee5cf3f710bfa2081be0bbfd51a1acfb Mon Sep 17 00:00:00 2001 From: Matthias Hochgatterer Date: Wed, 17 Jun 2020 17:17:44 +0200 Subject: [PATCH] Disable requiring unicast response during probing At the momet we cannot receive unicast responses #15 --- probe.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/probe.go b/probe.go index d009449..fff566c 100644 --- a/probe.go +++ b/probe.go @@ -130,9 +130,9 @@ func probeAtInterface(ctx context.Context, conn MDNSConn, service Service, iface Qclass: dns.ClassINET, } - // Responses to probe should be unicast - setQuestionUnicast(&instanceQ) - setQuestionUnicast(&hostQ) + // TODO Responses to probe should be unicast + // setQuestionUnicast(&instanceQ) + // setQuestionUnicast(&hostQ) msg.Question = []dns.Question{instanceQ, hostQ}