diff options
| author | Russ White <russ@riw.us> | 2023-12-05 11:00:44 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-05 11:00:44 -0500 |
| commit | 0a79e117d6f99d6123fbf39ec122ff1fa4c4f16d (patch) | |
| tree | c8afc10679e14fcc93769090fd4f9c41f0a97fdf /zebra/zebra_rnh.c | |
| parent | 270c6c84b10a2fefe3b0a87429049bfa7d706bee (diff) | |
| parent | d4aa24ba7df066ee8a9f4bab5c1b4e9ff8474392 (diff) | |
Merge pull request #12600 from donaldsharp/local_routes
*: Introduce Local Host Routes to FRR
Diffstat (limited to 'zebra/zebra_rnh.c')
| -rw-r--r-- | zebra/zebra_rnh.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/zebra/zebra_rnh.c b/zebra/zebra_rnh.c index aeb7ae35b6..b387e9949b 100644 --- a/zebra/zebra_rnh.c +++ b/zebra/zebra_rnh.c @@ -513,10 +513,14 @@ static bool rnh_check_re_nexthops(const struct route_entry *re, goto done; } - /* Some special checks if registration asked for them. */ + /* + * Some special checks if registration asked for them. + * LOCAL routes are by their definition not CONNECTED + * and as such should not be considered here + */ if (CHECK_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED)) { - if ((re->type == ZEBRA_ROUTE_CONNECT) - || (re->type == ZEBRA_ROUTE_STATIC)) + if ((re->type == ZEBRA_ROUTE_CONNECT) || + (re->type == ZEBRA_ROUTE_STATIC)) ret = true; if (re->type == ZEBRA_ROUTE_NHRP) { |
