6 require Config; import Config;
7 if ($Config{'extensions'} !~ /\bSocket\b/ &&
8 !(($^O eq 'VMS') && $Config{d_socket})) {
18 if (socket(T,PF_INET,SOCK_STREAM,6)) {
21 if (connect(T,pack_sockaddr_in(7,inet_aton("localhost")))){
24 print "# Connected to " .
25 inet_ntoa((unpack_sockaddr_in(getpeername(T)))[1])."\n";
27 syswrite(T,"hello",5);
28 $read = sysread(T,$buff,10); # Connection may be granted, then closed!
29 while ($read > 0 && length($buff) < 5) {
30 # adjust for fact that TCP doesn't guarantee size of reads/writes
31 $read = sysread(T,$buff,10,length($buff));
33 print(($read == 0 || $buff eq "hello") ? "ok 3\n" : "not ok 3\n");
36 print "# You're allowed to fail tests 2 and 3 if\n";
37 print "# the echo service has been disabled.\n";
48 if( socket(S,PF_INET,SOCK_STREAM,6) ){
51 if (connect(S,pack_sockaddr_in(7,INADDR_LOOPBACK))){
54 print "# Connected to " .
55 inet_ntoa((unpack_sockaddr_in(getpeername(S)))[1])."\n";
57 syswrite(S,"olleh",5);
58 $read = sysread(S,$buff,10); # Connection may be granted, then closed!
59 while ($read > 0 && length($buff) < 5) {
60 # adjust for fact that TCP doesn't guarantee size of reads/writes
61 $read = sysread(S,$buff,10,length($buff));
63 print(($read == 0 || $buff eq "olleh") ? "ok 6\n" : "not ok 6\n");
66 print "# You're allowed to fail tests 5 and 6 if\n";
67 print "# the echo service has been disabled.\n";
79 $SIG{__WARN__} = sub {
80 ++ $w if $_[0] =~ /^6-ARG sockaddr_in call is deprecated/ ;
83 sockaddr_in(1,2,3,4,5,6) ;
84 print ($w == 1 ? "not ok 7\n" : "ok 7\n") ;
85 use warnings 'Socket' ;
86 sockaddr_in(1,2,3,4,5,6) ;
87 print ($w == 1 ? "ok 8\n" : "not ok 8\n") ;
89 # Thest that whatever we give into pack/unpack_sockaddr retains
90 # the value thru the entire chain.
91 if((inet_ntoa((unpack_sockaddr_in(pack_sockaddr_in(100,inet_aton("10.250.230.10"))))[1])) eq '10.250.230.10') {
96 print ((inet_ntoa(inet_aton("10.20.30.40")) eq "10.20.30.40") ? "ok 10\n" : "not ok 10\n");
97 print ((inet_ntoa(v10.20.30.40) eq "10.20.30.40") ? "ok 11\n" : "not ok 11\n");
99 my ($port,$addr) = unpack_sockaddr_in(pack_sockaddr_in(100,v10.10.10.10));
100 print (($port == 100) ? "ok 12\n" : "not ok 12\n");
101 print ((inet_ntoa($addr) eq "10.10.10.10") ? "ok 13\n" : "not ok 13\n");
104 eval { inet_ntoa(v10.20.30.400) };
105 print (($@ =~ /^Wide character in Socket::inet_ntoa at/) ? "ok 14\n" : "not ok 14\n");