Searched defs:Net (Results 1 - 19 of 19) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
H A DConfig.pm0 # Net::Config.pm
7 package Net::Config;
15 @ISA = qw(Net::LocalCfg Exporter);
16 $VERSION = "1.10"; # $Id: //depot/libnet/Net/Config.pm#17 $
18 eval { local $SIG{__DIE__}; require Net::LocalCfg };
123 Net::Config - Local configuration data for libnet
127 use Net::Config qw(%NetConfig);
131 C<Net::Config> holds configuration data for the modules in the libnet
149 C<Net::Config> defines the following methods. They are methods as they are
150 invoked as class methods. This is because C<Net
[all...]
H A DTime.pm0 # Net::Time.pm
7 package Net::Time;
14 use Net::Config;
20 $VERSION = "2.09"; # $Id: //depot/libnet/Net/Time.pm#9 $
100 Net::Time - time and daytime network client interface
104 use Net::Time qw(inet_time inet_daytime);
106 print inet_time(); # use default host from Net::Config
110 print inet_daytime(); # use default host from Net::Config
116 C<Net::Time> provides subroutines that obtain the time on a remote machine.
149 I<$Id: //depot/libnet/Net/Tim
[all...]
H A Dnetent.pm1 package Net::netent;
22 struct 'Net::netent' => [
63 Net::netent - by-name interface to Perl's built-in getnet*() functions
67 use Net::netent qw(:FIELDS);
71 use Net::netent;
84 "Net::netent" objects. This object has methods that return the similarly
123 use Net::netent;
H A DDomain.pm0 # Net::Domain.pm
7 package Net::Domain;
14 use Net::Config;
19 $VERSION = "2.19"; # $Id: //depot/libnet/Net/Domain.pm#21 $
298 Net::Domain - Attempt to evaluate the current host's internet name and domain
302 use Net::Domain qw(hostname hostfqdn hostdomain);
340 I<$Id: //depot/libnet/Net/Domain.pm#21 $>
H A DNetrc.pm0 # Net::Netrc.pm
7 package Net::Netrc;
14 $VERSION = "2.12"; # $Id: //depot/libnet/Net/Netrc.pm#13 $
204 Net::Netrc - OO interface to users netrc file
208 use Net::Netrc;
210 $mach = Net::Netrc->lookup('some.machine');
216 C<Net::Netrc> is a class implementing a simple interface to the .netrc file
219 C<Net::Netrc> also implements security checks just like the ftp program,
272 Define a macro. C<Net::Netrc> only parses this field to be compatible
279 The constructor for a C<Net
[all...]
H A Dhostent.pm1 package Net::hostent;
23 struct 'Net::hostent' => [
69 Net::hostent - by-name interface to Perl's built-in gethost*() functions
73 use Net::hostent;
79 "Net::hostent" objects. This object has methods that return the similarly
106 use Net::hostent;
H A Dprotoent.pm1 package Net::protoent;
19 struct 'Net::protoent' => [
49 Net::protoent - by-name interface to Perl's built-in getproto*() functions
53 use Net::protoent;
58 use Net::protoent qw(:FIELDS);
66 versions that return "Net::protoent" objects. They take default
H A Dservent.pm1 package Net::servent;
19 struct 'Net::servent' => [
51 Net::servent - by-name interface to Perl's built-in getserv*() functions
55 use Net::servent;
60 use Net::servent qw(:FIELDS);
69 "Net::servent" objects. They take default second arguments of "tcp". This object has methods that return the similarly
93 use Net::servent qw(:FIELDS);
H A DCmd.pm0 # Net::Cmd.pm $Id: //depot/libnet/Net/Cmd.pm#33 $
7 package Net::Cmd;
591 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
595 use Net::Cmd;
597 @ISA = qw(Net::Cmd);
601 C<Net::Cmd> is a collection of methods that can be inherited by a sub class
607 These methods provide a user interface to the C<Net::Cmd> object.
665 over-ridden by a sub-class of C<Net::Cmd>
734 Returns a filehandle tied to the Net
[all...]
H A DPOP3.pm0 # Net::POP3.pm
7 package Net::POP3;
12 use Net::Cmd;
14 use Net::Config;
16 $VERSION = "2.24"; # $Id: //depot/libnet/Net/POP3.pm#24 $
18 @ISA = qw(Net::Cmd IO::Socket::INET);
272 require Net::Netrc;
277 my $m = Net::Netrc->lookup(${*$me}{'net_pop3_host'},$user);
278 $m ||= Net::Netrc->lookup(${*$me}{'net_pop3_host'});
366 Net
[all...]
H A DPing.pm1 package Net::Ping;
51 # compatibility with the original Net::Ping. It accepts a host
62 $p = Net::Ping->new("tcp", $timeout);
386 # Uses Net::Ping::External to do an external ping.
393 eval { require Net::Ping::External; }
394 or croak('Protocol "external" not supported on your system: Net::Ping::External not found');
395 return Net::Ping::External::ping(ip => $ip, timeout => $timeout);
437 $checksum = Net::Ping->checksum($msg);
1372 Net::Ping - check a remote host for reachability
1376 use Net
[all...]
H A DSMTP.pm0 # Net::SMTP.pm
7 package Net::SMTP;
16 use Net::Cmd;
17 use Net::Config;
19 $VERSION = "2.26"; # $Id: //depot/libnet/Net/SMTP.pm#31 $
21 @ISA = qw(Net::Cmd IO::Socket::INET);
226 carp 'Net::SMTP::mail: SIZE option not supported by host';
238 carp 'Net::SMTP::mail: DSN option not supported by host';
252 carp 'Net::SMTP::mail: 8BITMIME option not supported by host';
264 carp 'Net
[all...]
H A DNNTP.pm0 # Net::NNTP.pm
7 package Net::NNTP;
12 use Net::Cmd;
15 use Net::Config;
17 $VERSION = "2.22"; # $Id: //depot/libnet/Net/NNTP.pm#18 $
18 @ISA = qw(Net::Cmd IO::Socket::INET);
693 Net::NNTP - NNTP Client class
697 use Net::NNTP;
699 $nntp = Net::NNTP->new("some.host.name");
704 C<Net
[all...]
H A DFTP.pm0 # Net::FTP.pm
9 package Net::FTP;
20 use Net::Cmd;
21 use Net::Config;
25 $VERSION = "2.72"; # $Id: //depot/libnet/Net/FTP.pm#80 $
26 @ISA = qw(Exporter Net::Cmd IO::Socket::INET);
60 if(exists($arg{Firewall}) || Net::Config->requires_firewall($peer))
237 require Net::Netrc;
239 my $rc = Net::Netrc->lookup(${*$ftp}{'net_ftp_host'});
257 require Net
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/FTP/
H A DE.pm1 package Net::FTP::E;
3 require Net::FTP::I;
5 @ISA = qw(Net::FTP::I);
H A DL.pm1 package Net::FTP::L;
3 require Net::FTP::I;
5 @ISA = qw(Net::FTP::I);
H A DI.pm1 ## $Id: //depot/libnet/Net/FTP/I.pm#13 $
5 package Net::FTP::I;
10 require Net::FTP::dataconn;
12 @ISA = qw(Net::FTP::dataconn);
H A DA.pm1 ## $Id: //depot/libnet/Net/FTP/A.pm#17 $
5 package Net::FTP::A;
10 require Net::FTP::dataconn;
12 @ISA = qw(Net::FTP::dataconn);
H A Ddataconn.pm5 package Net::FTP::dataconn;
9 use Net::Cmd;

Completed in 41 milliseconds