diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2018-03-07 12:54:16 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2018-04-16 14:40:16 +0200 |
commit | 7661461a3a2e8a6c9feb539d41ba4e454fccb037 (patch) | |
tree | 910eb5dd32ab035dfe069dbeceb826367801af32 /zebra/zebra_ns.h | |
parent | Merge pull request #2053 from LabNConsulting/working/master/bvl-bug-degenerat... (diff) | |
download | frr-7661461a3a2e8a6c9feb539d41ba4e454fccb037.tar.xz frr-7661461a3a2e8a6c9feb539d41ba4e454fccb037.zip |
zebra: handle entry pointfs for ipset creation/destruction
IPset and IPset entries structures are introduced. Those entries reflect
the ipset structures and ipset hash sets that will be created on the
kernel.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'zebra/zebra_ns.h')
-rw-r--r-- | zebra/zebra_ns.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/zebra_ns.h b/zebra/zebra_ns.h index 66b73148d..c37010105 100644 --- a/zebra/zebra_ns.h +++ b/zebra/zebra_ns.h @@ -73,6 +73,10 @@ struct zebra_ns { struct hash *rules_hash; + struct hash *ipset_hash; + + struct hash *ipset_entry_hash; + /* Back pointer */ struct ns *ns; }; |