diff options
author | Neale Ranns <nranns@cisco.com> | 2019-03-04 01:37:43 -0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-03-04 01:37:43 -0800 |
commit | f90bcee0944064fbe99571b772eef4baba32152e (patch) | |
tree | fc8e3f7b1c46745ff3915aa827ad564ae6648f56 /src/plugins/gbp/gbp_sclass.h | |
parent | 6fa5dac5fe9699c5eeed383c5bcb3f08507e1548 (diff) |
GBP: fix UT after multi-arch change
Change-Id: I09c400d71b3c973341fd79fe9b6709592d96822c
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/plugins/gbp/gbp_sclass.h')
-rw-r--r-- | src/plugins/gbp/gbp_sclass.h | 20 |
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 |