summaryrefslogtreecommitdiff
path: root/node/OutboundMulticast.cpp
diff options
context:
space:
mode:
authorJoseph Henry <josephjah@gmail.com>2018-07-10 16:50:12 -0700
committerJoseph Henry <josephjah@gmail.com>2018-07-10 16:50:12 -0700
commit28cb40529d04e61a188e9d4a2a316690703ea605 (patch)
tree3c496742af9162473d0e009d52c1eb17cb6f3e76 /node/OutboundMulticast.cpp
parentbdcdccfcc3157e62a4bc8078e583876cbef41223 (diff)
downloadinfinitytier-28cb40529d04e61a188e9d4a2a316690703ea605.tar.gz
infinitytier-28cb40529d04e61a188e9d4a2a316690703ea605.zip
Rough draft of fq-codel implementation
Diffstat (limited to 'node/OutboundMulticast.cpp')
-rw-r--r--node/OutboundMulticast.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/node/OutboundMulticast.cpp b/node/OutboundMulticast.cpp
index d7a7b4d8..2391771f 100644
--- a/node/OutboundMulticast.cpp
+++ b/node/OutboundMulticast.cpp
@@ -85,7 +85,8 @@ void OutboundMulticast::sendOnly(const RuntimeEnvironment *RR,void *tPtr,const A
{
const SharedPtr<Network> nw(RR->node->network(_nwid));
const Address toAddr2(toAddr);
- if ((nw)&&(nw->filterOutgoingPacket(tPtr,true,RR->identity.address(),toAddr2,_macSrc,_macDest,_frameData,_frameLen,_etherType,0))) {
+ uint8_t QoSBucket = 255; // Dummy value
+ if ((nw)&&(nw->filterOutgoingPacket(tPtr,true,RR->identity.address(),toAddr2,_macSrc,_macDest,_frameData,_frameLen,_etherType,0,QoSBucket))) {
_packet.newInitializationVector();
_packet.setDestination(toAddr2);
RR->node->expectReplyTo(_packet.packetId());