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

Changelog

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

  * Import upstream version 6.12.

 -- gregor herrmann <email address hidden>  Sat, 06 Jun 2020 03:12:55 +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

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhttp-daemon-perl_6.12-1.dsc 2.6 KiB 40886ace7965adaaee2bd9ed784e3ff60f0664e821ad3bffe4f11e3e6f961019
libhttp-daemon-perl_6.12.orig.tar.gz 46.0 KiB df47bed10c38670c780fd0116867d5fd4693604acde31ba63380dce04c4e1fa6
libhttp-daemon-perl_6.12-1.debian.tar.xz 3.0 KiB 150df7ee17aaa21796a74f9a7d8c2bdfb280647ea9eefc80c9e794797cdd0ae5

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.