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