blockSubnet method

void blockSubnet(
  1. String subnet
)

BlockSubnet blocks a subnet (CIDR notation)

Implementation

void blockSubnet(String subnet) {
  _blockedSubnets.add(subnet);
  _logger.fine('Blocked subnet: $subnet');
}