summaryrefslogtreecommitdiffstats
path: root/extras/vom/vom/gbp_global_cmds.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'extras/vom/vom/gbp_global_cmds.cpp')
-rw-r--r--extras/vom/vom/gbp_global_cmds.cpp64
1 files changed, 64 insertions, 0 deletions
diff --git a/extras/vom/vom/gbp_global_cmds.cpp b/extras/vom/vom/gbp_global_cmds.cpp
new file mode 100644
index 00000000000..3ad651b68a3
--- /dev/null
+++ b/extras/vom/vom/gbp_global_cmds.cpp
@@ -0,0 +1,64 @@
+/*
+ * Copyright (c) 2017 Cisco and/or its affiliates.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at:
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "vom/gbp_global_cmds.hpp"
+
+namespace VOM {
+namespace gbp_global_cmds {
+config_cmd::config_cmd(HW::item<bool>& item, uint32_t remote_ep_retention)
+ : rpc_cmd(item)
+ , m_remote_ep_retention(remote_ep_retention)
+{
+}
+
+bool
+config_cmd::operator==(const config_cmd& other) const
+{
+ return (m_remote_ep_retention == other.m_remote_ep_retention);
+}
+
+rc_t
+config_cmd::issue(connection& con)
+{
+ msg_t req(con.ctx(), std::ref(*this));
+
+ auto& payload = req.get_request().get_payload();
+ payload.threshold = m_remote_ep_retention;
+
+ VAPI_CALL(req.execute());
+
+ return (wait());
+}
+
+std::string
+config_cmd::to_string() const
+{
+ std::ostringstream s;
+ s << "Gbp-global-config: " << m_hw_item.to_string()
+ << " remote_ep_retention:" << m_remote_ep_retention;
+
+ return (s.str());
+}
+
+}; // namespace gbp_global_cmds
+}; // namespace VOM
+
+/*
+ * fd.io coding-style-patch-verification: ON
+ *
+ * Local Variables:
+ * eval: (c-set-style "mozilla")
+ * End:
+ */