From 8ecdb26ec08cc66ade06e3d325fceaae7bed76f2 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Sun, 21 Jan 2018 16:11:50 -0500 Subject: lib, zebra: Rename and place appropriately the label stack Fix and rename the label stack to be better named. Signed-off-by: Donald Sharp --- lib/mpls.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/mpls.h') diff --git a/lib/mpls.h b/lib/mpls.h index bf98eecd81..6ef00375e8 100644 --- a/lib/mpls.h +++ b/lib/mpls.h @@ -81,6 +81,12 @@ typedef unsigned int mpls_lse_t; /* MPLS label value as a 32-bit (mostly we only care about the label value). */ typedef unsigned int mpls_label_t; +struct mpls_label_stack { + uint8_t num_labels; + uint8_t reserved[3]; + mpls_label_t label[0]; /* 1 or more labels */ +}; + /* The MPLS explicit-null label is 0 which means when you memset a mpls_label_t * to zero you have set that variable to explicit-null which was probably not * your intent. The work-around is to use one bit to indicate if the -- cgit v1.2.3