diff options
author | Neale Ranns <nranns@cisco.com> | 2018-11-29 06:39:08 -0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-11-29 06:39:08 -0800 |
commit | c9aa7db825c2c6cf81d85340571d1886cc035cc6 (patch) | |
tree | 5ddc2bc40cc2b847f5d8d3b020eeed1d3e2088d8 | |
parent | 3460b014a7bd5a19fb59ae335120bfa93ecb2c77 (diff) |
VOM: missing GBP symbol
Change-Id: I6cbed0bce7c78970d5a22ac823d0380d14b73dbc
Signed-off-by: Neale Ranns <nranns@cisco.com>
-rw-r--r-- | extras/vom/vom/gbp_subnet.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extras/vom/vom/gbp_subnet.cpp b/extras/vom/vom/gbp_subnet.cpp index 8404dcd2e65..a6bb55071e9 100644 --- a/extras/vom/vom/gbp_subnet.cpp +++ b/extras/vom/vom/gbp_subnet.cpp @@ -31,7 +31,8 @@ const gbp_subnet::type_t gbp_subnet::type_t::STITCHED_INTERNAL( const gbp_subnet::type_t gbp_subnet::type_t::STITCHED_EXTERNAL( 1, "stitched-external"); -const gbp_subnet::type_t gbp_subnet::type_t::TRANSPORT(1, "transport"); +const gbp_subnet::type_t gbp_subnet::type_t::TRANSPORT(2, "transport"); +const gbp_subnet::type_t gbp_subnet::type_t::L3_OUT(3, "l3-out"); singular_db<gbp_subnet::key_t, gbp_subnet> gbp_subnet::m_db; |