X-Git-Url: http://git.vpit.fr/?p=perl%2Fscripts%2Fxchat.git;a=blobdiff_plain;f=Xchat%2FXPI%2FNet.pm;h=a7b267927059493c6d1060381db1f9a28071bc5c;hp=285e11a9a3be0f45d125ad9d246242cf2805e491;hb=d0506fe825279c4658116b8b09fabf51f943a8cd;hpb=c89e62b2896ac98ebdfac7d77d6dc31e2db3c6a5 diff --git a/Xchat/XPI/Net.pm b/Xchat/XPI/Net.pm index 285e11a..a7b2679 100644 --- a/Xchat/XPI/Net.pm +++ b/Xchat/XPI/Net.pm @@ -12,9 +12,9 @@ use Xchat qw/:all/; use lib get_info 'xchatdir'; use Xchat::XPI qw/register init/; -our $VERSION = '0.02'; +our $VERSION = '0.03'; -my ($ph, $res); +my $res; BEGIN { $res = Net::DNS::Resolver->new; @@ -117,13 +117,4 @@ our %EXPORT_TAGS = ('funcs' => [ qw/resolve whois/ ]); our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS; $EXPORT_TAGS{'all'} = [ @EXPORT_OK ]; -$ph = Xchat::XPI->new( - name => 'Extended Xchat Perl Interface :: Net', - tag => 'XPI::Net', - desc => 'Asynchronous network tools', - author => 'Vincent Pit (VPIT)', - email => 'perl@profvince.com', - url => 'http://www.profvince.com', -); - 1;