Lines Matching refs:label_entry
71 u_int32_t label_entry; in mpls_print() local
78 TCHECK2(*p, sizeof(label_entry)); in mpls_print()
79 label_entry = EXTRACT_32BITS(p); in mpls_print()
82 MPLS_LABEL(label_entry)); in mpls_print()
85 MPLS_LABEL(label_entry) < sizeof(mpls_labelname) / sizeof(mpls_labelname[0])) in mpls_print()
86 printf(" (%s)", mpls_labelname[MPLS_LABEL(label_entry)]); in mpls_print()
87 printf(", exp %u", MPLS_EXP(label_entry)); in mpls_print()
88 if (MPLS_STACK(label_entry)) in mpls_print()
90 printf(", ttl %u)", MPLS_TTL(label_entry)); in mpls_print()
92 p += sizeof(label_entry); in mpls_print()
93 } while (!MPLS_STACK(label_entry)); in mpls_print()
98 switch (MPLS_LABEL(label_entry)) { in mpls_print()