diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2020-10-26 13:00:06 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-10-28 16:55:35 +0000 |
commit | e4031131ccddd7c4eb683b36f1a97a65dcff008a (patch) | |
tree | ef469ab6a2188bd3ce7ab0daacb0d9ef14fca632 /src/vnet/vnet.h | |
parent | 224a3c03d9aa34259ac3816c0039f2776d6da5ef (diff) |
misc: Break the big IP header files to improve compile time
Type: refactor
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Change-Id: Id1801519638a9b97175847d7ed58824fb83433d6
Diffstat (limited to 'src/vnet/vnet.h')
-rw-r--r-- | src/vnet/vnet.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/vnet/vnet.h b/src/vnet/vnet.h index 14da23f66ce..be680a77f98 100644 --- a/src/vnet/vnet.h +++ b/src/vnet/vnet.h @@ -49,7 +49,13 @@ #include <vnet/config.h> #include <vnet/interface.h> #include <vnet/api_errno.h> -#include <vnet/ip/ip_table.h> + +/* ip table add delete callback */ +typedef struct _vnet_ip_table_function_list_elt +{ + struct _vnet_ip_table_function_list_elt *next_ip_table_function; + clib_error_t *(*fp) (struct vnet_main_t * vnm, u32 table_id, u32 flags); +} _vnet_ip_table_function_list_elt_t; typedef struct vnet_main_t { |