Nitpik in test 10
p4raw-id: //depot/perl@11787
use Socket;
-print "1..11\n";
+print "1..13\n";
if (socket(T,PF_INET,SOCK_STREAM,6)) {
print "ok 1\n";
} else {
print "not ok 9\n";
}
-print ((inet_aton(10.10.10.10) == v10.10.10.10) ? "ok 10\n" : "not ok 10\n");
+print ((inet_aton("10.10.10.10") eq v10.10.10.10) ? "ok 10\n" : "not ok 10\n");
print ((inet_ntoa(v10.10.10.10) eq '10.10.10.10') ? "ok 11\n" : "not ok 11\n");
-
+{
+ my ($port,$addr) = unpack_sockaddr_in(pack_sockaddr_in(100,v10.10.10.10));
+ print (($port == 100) ? "ok 12\n" : "not ok 12\n");
+ print (($addr eq v10.10.10.10) ? "ok 13\n" : "not ok 13\n");
+}
+