From: Neale Ranns Date: Wed, 6 Mar 2019 07:59:15 +0000 (-0800) Subject: VOM: GBP show allowed ethertypes in contracts X-Git-Tag: v19.04-rc1~324 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F49%2F18049%2F1;p=vpp.git VOM: GBP show allowed ethertypes in contracts Change-Id: I8314f51d519966b1d9aef96318f6836ace944c9a Signed-off-by: Neale Ranns --- diff --git a/extras/vom/vom/gbp_contract.cpp b/extras/vom/vom/gbp_contract.cpp index f372acf2e4c..0ef50ad5535 100644 --- a/extras/vom/vom/gbp_contract.cpp +++ b/extras/vom/vom/gbp_contract.cpp @@ -101,7 +101,10 @@ gbp_contract::to_string() const ++it; } } - s << "]"; + s << "[ethertype:"; + for (auto e : m_allowed_ethertypes) + s << " " << e; + s << "]]"; return (s.str()); } diff --git a/extras/vom/vom/gbp_contract_cmds.cpp b/extras/vom/vom/gbp_contract_cmds.cpp index 7c42fc6bc4e..5cdd885f304 100644 --- a/extras/vom/vom/gbp_contract_cmds.cpp +++ b/extras/vom/vom/gbp_contract_cmds.cpp @@ -114,6 +114,10 @@ create_cmd::to_string() const s << "gbp-contract-create: " << m_hw_item.to_string() << " src-epg-id:" << m_src_epg_id << " dst-epg-id:" << m_dst_epg_id << " acl:" << m_acl; + s << "[ethertype:"; + for (auto e : m_allowed_ethertypes) + s << " " << e; + s << "]"; return (s.str()); }