diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-05-15 14:47:37 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-05-15 14:47:37 +0000 |
commit | 25e54d642cc3e82fba357ef0da029a8fc6cc807c (patch) | |
tree | bbb62cd18763b037d921c6ed155666346318dde8 | |
parent | 75b62a8388d50b0d33ff611d576615653aac0c39 (diff) |
draft-ietf-idr-restart -> RFC 4724 and bump draft-ietf-idr-as4bytes to
version 13.
-rw-r--r-- | usr.sbin/bgpd/session.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/session.c b/usr.sbin/bgpd/session.c index 1f00f61a599..f4adae3a8ff 100644 --- a/usr.sbin/bgpd/session.c +++ b/usr.sbin/bgpd/session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: session.c,v 1.273 2007/04/23 13:04:24 claudio Exp $ */ +/* $OpenBSD: session.c,v 1.274 2007/05/15 14:47:36 claudio Exp $ */ /* * Copyright (c) 2003, 2004, 2005 Henning Brauer <henning@openbsd.org> @@ -1372,7 +1372,7 @@ session_open(struct peer *p) if (p->capa.ann.refresh) /* no data */ errs += session_capa_add(p, opb, CAPA_REFRESH, 0, &optparamlen); - /* End-of-RIB marker, draft-ietf-idr-restart */ + /* End-of-RIB marker, RFC 4724 */ if (p->capa.ann.restart) { /* 4 bytes data */ u_char c[4]; @@ -1382,7 +1382,7 @@ session_open(struct peer *p) errs += buf_add(opb, &c, 4); } - /* 4-bytes AS numbers, draft-ietf-idr-as4bytes-12 */ + /* 4-bytes AS numbers, draft-ietf-idr-as4bytes-13 */ if (p->capa.ann.as4byte) { /* 4 bytes data */ u_int32_t nas; |