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

Changelog

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

  * Non-maintainer upload.
  * CVE-2022-31081 (Closes: #1014808)
    improved Content-Length: handling in HTTP-header

 -- Thorsten Alteholz <email address hidden>  Tue, 26 Jul 2022 20:08:59 +0200

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
libhttp-daemon-perl_6.14-1.1.dsc 2.5 KiB e1cb72b3c17c35d237adb195d67bc94de9d191cebee8eee576c76106db72ad41
libhttp-daemon-perl_6.14.orig.tar.gz 45.8 KiB f0767e7f3cbb80b21313c761f07ad8ed253bce9fa2d0ba806b3fb72d309b2e1d
libhttp-daemon-perl_6.14-1.1.debian.tar.xz 6.9 KiB f289dfbfb971b17282ff36fa70a9b26d1a8a72cdf1f88b3fdcdebf34cee2246e

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.