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