mirror of https://github.com/toreanderson/clatd
Separate DNS64 servers with spaces in debug output
This commit is contained in:
parent
f91d96b991
commit
f812070f60
3
clatd
3
clatd
|
|
@ -357,7 +357,8 @@ sub get_plat_prefix_from_dns64 {
|
||||||
$res->nameservers(map {
|
$res->nameservers(map {
|
||||||
Net::IP->new($_)->version() == 4 ? "::ffff:$_" : $_;
|
Net::IP->new($_)->version() == 4 ? "::ffff:$_" : $_;
|
||||||
} $res->nameservers);
|
} $res->nameservers);
|
||||||
d2("Nameservers after Net::DNS bug workaround: ", $res->nameservers);
|
d2("Nameservers after Net::DNS bug workaround: ",
|
||||||
|
join(" ", $res->nameservers));
|
||||||
|
|
||||||
my $pkt = $res->query('ipv4only.arpa', 'AAAA');
|
my $pkt = $res->query('ipv4only.arpa', 'AAAA');
|
||||||
if(!$pkt) {
|
if(!$pkt) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue