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

Changelog

libhttp-daemon-perl (6.06-ok1) yangtze; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Mon, 25 Apr 2022 22:03:04 +0800

Upload details

Uploaded by:
openKylinBot
Sponsored by:
luzp
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libhttp-daemon-perl_6.06.orig.tar.gz 44.5 KiB fc03a161b54553f766457a4267e7066767f54ad01cacfe9a91d7caa2a0319bad
libhttp-daemon-perl_6.06-ok1.debian.tar.xz 1.9 KiB 97c765248d0a0e98a6e809210438de728ffd8ff6cc44fe475cd0c87f7092ab4d
libhttp-daemon-perl_6.06-ok1.dsc 2.2 KiB 5553be970d5a73a4a39cac36b22422dca7e931aa00ed152d5ff0229945d4d415

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.