From 03929dac2a29664878d2c971648a4fe1fb698462 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 22:19:02 +0200 Subject: Adding upstream version 20231031. Signed-off-by: Daniel Baumann --- scripts/ipupdate.pl | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 scripts/ipupdate.pl (limited to 'scripts/ipupdate.pl') diff --git a/scripts/ipupdate.pl b/scripts/ipupdate.pl new file mode 100644 index 0000000..dc99c45 --- /dev/null +++ b/scripts/ipupdate.pl @@ -0,0 +1,39 @@ +# IPupdate 1.2 +# +# automatically update your IP on server connections +# +# original create by legion (a.lepore@email.it) +# +# thanks xergio for IP show php script :> +# +# Fixed by Axel Gembe to use ifconfig.co/ip +# because the original server did not work anymore. + +use strict; +use Irssi; +use vars qw($VERSION %IRSSI); +require LWP::UserAgent; +use HTTP::Request::Common; + +$VERSION = '1.3'; +%IRSSI = ( + authors => 'xlony, Axel Gembe', + contact => 'anderfdez@yahoo.es', + name => 'IPupdate', + description => 'Auto "/set dcc_own_ip IP" on connect.', + license => 'GPL', + changed => '2017-11-08', +); + +sub ipset { + my $user = LWP::UserAgent->new(timeout => 30); + my $get = GET "http://ifconfig.co/ip"; + my $req = $user->request($get); + my $out = $req->content(); + + Irssi::print("%9IP update%_:", MSGLEVEL_CRAP); + Irssi::command("set dcc_own_ip $out"); +} + +Irssi::signal_add('server connected', 'ipset'); +Irssi::command_bind('ipupdate', 'ipset'); -- cgit v1.2.3