libhttp-daemon-perl 6.16-ok1 source package in openKylin

Changelog

libhttp-daemon-perl (6.16-ok1) nile; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Tue, 07 May 2024 09:31:42 +0800

Upload details

Uploaded by:
openKylinBot
Sponsored by:
Cibot
Uploaded to:
Nile V2.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Huanghe V3.0 proposed main perl
Huanghe V3.0 release main perl
Nile V2.0 release main perl
Nile V2.0 proposed main perl

Builds

Nile V2.0: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhttp-daemon-perl_6.16.orig.tar.gz 44.8 KiB b38d092725e6fa4e0c4dc2a47e157070491bafa0dbe16c78a358e806aa7e173d
libhttp-daemon-perl_6.16-ok1.debian.tar.xz 1.9 KiB 886f2c179fd9a7b078ef7e5e75bec6ac55d6bafc32fc5d227396a8c0e34a3123
libhttp-daemon-perl_6.16-ok1.dsc 2.2 KiB f62896f5774eec1a0011947ab91e9e717cbd9be62abc2c6d7f2a256ecf735307

Available diffs

View changes file

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.