1package Net::Config; 2 3require Exporter; 4use vars qw(@ISA @EXPORT %NetConfig); 5use strict; 6 7@EXPORT = qw(%NetConfig); 8@ISA = qw(Exporter); 9 10# WARNING WARNING WARNING WARNING WARNING WARNING WARNING 11# WARNING WARNING WARNING WARNING WARNING WARNING WARNING 12# 13# Below this line is auto-generated, *ANY* changes will be lost 14 15%NetConfig = ( 16 # the followinf parameters are all lists of hosts for the 17 # respective protocols. 18 nntp_hosts => [], 19 snpp_hosts => [], 20 pop3_hosts => [], 21 smtp_hosts => [], 22 ph_hosts => [], 23 daytime_hosts => [], 24 time_hosts => [], 25 26 # your internet domain 27 inet_domain => undef, 28 29 # If you have an ftp proxy firewall (not an http firewall) 30 # then set this to the name of the firewall 31 ftp_firewall => undef, 32 33 # set if all connections done via the firewall should use 34 # passive data connections 35 ftp_ext_passive => 0, 36 37 # set if all connections not done via the firewall should use 38 # passive data connections 39 ftp_int_passive => 0, 40 41 # If set the make test will attempt to connect to the hosts above 42 test_hosts => 0, 43 44 # Used during Configure (which you are not using) to do 45 # DNS lookups to ensure hosts exist 46 test_exist => 0, 47 48); 491; 50