Change "Ping" to an action

This commit is contained in:
2018-05-04 12:55:05 -05:00
parent 2890c25083
commit b3f4733248
3 changed files with 19 additions and 4 deletions

View File

@ -1449,7 +1449,8 @@ namespace EduNetworkBuilder
destination = myNetwork.DNSLookup(ItemClickedOn, dest);
if(destination == null || destination.GetIPString == NB.ZeroIPString)
destination = new NB_IPAddress(dest);
ItemClickedOn.PingFromHere(destination);
//ItemClickedOn.PingFromHere(destination);
NB.DoActionPingDevice(ItemClickedOn.GetUniqueIdentifier, destination);
myNetwork.ProcessPackets();
UpdateMessages();
}