cop: API cleanup 58/21458/7
authorJakub Grajciar <jgrajcia@cisco.com>
Wed, 3 Apr 2019 12:05:11 +0000 (14:05 +0200)
committerOle Trøan <otroan@employees.org>
Thu, 19 Sep 2019 16:30:52 +0000 (16:30 +0000)
Use consistent API types.

Type: fix

Change-Id: I6ac453c88628a4dbb08b03c408df09b91b1ea5ca
Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
MAINTAINERS
src/vnet/cop/cop.api

index 9a8de22..6970a00 100644 (file)
@@ -150,6 +150,11 @@ M: Damjan Marion <damarion@cisco.com>
 M:     Neale Ranns <nranns@cisco.com>
 F:     src/vnet/crypto/
 
+VNET COP
+I:     cop
+M:     Dave Barach <dave@barachs.net>
+F:     src/vnet/cop/
+
 Crypto IA32 Plugin
 I:     crypto-ia32
 M:     Damjan Marion <damarion@cisco.com>
index bcdd562..f0f267c 100644 (file)
@@ -13,7 +13,9 @@
  * limitations under the License.
  */
 
-option version = "1.0.0";
+option version = "1.0.1";
+
+import "vnet/interface_types.api";
 
  /** \brief cop: enable/disable junk filtration features on an interface
     @param client_index - opaque cookie to identify the sender
@@ -26,13 +28,13 @@ autoreply define cop_interface_enable_disable
 {
   u32 client_index;
   u32 context;
-  u32 sw_if_index;
-  u8 enable_disable;
+  vl_api_interface_index_t sw_if_index;
+  bool enable_disable;
 };
 
 /** \brief cop: enable/disable whitelist filtration features on an interface
     Note: the supplied fib_id must match in order to remove the feature!
-    
+
     @param client_index - opaque cookie to identify the sender
     @param context - sender context, to match reply w/ request
     @param sw_if_index - interface handle, physical interfaces only
@@ -46,11 +48,11 @@ autoreply define cop_whitelist_enable_disable
 {
   u32 client_index;
   u32 context;
-  u32 sw_if_index;
+  vl_api_interface_index_t sw_if_index;
   u32 fib_id;
-  u8 ip4;
-  u8 ip6;
-  u8 default_cop;
+  bool ip4;
+  bool ip6;
+  bool default_cop;
 };
 
 /** \brief get_node_graph - get a copy of the vpp node graph
@@ -65,4 +67,3 @@ autoreply define cop_whitelist_enable_disable
  * eval: (c-set-style "gnu")
  * End:
  */