Searched defs:Socket (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/Socket/
H A DUNIX.pm1 # IO::Socket::UNIX.pm
7 package IO::Socket::UNIX;
11 use IO::Socket;
12 use Socket;
15 @ISA = qw(IO::Socket);
19 IO::Socket::UNIX->register_domain( AF_UNIX );
72 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
76 use IO::Socket::UNIX;
80 C<IO::Socket::UNIX> provides an object interface to creating and using sockets
81 in the AF_UNIX domain. It is built upon the L<IO::Socket> interfac
[all...]
H A DINET.pm1 # IO::Socket::INET.pm
7 package IO::Socket::INET;
11 use IO::Socket;
12 use Socket;
17 @ISA = qw(IO::Socket);
22 IO::Socket::INET->register_domain( AF_INET );
282 IO::Socket::INET - Object interface for AF_INET domain sockets
286 use IO::Socket::INET;
290 C<IO::Socket::INET> provides an object interface to creating and using sockets
291 in the AF_INET domain. It is built upon the L<IO::Socket> interfac
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Socket/
H A DSocket.pm1 package Socket; package
8 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C socket.h defines and structure manipulators
12 use Socket;
55 use Socket qw(:DEFAULT :crlf);
390 croak "&Socket::constant not defined" if $constname eq 'constant';
399 XSLoader::load 'Socket', $VERSION;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/t/
H A Dconfig.t8 if (!eval "require Socket") {
9 print "1..0 # no Socket\n"; exit 0;
11 undef *{Socket::inet_aton};
12 undef *{Socket::inet_ntoa};
16 $INC{'Socket.pm'} = 1;
19 package Socket; package
59 Socket::set_fail(1);
68 Socket::set_fail(0);
H A Dtime.t8 if (!eval "require Socket") {
9 print "1..0 # no Socket\n"; exit 0;
14 $INC{'IO/Socket.pm'} = 1;
16 $INC{'IO/Socket/INET.pm'} = 1;
23 # cannot use(), otherwise it will use IO::Socket and IO::Select
29 make_fail('IO::Socket::INET', 'new');
31 is( $badsock, undef, '_socket() should fail if Socket creation fails' );
35 ok( $sock->isa('IO::Socket::INET'), 'should be an IO::Socket::INET object' );
41 ok( $sock->isa('IO::Socket
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
H A DSocket.pm1 # IO::Socket.pm
7 package IO::Socket;
12 use Socket 1.3;
21 require IO::Socket::INET;
22 require IO::Socket::UNIX if ($^O ne 'epoc');
33 Exporter::export_to_level('IO::Socket', 1, $pkg, 'sockatmark');
36 Exporter::export 'Socket', $callpkg, @_;
63 croak 'IO::Socket: Cannot configure a generic socket'
66 croak "IO::Socket: Unsupported socket domain"
69 croak "IO::Socket
[all...]

Completed in 33 milliseconds