diff options
author | Renato Westphal <renato@cvs.openbsd.org> | 2017-03-04 00:15:36 +0000 |
---|---|---|
committer | Renato Westphal <renato@cvs.openbsd.org> | 2017-03-04 00:15:36 +0000 |
commit | 72beaa9cac8bdc9b7c6e7477aac41b109241ca8e (patch) | |
tree | 842bdc535bdba7d15d4f5b72a37108c447e7249a /usr.sbin/ldpd/logmsg.c | |
parent | 0912c01ade1880e8a02f8c81ab21d922fede2fed (diff) |
Implement RFC 5919 (LDP End-of-LIB).
Diffstat (limited to 'usr.sbin/ldpd/logmsg.c')
-rw-r--r-- | usr.sbin/ldpd/logmsg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/ldpd/logmsg.c b/usr.sbin/ldpd/logmsg.c index 539d875993c..b8a75369726 100644 --- a/usr.sbin/ldpd/logmsg.c +++ b/usr.sbin/ldpd/logmsg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: logmsg.c,v 1.5 2017/03/04 00:12:26 renato Exp $ */ +/* $OpenBSD: logmsg.c,v 1.6 2017/03/04 00:15:35 renato Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -423,6 +423,8 @@ status_code_name(uint32_t status) return ("Label Withdraw PW Status Method"); case S_UNSSUPORTDCAP: return ("Unsupported Capability"); + case S_ENDOFLIB: + return ("End-of-LIB"); case S_TRANS_MISMTCH: return ("Transport Connection Mismatch"); case S_DS_NONCMPLNCE: |