Allow firewall to affect packets coming in from a VPN

This commit is contained in:
Tim Young 2017-08-31 10:01:18 -05:00
parent f437c07ce5
commit d90259534b

View File

@ -1790,6 +1790,7 @@ namespace EduNetworkBuilder
if (tPacket.EncryptionString == nc.EncryptionKey) if (tPacket.EncryptionString == nc.EncryptionKey)
{ {
nPacket.destMAC = nc.MAC; //This is already the case, but we need to set it again for some reason. nPacket.destMAC = nc.MAC; //This is already the case, but we need to set it again for some reason.
nPacket.InboundInterface = nc.InterfaceFromName(nc.NicName()) ;
nPacket.MyStatus = PacketStatus.processing; nPacket.MyStatus = PacketStatus.processing;
nPacket.WhereAmI = this; nPacket.WhereAmI = this;