diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-05-15 14:35:31 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-05-15 14:35:31 +0000 |
commit | 75b62a8388d50b0d33ff611d576615653aac0c39 (patch) | |
tree | e5467376233cafddb8d429ae333b044110d10662 | |
parent | 7d95296f228e0b8befa23f15833ca056cfeeec16 (diff) |
Graceful restart is no longer a draft so point it to the right RFC 4724.
Additionally our as4byte support is based on draft-ietf-idr-as4bytes-13.
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index 2afd9cd77ff..1de46da0585 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.216 2007/04/23 13:04:24 claudio Exp $ */ +/* $OpenBSD: bgpd.h,v 1.217 2007/05/15 14:35:30 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -224,8 +224,8 @@ struct capabilities { u_int8_t mp_v4; /* multiprotocol extensions, RFC 4760 */ u_int8_t mp_v6; u_int8_t refresh; /* route refresh, RFC 2918 */ - u_int8_t restart; /* draft-ietf-idr-restart */ - u_int8_t as4byte; + u_int8_t restart; /* graceful restart, RFC 4724 */ + u_int8_t as4byte; /* draft-ietf-idr-as4bytes-13 */ }; struct peer_config { |