]> git.ipfire.org Git - people/stevee/guardian.git/commitdiff
Drop obsolete IsValidAddressOrNetwork() function.
authorStefan Schantl <stefan.schantl@ipfire.org>
Wed, 3 Feb 2016 07:41:24 +0000 (08:41 +0100)
committerStefan Schantl <stefan.schantl@ipfire.org>
Wed, 3 Feb 2016 07:41:24 +0000 (08:41 +0100)
This function is not longer used, because during converting a given
address or network the input will be validated, so there is no need for
this function anymore.

Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
modules/Base.pm

index 194cb9692a62cb115f44b22dfc8a905847706403..1aa1d2f587d1287e337a11a7c825480db5e95b3e 100644 (file)
@@ -118,23 +118,6 @@ sub FilePositions (\%\%) {
        return %new_file_positions;
 }
 
-#
-## Wrapper function for IP address and network validation.
-#
-## This wrapper function uses the external Net::IP perl module to
-## check if a given input is a valid IPv4/IPv6 address or network.
-#
-sub IsValidAddressOrNetwork ($) {
-       my $address = shift;
-
-       # Check if the address is a valid IPv4/IPv6 address or network.
-       # Return "undef" False if the address is not valid.
-       my $ip = new Net::IP ($address) || return undef;
-
-       # If we got here, the address is valid. Return True.
-       return 1;
-}
-
 #
 ## Address/Network to binary format caluculator function.
 #