Kraken\Network\NetworkServer::unblockAddress PHP Method

unblockAddress() public method

public unblockAddress ( $address )
    public function unblockAddress($address)
    {
        if ($this->firewall === null) {
            $this->createFirewall();
        }
        $this->firewall->unblockAddress($address);
        return $this;
    }