diff options
author | Maria Matejka <mq@ucw.cz> | 2023-09-27 12:51:55 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2023-09-27 20:18:46 +0200 |
commit | 8ad9c4bb339172d445d1346876b2c9f3c27199c1 (patch) | |
tree | 680654b1b25895b89ec685496bebeb44cbe2f703 /proto/bgp/bgp.h | |
parent | a4adb09f5a5c3806488fb121eafc0e6c969135e7 (diff) |
BGP config: Splitting Route Refresh and Enhanced Route Refresh
Both toggles are on by default but if some implementation needs one or
another to be switched off separately, then it's possible now.
Diffstat (limited to 'proto/bgp/bgp.h')
-rw-r--r-- | proto/bgp/bgp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proto/bgp/bgp.h b/proto/bgp/bgp.h index c11433ec..1ba3de5e 100644 --- a/proto/bgp/bgp.h +++ b/proto/bgp/bgp.h @@ -96,6 +96,7 @@ struct bgp_config { u32 default_med; /* Default value for MULTI_EXIT_DISC attribute */ int capabilities; /* Enable capability handshake [RFC 5492] */ int enable_refresh; /* Enable local support for route refresh [RFC 2918] */ + int enable_enhanced_refresh; /* Enable local support for enhanced route refresh [RFC 7313] */ int enable_as4; /* Enable local support for 4B AS numbers [RFC 6793] */ int enable_extended_messages; /* Enable local support for extended messages [RFC 8654] */ int enable_hostname; /* Enable local support for hostname [draft] */ |