diff options
author | Maria Matejka <mq@ucw.cz> | 2020-02-10 15:01:36 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2021-10-13 19:09:04 +0200 |
commit | ddd89ba12d03d648e9bb820c6a4f48b1f96f15d2 (patch) | |
tree | db2b51f6860d3c7559bc7a4a2742d87d201e222f /nest/route.h | |
parent | e42eedb912428aa9af450b0426e53b0a7004dfb1 (diff) |
BGP: Moved the suppressed and stale flags to pflags
Diffstat (limited to 'nest/route.h')
-rw-r--r-- | nest/route.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/nest/route.h b/nest/route.h index d2c4adef..27ae75ce 100644 --- a/nest/route.h +++ b/nest/route.h @@ -244,12 +244,6 @@ typedef struct rte { byte pflags; /* Protocol-specific flags */ btime lastmod; /* Last modified */ union { /* Protocol-dependent data (metrics etc.) */ -#ifdef CONFIG_BGP - struct { - u8 suppressed; /* Used for deterministic MED comparison */ - s8 stale; /* Route is LLGR_STALE, -1 if unknown */ - } bgp; -#endif } u; } rte; |