GBP: fix UT after multi-arch change
[vpp.git] / src / plugins / gbp / gbp_sclass.h
index 07c5fff..75e35c3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2019 Cisco and/or its affiliates.
+ * Copyright (c) 2018 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:
 
 #include <plugins/gbp/gbp.h>
 
-extern void gbp_sclass_enable_ip (u32 sw_if_index);
+/**
+ * Grouping of global data for the GBP source EPG classification feature
+ */
+typedef struct gbp_sclass_main_t_
+{
+  /**
+   * Next nodes for L2 output features
+   */
+  u32 gel_l2_input_feat_next[32];
+  u32 gel_l2_output_feat_next[32];
+} gbp_sclass_main_t;
+
+extern gbp_sclass_main_t gbp_sclass_main;
+
 extern void gbp_sclass_enable_l2 (u32 sw_if_index);
-extern void gbp_sclass_disable_ip (u32 sw_if_index);
 extern void gbp_sclass_disable_l2 (u32 sw_if_index);
+extern void gbp_sclass_enable_ip (u32 sw_if_index);
+extern void gbp_sclass_disable_ip (u32 sw_if_index);
 
 #endif