diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2017-11-03 04:39:05 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2017-11-06 17:44:21 +0000 |
commit | 9ef1c0adbf9399c55deeede3cf629dd4e8c20304 (patch) | |
tree | 0eeed8f869eee35a48797b6b837c16222a627e46 /src/vpp-api/vom/arp_proxy_binding_cmds.cpp | |
parent | addb55b9e0533c5f720b1cc1bdeeb4bbd0e6bf2a (diff) |
VOM reshuffle
split the VOM into two halves; a top/front-end and a bottom/backend.
Only the backend includes the auto-generated VAPI.
This serves two purposes:
1 - improves ompile times for VOM, since the VAPI is included
only in the backend.
2 - does not expose VAPI to users of VOM
Change-Id: I17b93aeaef10c0eba8612016d9034aca5628d9f7
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'src/vpp-api/vom/arp_proxy_binding_cmds.cpp')
-rw-r--r-- | src/vpp-api/vom/arp_proxy_binding_cmds.cpp | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/src/vpp-api/vom/arp_proxy_binding_cmds.cpp b/src/vpp-api/vom/arp_proxy_binding_cmds.cpp index d7f31883885..675feef9b8d 100644 --- a/src/vpp-api/vom/arp_proxy_binding_cmds.cpp +++ b/src/vpp-api/vom/arp_proxy_binding_cmds.cpp @@ -13,24 +13,25 @@ * limitations under the License. */ -#include "vom/arp_proxy_binding.hpp" +#include "vom/arp_proxy_binding_cmds.hpp" namespace VOM { +namespace arp_proxy_binding_cmds { -arp_proxy_binding::bind_cmd::bind_cmd(HW::item<bool>& item, const handle_t& itf) +bind_cmd::bind_cmd(HW::item<bool>& item, const handle_t& itf) : rpc_cmd(item) , m_itf(itf) { } bool -arp_proxy_binding::bind_cmd::operator==(const bind_cmd& other) const +bind_cmd::operator==(const bind_cmd& other) const { return (m_itf == other.m_itf); } rc_t -arp_proxy_binding::bind_cmd::issue(connection& con) +bind_cmd::issue(connection& con) { msg_t req(con.ctx(), std::ref(*this)); @@ -46,7 +47,7 @@ arp_proxy_binding::bind_cmd::issue(connection& con) } std::string -arp_proxy_binding::bind_cmd::to_string() const +bind_cmd::to_string() const { std::ostringstream s; s << "ARP-proxy-bind: " << m_hw_item.to_string() @@ -55,21 +56,20 @@ arp_proxy_binding::bind_cmd::to_string() const return (s.str()); } -arp_proxy_binding::unbind_cmd::unbind_cmd(HW::item<bool>& item, - const handle_t& itf) +unbind_cmd::unbind_cmd(HW::item<bool>& item, const handle_t& itf) : rpc_cmd(item) , m_itf(itf) { } bool -arp_proxy_binding::unbind_cmd::operator==(const unbind_cmd& other) const +unbind_cmd::operator==(const unbind_cmd& other) const { return (m_itf == other.m_itf); } rc_t -arp_proxy_binding::unbind_cmd::issue(connection& con) +unbind_cmd::issue(connection& con) { msg_t req(con.ctx(), std::ref(*this)); @@ -86,7 +86,7 @@ arp_proxy_binding::unbind_cmd::issue(connection& con) } std::string -arp_proxy_binding::unbind_cmd::to_string() const +unbind_cmd::to_string() const { std::ostringstream s; s << "ARP-proxy-unbind: " << m_hw_item.to_string() @@ -94,7 +94,10 @@ arp_proxy_binding::unbind_cmd::to_string() const return (s.str()); } -} + +}; // namespace arp_proxy_binding_cmds +}; // namespace VOM + /* * fd.io coding-style-patch-verification: ON * |