From 9ef1c0adbf9399c55deeede3cf629dd4e8c20304 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Fri, 3 Nov 2017 04:39:05 -0700 Subject: 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 Signed-off-by: Mohsin Kazmi --- src/vpp-api/vom/nat_static.hpp | 108 ----------------------------------------- 1 file changed, 108 deletions(-) (limited to 'src/vpp-api/vom/nat_static.hpp') diff --git a/src/vpp-api/vom/nat_static.hpp b/src/vpp-api/vom/nat_static.hpp index 1aa4a5e79c3..1560968a6ed 100644 --- a/src/vpp-api/vom/nat_static.hpp +++ b/src/vpp-api/vom/nat_static.hpp @@ -16,13 +16,10 @@ #ifndef __VOM_NAT_STATIC_H__ #define __VOM_NAT_STATIC_H__ -#include "vom/dump_cmd.hpp" #include "vom/route.hpp" #include "vom/singular_db.hpp" #include "vom/types.hpp" -#include - namespace VOM { /** * A entry in the ARP termination table of a Bridge Domain @@ -87,111 +84,6 @@ public: */ std::string to_string() const; - /** - * A command class that creates NAT 44 static mapping - */ - class create_44_cmd - : public rpc_cmd, rc_t, vapi::Nat44_add_del_static_mapping> - { - public: - /** - * Constructor - */ - create_44_cmd(HW::item& item, - route::table_id_t id, - const boost::asio::ip::address_v4& inside, - const boost::asio::ip::address_v4& outside); - - /** - * Issue the command to VPP/HW - */ - rc_t issue(connection& con); - - /** - * convert to string format for debug purposes - */ - std::string to_string() const; - - /** - * Comparison operator - only used for UT - */ - bool operator==(const create_44_cmd& i) const; - - private: - route::table_id_t m_id; - const boost::asio::ip::address_v4 m_inside; - const boost::asio::ip::address_v4 m_outside; - }; - - /** - * A cmd class that deletes a NAT 44 static mapping - */ - class delete_44_cmd - : public rpc_cmd, rc_t, vapi::Nat44_add_del_static_mapping> - { - public: - /** - * Constructor - */ - delete_44_cmd(HW::item& item, - route::table_id_t id, - const boost::asio::ip::address_v4& inside, - const boost::asio::ip::address_v4& outside); - - /** - * Issue the command to VPP/HW - */ - rc_t issue(connection& con); - - /** - * convert to string format for debug purposes - */ - std::string to_string() const; - - /** - * Comparison operator - only used for UT - */ - bool operator==(const delete_44_cmd& i) const; - - private: - route::table_id_t m_id; - const boost::asio::ip::address_v4 m_inside; - const boost::asio::ip::address_v4 m_outside; - }; - - /** - * A cmd class that Dumps all the nat_statics - */ - class dump_44_cmd : public dump_cmd - { - public: - /** - * Constructor - */ - dump_44_cmd(); - dump_44_cmd(const dump_44_cmd& d); - - /** - * Issue the command to VPP/HW - */ - rc_t issue(connection& con); - /** - * convert to string format for debug purposes - */ - std::string to_string() const; - - /** - * Comparison operator - only used for UT - */ - bool operator==(const dump_44_cmd& i) const; - - private: - /** - * HW reutrn code - */ - HW::item item; - }; - private: /** * Class definition for listeners to OM events -- cgit 1.2.3-korg