Exemple #1
0
        public void Handle(PeerDisconnectedNotification notification)
        {
            Total.Remove(notification.Peer);

            LocalChoking.Remove(notification.Peer);
            LocalInterested.Remove(notification.Peer);

            RemoteChoking.Remove(notification.Peer);
            RemoteInterested.Remove(notification.Peer);
        }
 public virtual void Handle(PeerDisconnectedNotification notification)
 {
 }
Exemple #3
0
 public override void Handle(PeerDisconnectedNotification notification)
 {
     peers.Handle(notification);
 }