Checks if an IPv4 or IPv6 address is contained in the list of private IP subnets.
public static function isPrivateIp(string $requestIp) : bool { return self::checkIp($requestIp, self::PRIVATE_SUBNETS); }