diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/log.c | 4 | ||||
| -rw-r--r-- | lib/zclient.h | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -968,6 +968,10 @@ static const struct zebra_desc_table command_types[] = { DESC_ENTRY(ZEBRA_TABLE_MANAGER_CONNECT), DESC_ENTRY(ZEBRA_GET_TABLE_CHUNK), DESC_ENTRY(ZEBRA_RELEASE_TABLE_CHUNK), + DESC_ENTRY(ZEBRA_IPSET_CREATE), + DESC_ENTRY(ZEBRA_IPSET_DESTROY), + DESC_ENTRY(ZEBRA_IPSET_ENTRY_ADD), + DESC_ENTRY(ZEBRA_IPSET_ENTRY_DELETE), }; #undef DESC_ENTRY diff --git a/lib/zclient.h b/lib/zclient.h index a77b1c1f94..3c6e1b3208 100644 --- a/lib/zclient.h +++ b/lib/zclient.h @@ -140,6 +140,10 @@ typedef enum { ZEBRA_TABLE_MANAGER_CONNECT, ZEBRA_GET_TABLE_CHUNK, ZEBRA_RELEASE_TABLE_CHUNK, + ZEBRA_IPSET_CREATE, + ZEBRA_IPSET_DESTROY, + ZEBRA_IPSET_ENTRY_ADD, + ZEBRA_IPSET_ENTRY_DELETE, } zebra_message_types_t; struct redist_proto { |
