libio-socket-ip-perl 0.42-1 source package in Ubuntu

Changelog

libio-socket-ip-perl (0.42-1) unstable; urgency=medium

  * Import upstream version 0.42.
  * Update years of upstream copyright.
  * Refresh patches.

 -- gregor herrmann <email address hidden>  Sun, 29 Oct 2023 02:20:48 +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
Oracular release universe perl
Noble release universe perl

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libio-socket-ip-perl_0.42-1.dsc 2.5 KiB e4c3378636dfd488d250ecede88e398273530d99fc26dd3c02c53e393f48602e
libio-socket-ip-perl_0.42.orig.tar.gz 44.1 KiB f97a3846c50a4e0658ce1722ce7cc2acad9472e70478bfbe9c794fb1db6a6b13
libio-socket-ip-perl_0.42-1.debian.tar.xz 5.3 KiB c36f9780cbb18b2a6c6674282a1866d8d6b14cac66c5104830450fe55a0c9529

Available diffs

No changes file available.

Binary packages built by this source

libio-socket-ip-perl: module for using IPv4 and IPv6 sockets in a protocol-independent way

 IO::Socket::IP provides a protocol-independent way to use IPv4 and IPv6
 sockets. It allows new connections to be made by specifying the hostname and
 service name or port number. It allows for connections to be accepted by
 sockets listening on local ports, by service name or port number.
 .
 It uses Socket::GetAddrInfo's getaddrinfo function to convert
 hostname/service name pairs into sets of possible addresses to connect to.
 This allows it to work for IPv6 where the system supports it, while still
 falling back to IPv4-only on systems which don't.
 .
 It provides an API which, for most typical cases, should be a drop-in
 replacement for IO::Socket::INET; most constructor arguments and methods are
 provided in a compatible way.