~ubuntu-branches/ubuntu/maverick/libwww-perl/maverick

« back to all changes in this revision

Viewing changes to lib/LWP/Protocol/gopher.pm

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov, Jonathan Yu, Damyan Ivanov
  • Date: 2009-11-23 22:34:41 UTC
  • mfrom: (1.4.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091123223441-j4h7h2fidei8y225
Tags: 5.834-1
[ Jonathan Yu ]
* New upstream release

[ Damyan Ivanov ]
* update dependencies on compression libraries
  + drop libcompress-zlib-perl and libcompress-bzip2-perl (no longer used
    upstream)
  + merge perl (>= 5.10.0) | libio-compress-perl and perl (>= 5.10.1) |
    libio-compress-perl

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
    # Ok, lets make the request
121
121
    my $socket = IO::Socket::INET->new(PeerAddr => $host,
122
122
                                       PeerPort => $port,
 
123
                                       LocalAddr => $self->{ua}{local_address},
123
124
                                       Proto    => 'tcp',
124
125
                                       Timeout  => $timeout);
125
126
    die "Can't connect to $host:$port" unless $socket;