* @param ipRestrictionAddress
* @return boolean
*/
private static boolean isCIDRMatch(String toCheck, String ipRestrictionAddress) {
try {
CIDRNetwork network = new CIDRNetwork(ipRestrictionAddress);
return network.isValidAddressForNetwork(toCheck);
} catch (Exception e) {
return false;
}
}