summaryrefslogtreecommitdiff
path: root/zebra/interface.h
diff options
context:
space:
mode:
authorLou Berger <lberger@labn.net>2018-04-10 11:57:13 -0400
committerGitHub <noreply@github.com>2018-04-10 11:57:13 -0400
commitebf58e2e481e3be7d9649b9923a8dc2f015a4b11 (patch)
tree7ade500ad3876b2cf6993faba792be45fbed66ac /zebra/interface.h
parentaa2fc55b2096ee9704ddb74f200672ae999d9ab9 (diff)
parent20089ae2e41621e3e63aab67170d71bdf8605641 (diff)
Merge pull request #2009 from donaldsharp/self_originate
zebra: Notice when our route is deleted and re-install.
Diffstat (limited to 'zebra/interface.h')
-rw-r--r--zebra/interface.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/zebra/interface.h b/zebra/interface.h
index fba3201c5c..9634bfdb3f 100644
--- a/zebra/interface.h
+++ b/zebra/interface.h
@@ -272,6 +272,13 @@ struct zebra_if {
struct interface *link;
struct thread *speed_update;
+
+ /*
+ * Does this interface have a v6 to v4 ll neighbor entry
+ * for bgp unnumbered?
+ */
+ bool v6_2_v4_ll_neigh_entry;
+ struct in6_addr v6_2_v4_ll_addr6;
};
DECLARE_HOOK(zebra_if_extra_info, (struct vty * vty, struct interface *ifp),