From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo-Andres Hofmann To: development@lists.ipfire.org Subject: [PATCH] header.pl: Remove duplicate "IpInSubnet" function Date: Tue, 12 Jan 2021 19:11:14 +0100 Message-ID: <20210112181114.77-1-hofmann@leo-andres.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1233609500752531989==" List-Id: --===============1233609500752531989== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This function is deprecated. The commonly used and maintained "IpInSubnet" fu= nction can be found in general-functions.pl. Signed-off-by: Leo-Andres Hofmann --- config/cfgroot/header.pl | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/config/cfgroot/header.pl b/config/cfgroot/header.pl index e2e6fd689..5684c01c5 100644 --- a/config/cfgroot/header.pl +++ b/config/cfgroot/header.pl @@ -311,22 +311,6 @@ sub getcgihash { return; } =20 - -# Test if IP is within a subnet -# Call: IpInSubnet (Addr, Subnet, Subnet Mask) -# Subnet can be an IP of the subnet: 10.0.0.0 or 10.0.0.1 -# Everything in dottted notation -# Return: TRUE/FALSE -sub IpInSubnet -{ - $ip =3D unpack('N', inet_aton(shift)); - $start =3D unpack('N', inet_aton(shift)); - $mask =3D unpack('N', inet_aton(shift)); - $start &=3D $mask; # base of subnet... - $end =3D $start + ~$mask; - return (($ip >=3D $start) && ($ip <=3D $end)); -} - sub escape($) { my $s =3D shift; return HTML::Entities::encode_entities($s); @@ -559,13 +543,13 @@ sub colorize { return "".$string.""; } elsif ( $string =3D~ "lo" or $string =3D~ "127.0.0.0" ){ return "".$string.""; - } elsif ( $string =3D~ $ethsettings{'GREEN_DEV'} or &IpInSubnet($string2,$e= thsettings{'GREEN_NETADDRESS'},$ethsettings{'GREEN_NETMASK'}) ){ + } elsif ( $string =3D~ $ethsettings{'GREEN_DEV'} or &General::IpInSubnet($s= tring2,$ethsettings{'GREEN_NETADDRESS'},$ethsettings{'GREEN_NETMASK'}) ){ return "".$string.""; } elsif ( $string =3D~ "ppp0" or $string =3D~ $ethsettings{'RED_DEV'} or $= string =3D~ "0.0.0.0" or $string =3D~ $ethsettings{'RED_ADDRESS'} ){ return "".$string.""; - } elsif ( $ethsettings{'CONFIG_TYPE'}>1 and ( $string =3D~ $ethsettings{'BL= UE_DEV'} or &IpInSubnet($string2,$ethsettings{'BLUE_NETADDRESS'},$ethsettings= {'BLUE_NETMASK'}) )){ + } elsif ( $ethsettings{'CONFIG_TYPE'}>1 and ( $string =3D~ $ethsettings{'BL= UE_DEV'} or &General::IpInSubnet($string2,$ethsettings{'BLUE_NETADDRESS'},$et= hsettings{'BLUE_NETMASK'}) )){ return "".$string.""; - } elsif ( $ethsettings{'CONFIG_TYPE'}>2 and ( $string =3D~ $ethsettings{'OR= ANGE_DEV'} or &IpInSubnet($string2,$ethsettings{'ORANGE_NETADDRESS'},$ethsett= ings{'ORANGE_NETMASK'}) )){ + } elsif ( $ethsettings{'CONFIG_TYPE'}>2 and ( $string =3D~ $ethsettings{'OR= ANGE_DEV'} or &General::IpInSubnet($string2,$ethsettings{'ORANGE_NETADDRESS'}= ,$ethsettings{'ORANGE_NETMASK'}) )){ return "".$string.""; } else { return $string; --=20 2.27.0.windows.1 --===============1233609500752531989==--