summaryrefslogtreecommitdiffstats
path: root/src/plugins/gbp/gbp_sclass.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/gbp/gbp_sclass.h')
-rw-r--r--src/plugins/gbp/gbp_sclass.h20
1 files changed, 17 insertions, 3 deletions
diff --git a/src/plugins/gbp/gbp_sclass.h b/src/plugins/gbp/gbp_sclass.h
index 07c5fffcc96..75e35c36bdf 100644
--- a/src/plugins/gbp/gbp_sclass.h
+++ b/src/plugins/gbp/gbp_sclass.h
@@ -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:
@@ -18,10 +18,24 @@
#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