misc: deprecate VOM
[vpp.git] / extras / deprecated / vom / vom / ra_prefix.cpp
diff --git a/extras/deprecated/vom/vom/ra_prefix.cpp b/extras/deprecated/vom/vom/ra_prefix.cpp
new file mode 100644 (file)
index 0000000..2106879
--- /dev/null
@@ -0,0 +1,87 @@
+/*
+ * 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 <sstream>
+
+#include "vom/api_types.hpp"
+#include "vom/ra_prefix.hpp"
+
+namespace VOM {
+ra_prefix::ra_prefix(const route::prefix_t& pfx,
+                     uint8_t use_default,
+                     uint8_t no_advertise,
+                     uint32_t val_lifetime,
+                     uint32_t pref_lifetime)
+  : m_pfx(pfx)
+  , m_use_default(use_default)
+  , m_no_advertise(no_advertise)
+  , m_off_link(0)
+  , m_no_autoconfig(0)
+  , m_no_onlink(0)
+  , m_val_lifetime(val_lifetime)
+  , m_pref_lifetime(pref_lifetime)
+{
+}
+
+void
+ra_prefix::to_vpp(vapi_payload_sw_interface_ip6nd_ra_prefix& ra_prefix) const
+{
+  ra_prefix.prefix = to_api(m_pfx);
+
+  ra_prefix.use_default = m_use_default;
+  ra_prefix.no_advertise = m_no_advertise;
+  ra_prefix.off_link = m_off_link;
+  ra_prefix.no_autoconfig = m_no_autoconfig;
+  ra_prefix.no_onlink = m_no_onlink;
+  ra_prefix.val_lifetime = m_val_lifetime;
+  ra_prefix.pref_lifetime = m_pref_lifetime;
+}
+
+bool
+ra_prefix::operator==(const ra_prefix& other) const
+{
+  return ((m_pfx == other.m_pfx) && (m_use_default == other.m_use_default) &&
+          (m_no_advertise == other.m_no_advertise) &&
+          (m_val_lifetime == other.m_val_lifetime) &&
+          (m_pref_lifetime == other.m_pref_lifetime));
+}
+
+std::string
+ra_prefix::to_string() const
+{
+  std::ostringstream s;
+
+  s << "ra-pfx-config:["
+    << " pfx:" << m_pfx.to_string() << " use-default:" << m_use_default
+    << " no-advertise:" << m_no_advertise << " val-lifetime:" << m_val_lifetime
+    << " pref-lifetime:" << m_pref_lifetime << "]";
+
+  return (s.str());
+}
+
+const route::prefix_t&
+ra_prefix::prefix() const
+{
+  return (m_pfx);
+}
+}
+
+/*
+ * fd.io coding-style-patch-verification: OFF
+ *
+ * Local Variables:
+ * eval: (c-set-style "mozilla")
+ * End:
+ */