PHPDaemon\Servers\Ident\Pool::registerPair PHP Method

registerPair() public method

Register pair
public registerPair ( integer $local, integer $foreign, string $user ) : void
$local integer Local
$foreign integer Foreign
$user string User
return void
    public function registerPair($local, $foreign, $user)
    {
        $this->appInstance->broadcastCall('registerPair', [$local, $foreign, is_array($user) ? implode(' : ', $user) : $user]);
    }