summaryrefslogtreecommitdiff
path: root/utils.php
diff options
context:
space:
mode:
authorRomain Boissat rboissat <rboissat@lv0.in>2014-08-05 10:55:02 +0200
committerRomain Boissat rboissat <rboissat@lv0.in>2014-08-05 10:55:02 +0200
commitc264b14b390d78c2146cb500e06683f504f8aef1 (patch)
tree3c280bf8d22d618dde1122915a72f2b0b41ab86b /utils.php
parent592b22a06433ab3aa66f39f5c462af074ed6c992 (diff)
parentacce675f40b52560881677ace989902a28ba4c23 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'utils.php')
-rw-r--r--utils.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils.php b/utils.php
index 99a6a06..b6fc061 100644
--- a/utils.php
+++ b/utils.php
@@ -21,8 +21,8 @@
require_once 'config.php';
-function match_ipv4($ip) {
- if (strrpos($ip, '/')) {
+function match_ipv4($ip, $ip_only = true) {
+ if (strrpos($ip, '/') && !$ip_only) {
$ip_and_mask = explode('/', $ip, 2);
return filter_var($ip_and_mask[0], FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) &&
@@ -32,8 +32,8 @@ function match_ipv4($ip) {
}
}
-function match_ipv6($ip) {
- if (strrpos($ip, '/')) {
+function match_ipv6($ip, $ip_only = true) {
+ if (strrpos($ip, '/') && !$ip_only) {
$ip_and_mask = explode('/', $ip, 2);
return filter_var($ip_and_mask[0], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) &&