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