diff options
author | Renato Westphal <renato@cvs.openbsd.org> | 2017-03-04 00:09:18 +0000 |
---|---|---|
committer | Renato Westphal <renato@cvs.openbsd.org> | 2017-03-04 00:09:18 +0000 |
commit | 673858d7cbde7753b9b66bba0571c831e6415e8a (patch) | |
tree | 139f6c6abe7f02c389b26cffe28aaaa6cf53e41b /usr.sbin/ldpd/lde.h | |
parent | 512924baf176079550a3e543d949bc8ab73cf778 (diff) |
Implement RFC 5918 (Typed Wildcard FEC).
Diffstat (limited to 'usr.sbin/ldpd/lde.h')
-rw-r--r-- | usr.sbin/ldpd/lde.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/ldpd/lde.h b/usr.sbin/ldpd/lde.h index d47e13b4d76..30c4cb658fa 100644 --- a/usr.sbin/ldpd/lde.h +++ b/usr.sbin/ldpd/lde.h @@ -1,4 +1,4 @@ -/* $OpenBSD: lde.h,v 1.46 2017/03/04 00:03:04 renato Exp $ */ +/* $OpenBSD: lde.h,v 1.47 2017/03/04 00:09:17 renato Exp $ */ /* * Copyright (c) 2013, 2016 Renato Westphal <renato@openbsd.org> @@ -136,6 +136,8 @@ void lde_send_labelmapping(struct lde_nbr *, struct fec_node *, void lde_send_labelwithdraw(struct lde_nbr *, struct fec_node *, struct map *, struct status_tlv *); void lde_send_labelwithdraw_wcard(struct lde_nbr *, uint32_t); +void lde_send_labelwithdraw_twcard_prefix(struct lde_nbr *, + uint16_t, uint32_t); void lde_send_labelwithdraw_pwid_wcard(struct lde_nbr *, uint16_t, uint32_t); void lde_send_labelrelease(struct lde_nbr *, struct fec_node *, @@ -172,6 +174,7 @@ void lde_kernel_remove(struct fec *, int, union ldpd_addr *, uint8_t); void lde_check_mapping(struct map *, struct lde_nbr *); void lde_check_request(struct map *, struct lde_nbr *); +void lde_check_request_wcard(struct map *, struct lde_nbr *); void lde_check_release(struct map *, struct lde_nbr *); void lde_check_release_wcard(struct map *, struct lde_nbr *); void lde_check_withdraw(struct map *, struct lde_nbr *); |