]> git.proxmox.com Git - libhttp-daemon-perl.git/blame - debian/control
Add /me to Uploaders.
[libhttp-daemon-perl.git] / debian / control
CommitLineData
4caa34ae 1Source: libhttp-daemon-perl
e4857125 2Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
4edcaf4d 3Uploaders: gregor herrmann <gregoa@debian.org>
4caa34ae 4Section: perl
aa890074 5Testsuite: autopkgtest-pkg-perl
4caa34ae 6Priority: optional
3e62bf28 7Build-Depends: debhelper (>= 11)
300288fa 8Build-Depends-Indep: perl,
e4857125 9 libhttp-date-perl,
10 libhttp-message-perl,
11 libio-socket-ip-perl,
12 liblwp-mediatypes-perl
143cb5c9 13Standards-Version: 4.3.0
081adbe9 14Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libhttp-daemon-perl
e4857125 15Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libhttp-daemon-perl.git
16Homepage: https://metacpan.org/release/HTTP-Daemon
4caa34ae
NB
17
18Package: libhttp-daemon-perl
19Architecture: all
e4857125 20Depends: ${misc:Depends},
21 ${perl:Depends},
22 libhttp-date-perl,
23 libhttp-message-perl,
24 libio-socket-ip-perl,
25 liblwp-mediatypes-perl
4caa34ae 26Breaks: libwww-perl (<< 6.00)
e4857125 27Replaces: libwww-perl (<< 6.00)
4caa34ae
NB
28Description: simple http server class
29 Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a
30 socket for incoming requests. The HTTP::Daemon is a subclass of
31 IO::Socket::INET, so you can perform socket operations directly on it too.
32 .
33 The accept() method will return when a connection from a client is available.
34 The returned value will be an HTTP::Daemon::ClientConn object which is
35 another IO::Socket::INET subclass. Calling the get_request() method on this
36 object will read data from the client and return an HTTP::Request object. The
37 ClientConn object also provide methods to send back various responses.
38 .
39 This HTTP daemon does not fork(2) for you. Your application, i.e. the user of
40 the HTTP::Daemon is responsible for forking if that is desirable. Also note
41 that the user is responsible for generating responses that conform to the
42 HTTP/1.1 protocol.