diff options
author | Renato Westphal <renato@openbsd.org> | 2019-01-10 14:21:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-10 14:21:18 +0100 |
commit | 1c4213d8628dcad97880c8a401cb3a82bb77c04b (patch) | |
tree | 47f153144968e45da221760336595ea94698edb0 /bgpd/bgpd.h | |
parent | Merge pull request #3415 from pguibert6WIND/flowspec_support_nh_tracking (diff) | |
parent | bgpd: Add code to reject mac's and to rescan table (diff) | |
download | frr-1c4213d8628dcad97880c8a401cb3a82bb77c04b.tar.xz frr-1c4213d8628dcad97880c8a401cb3a82bb77c04b.zip |
Merge pull request #3198 from donaldsharp/mac_rejection
Mac rejection
Diffstat (limited to 'bgpd/bgpd.h')
-rw-r--r-- | bgpd/bgpd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h index f28ca9fa0..484fc105e 100644 --- a/bgpd/bgpd.h +++ b/bgpd/bgpd.h @@ -122,6 +122,9 @@ struct bgp_master { /* Listener address */ char *address; + /* The Mac table */ + struct hash *self_mac_hash; + /* BGP start time. */ time_t start_time; |