1N/Apackage Net::Config;
1N/A
1N/Arequire Exporter;
1N/Ause vars qw(@ISA @EXPORT %NetConfig);
1N/Ause strict;
1N/A
1N/A@EXPORT = qw(%NetConfig);
1N/A@ISA = qw(Exporter);
1N/A
1N/A# WARNING WARNING WARNING WARNING WARNING WARNING WARNING
1N/A# WARNING WARNING WARNING WARNING WARNING WARNING WARNING
1N/A#
1N/A# Below this line is auto-generated, *ANY* changes will be lost
1N/A
1N/A%NetConfig = (
1N/A # the followinf parameters are all lists of hosts for the
1N/A # respective protocols.
1N/A nntp_hosts => [],
1N/A snpp_hosts => [],
1N/A pop3_hosts => [],
1N/A smtp_hosts => [],
1N/A ph_hosts => [],
1N/A daytime_hosts => [],
1N/A time_hosts => [],
1N/A
1N/A # your internet domain
1N/A inet_domain => undef,
1N/A
1N/A # If you have an ftp proxy firewall (not an http firewall)
1N/A # then set this to the name of the firewall
1N/A ftp_firewall => undef,
1N/A
1N/A # set if all connections done via the firewall should use
1N/A # passive data connections
1N/A ftp_ext_passive => 0,
1N/A
1N/A # set if all connections not done via the firewall should use
1N/A # passive data connections
1N/A ftp_int_passive => 0,
1N/A
1N/A # If set the make test will attempt to connect to the hosts above
1N/A test_hosts => 0,
1N/A
1N/A # Used during Configure (which you are not using) to do
1N/A # DNS lookups to ensure hosts exist
1N/A test_exist => 0,
1N/A
1N/A);
1N/A1;