~ubuntu-branches/ubuntu/dapper/libwww-perl/dapper-updates

« back to all changes in this revision

Viewing changes to lib/Net/HTTP/NB.pm

  • Committer: Bazaar Package Importer
  • Author(s): Jay Bonci
  • Date: 2005-02-13 18:45:32 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050213184532-67qvopi4wre3010u
Tags: 5.803-4
* Make GET/POST/HEAD symlinks (Closes: #294597)
* lwp-requests now honors -b when dumping links (Closes: #294595)
  - Thanks to giuseppe bonacci for the patch
* Moved symlinks to a libwww-perl.links file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package Net::HTTP::NB;
2
2
 
3
 
# $Id: NB.pm,v 1.5 2001/08/28 03:03:42 gisle Exp $
 
3
# $Id: NB.pm,v 1.6 2004/11/12 16:18:11 gisle Exp $
4
4
 
5
5
use strict;
6
6
use vars qw($VERSION @ISA);
7
7
 
8
 
$VERSION = "0.02";
 
8
$VERSION = "0.03";
9
9
require Net::HTTP;
10
10
@ISA=qw(Net::HTTP);
11
11
 
59
59
=head1 SYNOPSIS
60
60
 
61
61
 use Net::HTTP::NB;
62
 
 my $s = Net::HTTP::NB->new(Host => "www.perl.com) || die $@;
 
62
 my $s = Net::HTTP::NB->new(Host => "www.perl.com") || die $@;
63
63
 $s->write_request(GET => "/");
64
64
 
65
65
 use IO::Select;