summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDenis Ovsienko <infrastation@yandex.ru>2011-07-17 19:33:21 +0400
committerDenis Ovsienko <infrastation@yandex.ru>2011-07-17 19:33:21 +0400
commitfdc38db248a220dcb80ec0ba1f1981087213651d (patch)
tree8b75aacb6638bdef8c18a75de85904056194d8fd /lib
parent4a1342a56c6fdb90d9af3109afa9442ff0b850d6 (diff)
bgpd: rename SAFI 3 according to RFC4760
- SAFI value 3 is reserved. It was assigned by RFC 2858 for a use that was never fully implemented, so it is deprecated by this document. * zebra.h: rename macro * bgp_fsm.c: (bgp_graceful_restart_timer_expire, bgp_graceful_stale_timer_expire, bgp_stop, bgp_establish): update * bgpd.c: (peer_nsf_stop): update * bgp_open.c: (bgp_capability_vty_out): SAFI 3 isn't a recognized case any more
Diffstat (limited to 'lib')
-rw-r--r--lib/zebra.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zebra.h b/lib/zebra.h
index 2dc84514..6d19910c 100644
--- a/lib/zebra.h
+++ b/lib/zebra.h
@@ -504,7 +504,7 @@ extern const char *zserv_command_string (unsigned int command);
/* Subsequent Address Family Identifier. */
#define SAFI_UNICAST 1
#define SAFI_MULTICAST 2
-#define SAFI_UNICAST_MULTICAST 3
+#define SAFI_RESERVED_3 3
#define SAFI_MPLS_VPN 4
#define SAFI_MAX 5