ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/handle/04_listen.t
(Generate patch)

Comparing AnyEvent/t/handle/04_listen.t (file contents):
Revision 1.1 by elmex, Sun Apr 27 16:56:18 2008 UTC vs.
Revision 1.3 by root, Fri May 2 09:04:57 2008 UTC

1#!/opt/perl/bin/perl 1#!/opt/perl/bin/perl
2
2use strict; 3use strict;
3use Test::More tests => 2; 4use Test::More tests => 2;
5use AnyEvent::Impl::Perl;
4use AnyEvent; 6use AnyEvent;
5use AnyEvent::Socket; 7use AnyEvent::Socket;
6 8
7my $lbytes; 9my $lbytes;
8my $rbytes; 10my $rbytes;
15 LocalPort => 32391, 17 LocalPort => 32391,
16 ReuseAddr => 1, 18 ReuseAddr => 1,
17 ); 19 );
18my $ae_sock = 20my $ae_sock =
19 AnyEvent::Socket->new ( 21 AnyEvent::Socket->new (
20 PeerAddr => "localhost:32391", 22 PeerAddr => "127.0.0.1:32391",
21 on_connect => sub { 23 on_connect => sub {
22 my ($ae_sock, $error) = @_; 24 my ($ae_sock, $error) = @_;
23 if ($error) { diag "connection failed: $!"; $cv->broadcast; return } 25 if ($error) { diag "connection failed: $!"; $cv->broadcast; return }
24 26
25 print "connected to ".$ae_sock->fh->peerhost.":".$ae_sock->fh->peerport."\n"; 27 print "connected to ".$ae_sock->fh->peerhost.":".$ae_sock->fh->peerport."\n";

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines