libhttp-daemon-perl 6.04-1 source package in Ubuntu

Changelog

libhttp-daemon-perl (6.04-1) unstable; urgency=medium

  * Team upload.

  [ gregor herrmann ]
  * Update debian/upstream/metadata.

  [ intrigeri ]
  * Import new upstream release 6.04.
  * Bump debhelper compatibility version to 12.
  * Declare compatibility with Debian Policy 4.4.0.
  * Update build-dependencies.
  * Drop versioned Breaks+Replaces satisfied in oldoldstable.
  * Install upstream CONTRIBUTING documentation.
  * Update upstream copyright years.
  * Refresh 0001-Add-IPv6-support.patch.

 -- intrigeri <email address hidden>  Wed, 24 Jul 2019 01:27:51 +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

Eoan: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhttp-daemon-perl_6.04-1.dsc 2.4 KiB 9c6332422607673668834128cd55e972a68790557c5c631a0dc3f3bbdfb0193b
libhttp-daemon-perl_6.04.orig.tar.gz 43.0 KiB df053d8d5e581e58a470cec359d0f7ec0d05c23fb1be2c91804ddc6ab58aa88a
libhttp-daemon-perl_6.04-1.debian.tar.xz 6.1 KiB 2be04934452a91181ea224cd7f7ebcae1ab44158e6e3c2074b995caac0b8926e

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.