diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-19 17:47:22 -0700 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-19 17:47:22 -0700 | 
| commit | 6e26278cbabccf64de9abf4a764ee71f2c6e9165 (patch) | |
| tree | 557beea0102080862534dd0a41a4afa986a3f128 /lib/nexthop.h | |
| parent | 5e3edbf561e73db47366efcfe743fec4916c2fa2 (diff) | |
zebra: zebra-static-route-nht.patch
Use NHT to support static routes with NH derived from protocols.
Diffstat (limited to 'lib/nexthop.h')
| -rw-r--r-- | lib/nexthop.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/nexthop.h b/lib/nexthop.h index bddac6554f..b3a128a2a8 100644 --- a/lib/nexthop.h +++ b/lib/nexthop.h @@ -63,6 +63,7 @@ struct nexthop  #define NEXTHOP_FLAG_RECURSIVE  (1 << 2) /* Recursive nexthop. */  #define NEXTHOP_FLAG_ONLINK     (1 << 3) /* Nexthop should be installed onlink. */  #define NEXTHOP_FLAG_MATCHED    (1 << 4) /* Already matched vs a nexthop */ +#define NEXTHOP_FLAG_FILTERED   (1 << 5) /* rmap filtered, used by static only */    /* Nexthop address */    union g_addr gate;  | 
