mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-18 12:11:36 +00:00
Empty commit
This commit is contained in:
parent
4a08c9ccfb
commit
76490754e2
@ -285,13 +285,13 @@ public static function update_user_notes($UserID, $AdminComment) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if an IP is part of a given CIDR range.
|
||||
* @param string $CheckIP the IP to be looked up
|
||||
* Check if an IP address is part of a given CIDR range.
|
||||
* @param string $CheckIP the IP address to be looked up
|
||||
* @param string $Subnet the CIDR subnet to be checked against
|
||||
*/
|
||||
public static function check_cidr_range($CheckIP, $Subnet) {
|
||||
$IP = ip2long($CheckIP);
|
||||
$CIDR = split('/',$Subnet);
|
||||
$CIDR = split('/', $Subnet);
|
||||
$SubnetIP = ip2long($CIDR[0]);
|
||||
$SubnetMaskBits = 32 - $CIDR[1];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user