Bug fix in new multicast frame handler, handling of old "P5" multicast frames in new way.

This commit is contained in:
Adam Ierymenko 2014-10-06 13:16:16 -07:00
parent ab22feba9a
commit 87f1b1b1e3
3 changed files with 104 additions and 21 deletions

View file

@ -149,7 +149,7 @@ void Peer::receive(
if ((verb == Packet::VERB_FRAME)||(verb == Packet::VERB_EXT_FRAME))
_lastUnicastFrame = now;
else if (verb == Packet::VERB_MULTICAST_FRAME)
else if ((verb == Packet::VERB_P5_MULTICAST_FRAME)||(verb == Packet::VERB_MULTICAST_FRAME))
_lastMulticastFrame = now;
}