summaryrefslogtreecommitdiffstats
path: root/etc/inc/util.inc
diff options
context:
space:
mode:
Diffstat (limited to 'etc/inc/util.inc')
-rw-r--r--etc/inc/util.inc8
1 files changed, 8 insertions, 0 deletions
diff --git a/etc/inc/util.inc b/etc/inc/util.inc
index f9e18fc..0cc2692 100644
--- a/etc/inc/util.inc
+++ b/etc/inc/util.inc
@@ -687,6 +687,14 @@ function is_inrange_v4($test, $start, $end) {
return false;
}
+/* returns true if $test is in the range between $start and $end */
+function is_inrange_v6($test, $start, $end) {
+ if ( (inet_pton($test) <= inet_pton($end)) && (inet_pton($test) >= inet_pton($start)) )
+ return true;
+ else
+ return false;
+}
+
/* return the configured carp interface list */
function get_configured_carp_interface_list() {
global $config;
OpenPOWER on IntegriCloud