libio-socket-ip-perl 0.25-2 source package in Ubuntu

Changelog

libio-socket-ip-perl (0.25-2) unstable; urgency=medium


  * Switch Depends from perl to perl-base as a special case, for a
    module which is likely to become part of perl-base in 5.20
    (Closes: #735925)

 -- Dominic Hargreaves <email address hidden>  Sun, 19 Jan 2014 11:58:14 +0000

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

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libio-socket-ip-perl_0.25-2.dsc 2.2 KiB 088de7cf697e967c768dd61f5cce2828007f66c972585f6c5be583fc398f62c6
libio-socket-ip-perl_0.25.orig.tar.gz 38.9 KiB e5b4567eacac2f492a73f283c8323b87f0229ba7add12806bff25fb2c2e39eb8
libio-socket-ip-perl_0.25-2.debian.tar.xz 3.1 KiB bbcb393dac177d109af54c3f24519a2f1bca118b3c40ae8fb5e43a7a09d5970a

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.