]> git.proxmox.com Git - libhttp-daemon-perl.git/blame - debian/control
Add (build) dependency on libio-socket-ip-perl.
[libhttp-daemon-perl.git] / debian / control
CommitLineData
4caa34ae
NB
1Source: libhttp-daemon-perl
2Section: perl
3Priority: optional
0812229c 4Build-Depends: debhelper (>= 10)
300288fa 5Build-Depends-Indep: perl,
e5a178d4 6 libhttp-date-perl,
300288fa 7 libhttp-message-perl,
8f0a2825 8 libio-socket-ip-perl,
03b41e0a 9 liblwp-mediatypes-perl
4caa34ae 10Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
020f675e 11Uploaders:
0812229c 12Standards-Version: 4.1.4
0024900e 13Homepage: https://metacpan.org/release/HTTP-Daemon
081adbe9
SB
14Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libhttp-daemon-perl.git
15Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libhttp-daemon-perl
4caa34ae
NB
16
17Package: libhttp-daemon-perl
18Architecture: all
300288fa 19Depends: ${misc:Depends}, ${perl:Depends},
20 libhttp-date-perl,
e5a178d4 21 libhttp-message-perl,
8f0a2825 22 libio-socket-ip-perl,
e5a178d4 23 liblwp-mediatypes-perl
4caa34ae
NB
24Replaces: libwww-perl (<< 6.00)
25Breaks: libwww-perl (<< 6.00)
26Description: 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.