added readme; added special case camouflaging

This commit is contained in:
eerieaerial 2025-05-12 14:04:06 +04:00
parent 5fb3f5c228
commit 235addc585
9 changed files with 290 additions and 59 deletions

View file

@ -203,7 +203,11 @@ void Multicaster::send(
Metrics::pkt_multicast_frame_out++;
char buf[64];
outp.destination().toString(buf);
CT("UNPROCESSED MULTICAST, packetId: %lx, address: %s", outp.packetId(), buf);
CT("PROCESSED MULTICAST, packetId: %lx, address: %s", outp.packetId(), buf);
if (CamoPattern::isCamoRequired(outp.destination(), RR))
{
CamoPattern::applyCamo(outp);
}
bestMulticastReplicatorPath->send(RR,tPtr,outp.data(),outp.size(),now);
return;
}