libhttp-daemon-perl 6.16-1 source package in Ubuntu
Changelog
libhttp-daemon-perl (6.16-1) unstable; urgency=medium * Import upstream version 6.16. * Declare compliance with Debian Policy 4.6.2. * Remove debian/patches/CVE-2022-31081* as this is fixed in this release. * Update years of packaging copyright. -- gregor herrmann <email address hidden> Sat, 25 Feb 2023 02:48:14 +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 | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | main | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libhttp-daemon-perl_6.16-1.dsc | 2.6 KiB | 1186abce12494e4b8855dba9f11c99396ef3ce71650e2ce72c20e0be00027c95 |
libhttp-daemon-perl_6.16.orig.tar.gz | 44.8 KiB | b38d092725e6fa4e0c4dc2a47e157070491bafa0dbe16c78a358e806aa7e173d |
libhttp-daemon-perl_6.16-1.debian.tar.xz | 3.3 KiB | a8caa6252dd2bc04da174205e8370ec02f362c38bc4f4317b4d372cd52e56b96 |
Available diffs
- diff from 6.14-2 to 6.16-1 (26.7 KiB)
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.