summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjob <job@cvs.openbsd.org>2017-07-26 08:19:15 +0000
committerjob <job@cvs.openbsd.org>2017-07-26 08:19:15 +0000
commit4612dae366dc9818d896e4dcb4b66f5ccd2dc66a (patch)
tree945a36187a46b0bd8e482ccadf2915293767c56a
parentdf9a0b4243cae6b9c7dff4b4874110bd7539b0ab (diff)
Update reference to BGP Shutdown Communication specification
ok benno@
-rw-r--r--usr.sbin/bgpd/bgpd.88
-rw-r--r--usr.sbin/tcpdump/print-bgp.c14
2 files changed, 11 insertions, 11 deletions
diff --git a/usr.sbin/bgpd/bgpd.8 b/usr.sbin/bgpd/bgpd.8
index ce7bece5274..0a91a1e26f1 100644
--- a/usr.sbin/bgpd/bgpd.8
+++ b/usr.sbin/bgpd/bgpd.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: bgpd.8,v 1.54 2017/05/31 10:49:10 claudio Exp $
+.\" $OpenBSD: bgpd.8,v 1.55 2017/07/26 08:19:14 job Exp $
.\"
.\" Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: May 31 2017 $
+.Dd $Mdocdate: July 26 2017 $
.Dt BGPD 8
.Os
.Sh NAME
@@ -396,8 +396,8 @@ control socket
.%A J. Snijders
.%A J. Heitz
.%A J. Scudder
-.%D January 2017
-.%R draft-ietf-idr-shutdown
+.%D July 2017
+.%R RFC 8203
.%T BGP Administrative Shutdown Communication
.Re
.Pp
diff --git a/usr.sbin/tcpdump/print-bgp.c b/usr.sbin/tcpdump/print-bgp.c
index ca3915d5333..5b1f866cbca 100644
--- a/usr.sbin/tcpdump/print-bgp.c
+++ b/usr.sbin/tcpdump/print-bgp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: print-bgp.c,v 1.23 2017/05/30 12:52:59 akfaew Exp $ */
+/* $OpenBSD: print-bgp.c,v 1.24 2017/07/26 08:18:28 job Exp $ */
/*
* Copyright (C) 1999 WIDE Project.
@@ -238,7 +238,7 @@ static const char *bgpnotify_minor_fsm[] = {
/* RFC 4486 */
#define BGP_NOTIFY_MINOR_CEASE_MAXPRFX 1
-/* draft-ietf-idr-shutdown-07 */
+/* RFC 8203 */
#define BGP_NOTIFY_MINOR_CEASE_SHUT 2
#define BGP_NOTIFY_MINOR_CEASE_RESET 4
#define BGP_NOTIFY_MINOR_CEASE_ADMIN_SHUTDOWN_LEN 128
@@ -1046,11 +1046,11 @@ bgp_notification_print(const u_char *dat, int length)
}
/*
- * draft-ietf-idr-shutdown describes a method to send a
- * message intended for human consumption regarding the
- * Administrative Shutdown or Reset event. This is called
- * the "Shutdown Communication". The communication is
- * UTF-8 encoded and may be no longer than 128 bytes.
+ * RFC 8203 describes a method to send a message intended
+ * for human consumption regarding the Administrative
+ * Shutdown or Reset event. This is called the "Shutdown
+ * Communication". The communication is UTF-8 encoded
+ * and may be no longer than 128 bytes.
*/
if ((bgpn.bgpn_minor == BGP_NOTIFY_MINOR_CEASE_SHUT ||
bgpn.bgpn_minor == BGP_NOTIFY_MINOR_CEASE_RESET) &&