diff options
Diffstat (limited to 'node/Network.hpp')
-rw-r--r-- | node/Network.hpp | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/node/Network.hpp b/node/Network.hpp index a8c5ea1f..9350b3b5 100644 --- a/node/Network.hpp +++ b/node/Network.hpp @@ -291,6 +291,11 @@ public: } /** + * @return True if QoS is in effect for this network + */ + inline bool qosEnabled() { return false; } + + /** * Set a bridge route * * @param mac MAC address of destination @@ -299,13 +304,6 @@ public: void learnBridgeRoute(const MAC &mac,const Address &addr); /** - * Whether QoS is in effect for this network - */ - bool QoSEnabled() { - return false; - } - - /** * Learn a multicast group that is bridged to our tap device * * @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call @@ -367,7 +365,7 @@ public: inline void pushCredentialsNow(void *tPtr,const Address &to,const int64_t now) { Mutex::Lock _l(_lock); - _membership(to).pushCredentials(RR,tPtr,now,to,_config,-1,true); + _membership(to).pushCredentials(RR,tPtr,now,to,_config,-1); } /** |