vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / ra_prefix.cpp
1 /*
2  * Copyright (c) 2017 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <sstream>
17
18 #include "vom/api_types.hpp"
19 #include "vom/ra_prefix.hpp"
20
21 namespace VOM {
22 ra_prefix::ra_prefix(const route::prefix_t& pfx,
23                      uint8_t use_default,
24                      uint8_t no_advertise,
25                      uint32_t val_lifetime,
26                      uint32_t pref_lifetime)
27   : m_pfx(pfx)
28   , m_use_default(use_default)
29   , m_no_advertise(no_advertise)
30   , m_off_link(0)
31   , m_no_autoconfig(0)
32   , m_no_onlink(0)
33   , m_val_lifetime(val_lifetime)
34   , m_pref_lifetime(pref_lifetime)
35 {
36 }
37
38 void
39 ra_prefix::to_vpp(vapi_payload_sw_interface_ip6nd_ra_prefix& ra_prefix) const
40 {
41   ra_prefix.prefix = to_api(m_pfx);
42
43   ra_prefix.use_default = m_use_default;
44   ra_prefix.no_advertise = m_no_advertise;
45   ra_prefix.off_link = m_off_link;
46   ra_prefix.no_autoconfig = m_no_autoconfig;
47   ra_prefix.no_onlink = m_no_onlink;
48   ra_prefix.val_lifetime = m_val_lifetime;
49   ra_prefix.pref_lifetime = m_pref_lifetime;
50 }
51
52 bool
53 ra_prefix::operator==(const ra_prefix& other) const
54 {
55   return ((m_pfx == other.m_pfx) && (m_use_default == other.m_use_default) &&
56           (m_no_advertise == other.m_no_advertise) &&
57           (m_val_lifetime == other.m_val_lifetime) &&
58           (m_pref_lifetime == other.m_pref_lifetime));
59 }
60
61 std::string
62 ra_prefix::to_string() const
63 {
64   std::ostringstream s;
65
66   s << "ra-pfx-config:["
67     << " pfx:" << m_pfx.to_string() << " use-default:" << m_use_default
68     << " no-advertise:" << m_no_advertise << " val-lifetime:" << m_val_lifetime
69     << " pref-lifetime:" << m_pref_lifetime << "]";
70
71   return (s.str());
72 }
73
74 const route::prefix_t&
75 ra_prefix::prefix() const
76 {
77   return (m_pfx);
78 }
79 }
80
81 /*
82  * fd.io coding-style-patch-verification: ON
83  *
84  * Local Variables:
85  * eval: (c-set-style "mozilla")
86  * End:
87  */