From 2465e8e92db44e3c6ad00b2cd72b2c44c22f1d5f Mon Sep 17 00:00:00 2001 From: Anders Broman Date: Thu, 23 Jun 2011 13:03:37 +0000 Subject: [PATCH] Add a protocol decode. svn path=/trunk/; revision=37764 --- epan/dissectors/packet-juniper.c | 5 +++++ 1 file changed, 5 insertions(+) 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);