Added capability to unblock addresses without a restart

This commit is contained in:
Dylan K. Taylor
2017-08-14 14:12:06 +01:00
parent 0c798222a4
commit ae3a8a5493
5 changed files with 17 additions and 1 deletions

View File

@ -171,4 +171,10 @@ class Network{
$interface->blockAddress($address, $timeout);
}
}
public function unblockAddress(string $address){
foreach($this->advancedInterfaces as $interface){
$interface->unblockAddress($address);
}
}
}