diff options
author | Renato Westphal <renato@cvs.openbsd.org> | 2016-06-13 23:01:38 +0000 |
---|---|---|
committer | Renato Westphal <renato@cvs.openbsd.org> | 2016-06-13 23:01:38 +0000 |
commit | af679c1db978876131a39dc7e81e16cda681d46e (patch) | |
tree | 955c4d022b423e871583d11f019ca1b9e92fc302 /usr.sbin/ldpd/ldpd.h | |
parent | 4f19f299b2a7a17778e0c21facd68eac7bab5071 (diff) |
Implement support for the Configuration Sequence Number TLV.
The Configuration Sequence Number optional TLV is documented in RFC 5036,
pages 53 and 54.
Fixes IxANVL LDP test 23.10.
Diffstat (limited to 'usr.sbin/ldpd/ldpd.h')
-rw-r--r-- | usr.sbin/ldpd/ldpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ldpd/ldpd.h b/usr.sbin/ldpd/ldpd.h index b02eab3c013..3c59cc19783 100644 --- a/usr.sbin/ldpd/ldpd.h +++ b/usr.sbin/ldpd/ldpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ldpd.h,v 1.76 2016/05/23 19:20:55 renato Exp $ */ +/* $OpenBSD: ldpd.h,v 1.77 2016/06/13 23:01:37 renato Exp $ */ /* * Copyright (c) 2013, 2016 Renato Westphal <renato@openbsd.org> @@ -396,6 +396,7 @@ struct ldpd_global { time_t uptime; struct ldpd_af_global ipv4; struct ldpd_af_global ipv6; + uint32_t conf_seqnum; int pfkeysock; struct if_addr_head addr_list; LIST_HEAD(, adj) adj_list; |