From ea47b3c9e3cb04f80b7e011f068f55b8da520ddb Mon Sep 17 00:00:00 2001 From: bert hubert Date: Sun, 14 Apr 2024 23:14:49 +0200 Subject: [PATCH] change wording on detecting working IPv6 --- dnsmon.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dnsmon.cc b/dnsmon.cc index 6056553..046ce97 100644 --- a/dnsmon.cc +++ b/dnsmon.cc @@ -50,10 +50,13 @@ try DNSSection rrsection; uint32_t ttl; while(dmr.getRR(rrsection, dn, dt, ttl, rr)) { - if(rrsection == DNSSection::Answer && dt == DNSType::SOA) { + if(rrsection == DNSSection::Answer && dt == DNSType::SOA) { + fmt::print("Detected working IPv6 connectivity\n"); + /* fmt::print("Got answer from {}, SOA serial for root: {}\n", rem.toString(), dynamic_cast(rr.get())->d_serial); + */ } }