#
# Copyright (C) 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Don't respond if the "norespond" file exists; otherwise respond to
# any A or AAAA query.
#
$pidf->close or die "cannot close pid file: $!";
for (;;) {
my $packet;
$@ and die $@;
} else {
my $err;
}
print "REQUEST:\n";
$packet->print;
my $donotrespond = 0;
if (-e 'norespond') {
$donotrespond = 1;
} else {
if ($qtype eq "A") {
$packet->push("answer",
" 300 A 192.0.2.1"));
} elsif ($qtype eq "AAAA") {
$packet->push("answer",
" 300 AAAA 2001:db8:beef::1"));
}
}
if ($donotrespond == 0) {
print "RESPONSE:\n";
$packet->print;
print "\n";
}
}