aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-06-23 13:03:37 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-06-23 13:03:37 +0000
commit2465e8e92db44e3c6ad00b2cd72b2c44c22f1d5f (patch)
tree63e7459d3a206d80a009799dc7f0412d814c512e
parentb3d0f00015f9e10bc2a4f079065db0e9c58d5274 (diff)
Add a protocol decode.
svn path=/trunk/; revision=37764
-rw-r--r--epan/dissectors/packet-juniper.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/dissectors/packet-juniper.c b/epan/dissectors/packet-juniper.c
index 567a9f3313..57872de789 100644
--- a/epan/dissectors/packet-juniper.c
+++ b/epan/dissectors/packet-juniper.c
@@ -674,6 +674,11 @@ dissect_juniper_payload_proto(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tre
case PROTO_CHDLC:
call_dissector(chdlc_handle, next_tvb, pinfo, tree);
break;
+ case 0xa248:
+ proto_tree_add_text (juniper_subtree, tvb, offset, 4,"[Unknown data]");
+ next_tvb = tvb_new_subset_remaining(tvb, offset+4);
+ call_dissector(ipv4_handle, next_tvb, pinfo, tree);
+ break;
case PROTO_OAM: /* FIXME call OAM disector without leading HEC byte */
default:
call_dissector(data_handle, next_tvb, pinfo, tree);