1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Source: libnet-nslookup-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Xavier Guimard <yadd@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libnet-dns-perl,
perl
Standards-Version: 4.1.3
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libnet-nslookup-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libnet-nslookup-perl.git
Homepage: https://metacpan.org/release/Net-Nslookup
Package: libnet-nslookup-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libnet-dns-perl
Description: simple DNS lookup module for perl
Net::Nslookup provides the capabilities of the standard UNIX command line
tool nslookup(1). Net::DNS is a wonderful and full featured module, but quite
often, all you need is `nslookup $host`. Net::Nslookup provides that
functionality.
.
Net::Nslookup exports a single function, called nslookup. nslookup can be
used to retrieve A, PTR, CNAME, MX, and NS records.
.
my $a = nslookup(host => "use.perl.org", type => "A");
.
my @mx = nslookup(domain => "perl.org", type => "MX");
.
my @ns = nslookup(domain => "perl.org", type => "NS");
|