From: Russ White Date: Tue, 5 Dec 2023 16:00:44 +0000 (-0500) Subject: Merge pull request #12600 from donaldsharp/local_routes X-Git-Tag: base_10.0~220 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=0a79e117d6f99d6123fbf39ec122ff1fa4c4f16d;p=mirror%2Ffrr.git Merge pull request #12600 from donaldsharp/local_routes *: Introduce Local Host Routes to FRR --- 0a79e117d6f99d6123fbf39ec122ff1fa4c4f16d diff --cc zebra/connected.c index 9a41400f4e,78aca5ee5c..297234b6af --- a/zebra/connected.c +++ b/zebra/connected.c @@@ -190,7 -192,9 +190,8 @@@ void connected_up(struct interface *ifp uint32_t metric; uint32_t flags = 0; uint32_t count = 0; - struct listnode *cnode; struct connected *c; + bool install_local = true; zvrf = ifp->vrf->info; if (!zvrf) { @@@ -373,7 -394,9 +391,8 @@@ void connected_down(struct interface *i }; struct zebra_vrf *zvrf; uint32_t count = 0; - struct listnode *cnode; struct connected *c; + bool remove_local = true; zvrf = ifp->vrf->info; if (!zvrf) {