Gwupe.Communication.P2P.P2P.Tunnel.Waver.ProcessWaveRs C# (CSharp) Method

ProcessWaveRs() public method

public ProcessWaveRs ( StandardWaveTunnelRsPacket packet ) : void
packet Gwupe.Communication.P2P.RUDP.Packet.Tunnel.StandardWaveTunnelRsPacket
return void
        public void ProcessWaveRs(StandardWaveTunnelRsPacket packet)
        {
            Logger.Debug("Processing Wave Response from " + packet.ip);
            _waveResult = new PeerInfo() { ExternalEndPoint = packet.externalEndPoint, FacilitatorRepeatedEndPoint = packet.ip };
            _waveEvent.Set();
        }