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

..03-May-2022-

lib/LWP/Protocol/H18-Feb-2012-328211

ChangesH A D18-Feb-2012624 1810

MANIFESTH A D18-Feb-2012163 76

META.ymlH A D18-Feb-2012798 3130

Makefile.PLH A D18-Feb-20121.2 KiB5244

READMEH A D15-Feb-2012866 3021

README

1NAME
2    LWP::Protocol::http10 - Legacy HTTP/1.0 support for LWP
3
4SYNOPSIS
5      require LWP::Protocol::http10;
6      LWP::Protocol::implementor('http', 'LWP::Protocol::http10');
7
8      use LWP::UserAgent;
9      $res = $ua->get("http://www.example.com");
10
11DESCRIPTION
12    The LWP::Protocol::http10 module provide support for using HTTP/1.0
13    protocol with LWP. To use it you need to call
14    LWP::Protocol::implementor() to override the standard handler for http
15    URLs.
16
17    This module used to be bundled with the libwww-perl, but it was
18    unbundled in v6.02 as part of the general cleanup for the 6-series.
19    LWP::Protocol::http10 is deprecated.
20
21SEE ALSO
22    LWP::UserAgent, LWP::Protocol
23
24COPYRIGHT
25    Copyright 1997-2003 Gisle Aas.
26
27    This library is free software; you can redistribute it and/or modify it
28    under the same terms as Perl itself.
29
30