Ejemplo n.º 1
0
 private void HandleSendPing()
 {
     if (currentPing == null)
     {
         currentPing = new CustomPing(remoteIp);
     }
 }
Ejemplo n.º 2
0
 private void PingReceivedHandler()
 {
     LogSuccess();
     currentPing = null;
 }
Ejemplo n.º 3
0
 private void PingTimeoutHandler()
 {
     LogTimeout();
     currentPing = null;
 }