Arp uses action

This commit is contained in:
Tim Young 2018-05-14 15:14:46 -05:00
parent 074d6c22c5
commit d5340507fa
1 changed files with 2 additions and 1 deletions

View File

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