source: trunk/essentials/dev-lang/perl/lib/Net/Config.pm

Last change on this file was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 7.4 KB
Line 
1# Net::Config.pm
2#
3# Copyright (c) 2000 Graham Barr <[email protected]>. All rights reserved.
4# This program is free software; you can redistribute it and/or
5# modify it under the same terms as Perl itself.
6
7package Net::Config;
8
9require Exporter;
10use vars qw(@ISA @EXPORT %NetConfig $VERSION $CONFIGURE $LIBNET_CFG);
11use Socket qw(inet_aton inet_ntoa);
12use strict;
13
14@EXPORT = qw(%NetConfig);
15@ISA = qw(Net::LocalCfg Exporter);
16$VERSION = "1.10"; # $Id: //depot/libnet/Net/Config.pm#17 $
17
18eval { local $SIG{__DIE__}; require Net::LocalCfg };
19