diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2018-04-17 19:35:42 +0200 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-07-19 07:51:39 +0000 |
commit | d61105656b61012c39e7b9f96c12b65ef5ad3b05 (patch) | |
tree | 4087f0357b0e96fba924c88c860260ad8125e4cf /src/plugins/gbp/gbp.h | |
parent | 692250bedfc047ec9f88e7308daf456ed5f4a2a7 (diff) |
gbp: Add support for ACL
Change-Id: I7513c41307e62068ab5d9739cac393675c6066f8
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
(cherry picked from commit 22b3b846822df2701bb6cb508fa4e023526e5717)
Diffstat (limited to 'src/plugins/gbp/gbp.h')
-rw-r--r-- | src/plugins/gbp/gbp.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/plugins/gbp/gbp.h b/src/plugins/gbp/gbp.h index 8672fd3b092..06612cd948f 100644 --- a/src/plugins/gbp/gbp.h +++ b/src/plugins/gbp/gbp.h @@ -31,6 +31,8 @@ #ifndef __GBP_H__ #define __GBP_H__ +#include <plugins/acl/exports.h> + #include <plugins/gbp/gbp_types.h> #include <plugins/gbp/gbp_endpoint.h> #include <plugins/gbp/gbp_endpoint_group.h> @@ -38,6 +40,14 @@ #include <plugins/gbp/gbp_subnet.h> #include <plugins/gbp/gbp_recirc.h> +typedef struct +{ + u32 gbp_acl_user_id; + acl_plugin_methods_t acl_plugin; +} gbp_main_t; + +extern gbp_main_t gbp_main; + #endif /* |