Bug fix in new multicast frame handler, handling of old "P5" multicast frames in new way.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user