| 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 |
|
|---|
| 7 | package Net::Config;
|
|---|
| 8 |
|
|---|
| 9 | require Exporter;
|
|---|
| 10 | use vars qw(@ISA @EXPORT %NetConfig $VERSION $CONFIGURE $LIBNET_CFG);
|
|---|
| 11 | use Socket qw(inet_aton inet_ntoa);
|
|---|
| 12 | use strict;
|
|---|
| 13 |
|
|---|
| 14 | @EXPORT = qw(%NetConfig);
|
|---|
| 15 | @ISA = qw(Net::LocalCfg Exporter);
|
|---|
| 16 | $VERSION = "1.10"; # $Id: //depot/libnet/Net/Config.pm#17 $
|
|---|
| 17 |
|
|---|
| 18 | eval { local $SIG{__DIE__}; require Net::LocalCfg };
|
|---|
| 19 |
|
|---|
|
|---|