diff options
author | Jon Loeliger <jdl@netgate.com> | 2019-01-03 17:12:59 -0600 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-01-07 21:30:11 +0000 |
commit | 2500c79423c7d8d35b4e7b8f50060c09f2f857be (patch) | |
tree | ec443acb90a8b5d0a738e84ec2aee393b31513dd /src/plugins/map/map.h | |
parent | ceebc1e71598349ee37b25cd82fe7533760d670a (diff) |
MAP: Prevent duplicate MAP-E/T graph nodes.
Change-Id: I6031f3f9cfa048a901a8424d33d47679115c2eb3
Signed-off-by: Jon Loeliger <jdl@netgate.com>
Diffstat (limited to 'src/plugins/map/map.h')
-rw-r--r-- | src/plugins/map/map.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/map/map.h b/src/plugins/map/map.h index 2169435bc09..22ab7193ab4 100644 --- a/src/plugins/map/map.h +++ b/src/plugins/map/map.h @@ -321,6 +321,10 @@ typedef struct { /* Counters */ u32 ip6_reass_buffered_counter; + /* Graph node state */ + uword *bm_trans_enabled_by_sw_if; + uword *bm_encap_enabled_by_sw_if; + /* Lookup tables */ lpm_t *ip4_prefix_tbl; lpm_t *ip6_prefix_tbl; |