diff options
author | Neale Ranns <nranns@cisco.com> | 2019-08-05 01:00:19 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-08-05 01:00:19 -0700 |
commit | 766849aa7539a80d6a5e906d13fdb7b3749b098e (patch) | |
tree | 4f266bb25a3b8e2b1321d4c9624077dc7ce953e9 /src/VppUplink.cpp | |
parent | 2fd3a04360f11698bcb54b9952ad0d1334e7a50a (diff) |
Change-Id: I2afb963256321988cb15ea66418a6565532a6022
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/VppUplink.cpp')
-rw-r--r-- | src/VppUplink.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/VppUplink.cpp b/src/VppUplink.cpp index fcaddf7..a14652b 100644 --- a/src/VppUplink.cpp +++ b/src/VppUplink.cpp @@ -24,7 +24,7 @@ #include <vom/bond_group_binding.hpp> #include <vom/qos_mark.hpp> #include <vom/qos_map.hpp> -#include <vom/qos_record.hpp> +#include <vom/qos_store.hpp> #include "VppSpineProxy.hpp" #include "VppUplink.hpp" @@ -38,7 +38,7 @@ namespace VPP /** * THe DSCP and VLAN CoS value opflex wants for its control packets */ -const static u8 opflex_cp_dscp = 5; +const static QoS::bits_t opflex_cp_dscp = 5; static const std::string UPLINK_KEY = "__uplink__"; @@ -121,10 +121,10 @@ Uplink::configure_tap(const route::prefix_t &pfx) VOM::OM::write(UPLINK_KEY, ipPunt); /** - * record the QoS bits for packets from the TAP + * store the QoS bits for packets from the TAP */ - QoS::record qr(itf, QoS::source_t::IP); - OM::write(UPLINK_KEY, qr); + QoS::store qs(itf, QoS::source_t::IP, opflex_cp_dscp); + OM::write(UPLINK_KEY, qs); } void |