• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

fallback/H04-Apr-2008-244234

lib/HTTP/HeaderParser/H04-Apr-2008-226107

t/H04-Apr-2008-132106

ChangesH A D04-Apr-20083.8 KiB9876

HTTPHeaders.xsH A D04-Apr-20084.4 KiB195152

MANIFESTH A D04-Apr-2008253 1514

META.ymlH A D04-Apr-2008324 119

Makefile.PLH A D04-Apr-20082 KiB4637

READMEH A D04-Apr-20081.4 KiB5634

headers.cppH A D04-Apr-200819.8 KiB667430

headers.hH A D04-Apr-20082.3 KiB8248

ppport.hH A D04-Apr-200829.1 KiB1,097725

typemapH A D04-Apr-2008861 2522

README

1HTTP::HeaderParser::XS
2Perlbal::XS::HTTPHeaders
3========================
4
5This module is a parser for HTTP headers, written in C++.  It uses classes
6internally to provide a fast and easy to use interface to parsing,
7creating, and working with HTTP headers.
8
9This module was originally designed for use in Perlbal, a software HTTP load
10balancer by Danga Interactive.
11
12In order to use this module, you will need the Perl development libraries
13along with a C++ compiler and some random assorted things that convert XS
14files into C (etc).  (Not sure if this is part of the Perl development
15libraries or not... but it should be pretty standard.)
16
17
18INSTALLATION
19
20To install this module type the following:
21
22   perl Makefile.PL
23   make
24   make test
25   make install
26
27Alternately, if you're on Debian...
28
29   dh-make-perl --build
30   dpkg -i ../whatever.deb
31
32See the perldoc for HTTP::HeaderParser::XS for more help.
33
34
35DEPENDENCIES
36
37Don't think there are any dependencies for this module.
38
39
40AUTHOR/CONTACT
41
42Written by Mark Smith <mark@xb95.com>.
43
44Please email me or find me on the Perl IRC network as xb95.
45
46
47COPYRIGHT AND LICENSE
48
49Copyright (C) 2004-2008 Mark Smith.
50Copyright (C) 2004 Danga Interactive, Inc.
51Copyright (C) 2005-2007 Six Apart, Ltd.
52
53This library is free software; you can redistribute it and/or modify it
54under the same terms as Perl itself, either Perl version 5.8.4 or, at your
55option, any later version of Perl 5 you may have available.
56