libhttp-daemon-perl 6.14-2 source package in Ubuntu

Changelog

libhttp-daemon-perl (6.14-2) unstable; urgency=medium

  * Team upload.
  * Disable CVE-2022-31081-testcase.patch for now as it uses
    HTTP::Tiny internals that have changed in newer versions.
    (Closes: #1016761)

 -- Niko Tyni <email address hidden>  Thu, 29 Sep 2022 21:57:06 +0300

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
Lunar release main perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhttp-daemon-perl_6.14-2.dsc 2.4 KiB 88a343d9edd6e8cf6ecef3240685143c1c77b8e67563cbe0a7cfb2c13d04357d
libhttp-daemon-perl_6.14.orig.tar.gz 45.8 KiB f0767e7f3cbb80b21313c761f07ad8ed253bce9fa2d0ba806b3fb72d309b2e1d
libhttp-daemon-perl_6.14-2.debian.tar.xz 7.0 KiB caf4e7e67c58366c1db3385f96b4a7a2adce4762360b882662a4e9e7647d7a63

Available diffs

No changes file available.

Binary packages built by this source

libhttp-daemon-perl: simple http server class

 Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a
 socket for incoming requests. The HTTP::Daemon is a subclass of
 IO::Socket::IP, so you can perform socket operations directly on it too.
 .
 The accept() method will return when a connection from a client is available.
 The returned value will be an HTTP::Daemon::ClientConn object which is
 another IO::Socket::IP subclass. Calling the get_request() method on this
 object will read data from the client and return an HTTP::Request object. The
 ClientConn object also provide methods to send back various responses.
 .
 This HTTP daemon does not fork(2) for you. Your application, i.e. the user of
 the HTTP::Daemon is responsible for forking if that is desirable. Also note
 that the user is responsible for generating responses that conform to the
 HTTP/1.1 protocol.