]> git.proxmox.com Git - libhttp-daemon-perl.git/blob - debian/control
bump version for backport rebuild
[libhttp-daemon-perl.git] / debian / control
1 Source: libhttp-daemon-perl
2 Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
3 Uploaders: gregor herrmann <gregoa@debian.org>
4 Section: perl
5 Testsuite: autopkgtest-pkg-perl
6 Priority: optional
7 Build-Depends: debhelper (>= 10~)
8 Build-Depends-Indep: perl,
9 libhttp-date-perl,
10 libhttp-message-perl,
11 libio-socket-ip-perl,
12 liblwp-mediatypes-perl
13 Standards-Version: 4.3.0
14 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libhttp-daemon-perl
15 Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libhttp-daemon-perl.git
16 Homepage: https://metacpan.org/release/HTTP-Daemon
17
18 Package: libhttp-daemon-perl
19 Architecture: all
20 Depends: ${misc:Depends},
21 ${perl:Depends},
22 libhttp-date-perl,
23 libhttp-message-perl,
24 libio-socket-ip-perl,
25 liblwp-mediatypes-perl
26 Breaks: libwww-perl (<< 6.00)
27 Replaces: libwww-perl (<< 6.00)
28 Description: 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.