From a64448baa6150a7431d55e0e65d0b51d62c4b5be Mon Sep 17 00:00:00 2001 From: Don Slice Date: Thu, 2 Feb 2017 12:58:33 -0500 Subject: zebra: labeled unicast handling Support install of labeled-unicast routes by a client. This would be BGP, in order to install routes corresponding to AFI/SAFI 1/4 (IPv4) or 2/4 (IPv6). Convert labeled-unicast routes into label forwarding entries (i.e., transit LSPs) when there is a static label binding. Signed-off-by: Don Slice --- lib/mpls.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/mpls.h') diff --git a/lib/mpls.h b/lib/mpls.h index 13a46e1012..5a91883753 100644 --- a/lib/mpls.h +++ b/lib/mpls.h @@ -85,7 +85,8 @@ enum lsp_types_t { ZEBRA_LSP_NONE = 0, /* No LSP. */ ZEBRA_LSP_STATIC = 1, /* Static LSP. */ - ZEBRA_LSP_LDP = 2 /* LDP LSP. */ + ZEBRA_LSP_LDP = 2, /* LDP LSP. */ + ZEBRA_LSP_BGP = 3 /* BGP LSP. */ }; /* Functions for basic label operations. */ -- cgit v1.2.3