libnet-dns-async-perl 1.07-3 source package in Ubuntu

Changelog

libnet-dns-async-perl (1.07-3) unstable; urgency=medium

  [ Damyan Ivanov ]
  * declare conformance with Policy 4.1.3 (no changes needed)

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

 -- Jelmer Vernooij <email address hidden>  Thu, 16 Jun 2022 16:16:08 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libnet-dns-async-perl_1.07-3.dsc 2.1 KiB 5c65a274b199d0275f4c736fb86d80ef44caa7ab6c216e381698c6d8a52ed63c
libnet-dns-async-perl_1.07.orig.tar.gz 4.5 KiB 91e425768d87aaa85882757bc0e15c4b2434a1636efc88a11e23b5c88515d8b0
libnet-dns-async-perl_1.07-3.debian.tar.xz 2.6 KiB b180cc93f79b330917e7d4aae25164d29401207f507033de13c857bad12842dc

Available diffs

No changes file available.

Binary packages built by this source

libnet-dns-async-perl: Asynchronous DNS helper for high volume perl applications

 Net::DNS::Async is a fire-and-forget asynchronous DNS helper.
 That is, the user application adds DNS questions to the helper, and
 the callback will be called at some point in the future without
 further intervention from the user application. The application need
 not handle selects, timeouts, waiting for a response or any other
 such issues.
 .
 If the same query is added to the queue more than once, the module
 may combine the queries; that is, it will perform the query only
 once, and will call each callback registered for that query in turn,
 passing the same Net::DNS::Response object to each query. For this
 reason, you should not modify the Net::DNS::Response object in any
 way lest you break things horribly for a subsequent callback.
 .
 This module is similar in principle to POE::Component::Client::DNS, but
 does not require POE.