Bug fix in new multicast frame handler, handling of old "P5" multicast frames in new way.
This commit is contained in:
parent
ab22feba9a
commit
87f1b1b1e3
3 changed files with 104 additions and 21 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue