aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bgp.c
diff options
context:
space:
mode:
authorJunpei Yoshino <junpei.yoshino@gmail.com>2017-08-05 15:16:44 +0900
committerMichael Mann <mmann78@netscape.net>2017-08-08 01:04:55 +0000
commit956ebf371940bd176ce31b8ce72445ad702a7ccf (patch)
tree9422d14b0ad0e1007c59896ab3f709edb0a47980 /epan/dissectors/packet-bgp.c
parent59e6c628931e041624607dfa67ae876376d23333 (diff)
Support multiple labels with bgp
Passing multiple labels information with BGP has come to be used together with segment routing. Change-Id: Ifd45eb0a875ed4a166e44441955e5e42ce84a7ca Reviewed-on: https://code.wireshark.org/review/22944 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-bgp.c')
-rw-r--r--epan/dissectors/packet-bgp.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/epan/dissectors/packet-bgp.c b/epan/dissectors/packet-bgp.c
index 9506d0cdc9..d6a4966194 100644
--- a/epan/dissectors/packet-bgp.c
+++ b/epan/dissectors/packet-bgp.c
@@ -3140,12 +3140,6 @@ decode_MPLS_stack(tvbuff_t *tvb, gint offset, wmem_strbuf_t *stack_strbuf)
((label_entry & BGP_MPLS_BOTTOM_L_STACK) == 0) ? "," : " (bottom)");
indx += 3 ;
-
- if ((label_entry & BGP_MPLS_BOTTOM_L_STACK) == 0) {
- /* real MPLS multi-label stack in BGP? - maybe later; for now, it must be a bogus packet */
- wmem_strbuf_append(stack_strbuf, " (BOGUS: Bottom of Stack NOT set!)");
- break;
- }
}
return((indx - offset) / 3);