]> git.proxmox.com Git - libhttp-daemon-perl.git/blame - debian/control
Change search.cpan.org based URIs to metacpan.org based URIs
[libhttp-daemon-perl.git] / debian / control
CommitLineData
4caa34ae
NB
1Source: libhttp-daemon-perl
2Section: perl
3Priority: optional
0fbd4723 4Build-Depends: debhelper (>= 8)
300288fa 5Build-Depends-Indep: perl,
e5a178d4 6 libhttp-date-perl,
300288fa 7 libhttp-message-perl,
03b41e0a 8 liblwp-mediatypes-perl
4caa34ae
NB
9Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
10Uploaders: Nicholas Bamber <nicholas@periapt.co.uk>
86e21dcc 11Standards-Version: 3.9.2
dee4795b 12Homepage: https://metacpan.org/release/HTTP-Daemon/
e1aabcfe 13Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libhttp-daemon-perl.git
a568ed8e 14Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libhttp-daemon-perl.git
4caa34ae
NB
15
16Package: libhttp-daemon-perl
17Architecture: all
300288fa 18Depends: ${misc:Depends}, ${perl:Depends},
19 libhttp-date-perl,
e5a178d4
AG
20 libhttp-message-perl,
21 liblwp-mediatypes-perl
4caa34ae
NB
22Replaces: libwww-perl (<< 6.00)
23Breaks: libwww-perl (<< 6.00)
24Description: 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.