diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2019-03-14 14:29:15 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2019-03-14 14:29:15 -0700 |
| commit | e03102dbcb4d28cfa54740a8d9824d3c6324d97b (patch) | |
| tree | a0da61347f8899b7aa93ab3e754f337151e936d8 /node/Network.hpp | |
| parent | 9d7b7c72b2dd769853bea3423321539ab198829e (diff) | |
| download | infinitytier-e03102dbcb4d28cfa54740a8d9824d3c6324d97b.tar.gz infinitytier-e03102dbcb4d28cfa54740a8d9824d3c6324d97b.zip | |
Clean out some unnecessarily pedantic auth stuff in favor of a simpler way of gating multicast gathers.
Diffstat (limited to 'node/Network.hpp')
| -rw-r--r-- | node/Network.hpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/node/Network.hpp b/node/Network.hpp index a8c5ea1f..eec016c0 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 |
