Firewall
Firewall copied to clipboard
:no_entry: DEPRECATED - Library providing IP filtering features
long2ip() expects parameter 1 to be integer, string given `protected function long2ip($long, $abbr = true) { switch(static::NB_BITS) { case 128: return $this->long2ip6($long, $abbr); default: return strval(long2ip($long)); } }`
hello we have encountered an issue with your library. On a 32bit installation when we try to run the following code. The Ip is always allowed. ``` php use M6Web\Component\Firewall\Firewall;...
I would expect that a white list entry of `10.*` would be equal to CIDR Mask `10.0.0.0/8` but the IPV4Wildcard currently doesn't match. Is this by design?
How much trouble would it be to add an isValidIP function to the firewall to do return a boolean true or false before adding an IP to the white or...