libhttp-daemon-perl 6.14-ok1 source package in openKylin
Changelog
libhttp-daemon-perl (6.14-ok1) yangtze; urgency=medium * Build for openkylin. -- sufang <email address hidden> Fri, 02 Sep 2022 11:05:16 +0800
libhttp-daemon-perl (6.14-ok1) yangtze; urgency=medium * Build for openkylin. -- sufang <email address hidden> Fri, 02 Sep 2022 11:05:16 +0800
Series | Published | Component | Section | |
---|---|---|---|---|
Yangtze V1.0 | release | main | perl | |
Yangtze V1.0 | proposed | main | perl |
File | Size | SHA-256 Checksum |
---|---|---|
libhttp-daemon-perl_6.14.orig.tar.gz | 46.4 KiB | 9e44884474f19bb44340d8f2e8caafa88fb93081e2a18a5cd0f087473b018755 |
libhttp-daemon-perl_6.14-ok1.debian.tar.xz | 6.4 KiB | 0b030236442f57c6ee845274c4a2975f887c1d7ed8d62c6fed5af1d9255b6707 |
libhttp-daemon-perl_6.14-ok1.dsc | 2.1 KiB | b542b6ce7dd7085a1210c283f6e265d988681a68ce5dd7c184884178d9e65fd5 |
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:
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.