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