Add a protocol decode.

svn path=/trunk/; revision=37764
This commit is contained in:
Anders Broman 2011-06-23 13:03:37 +00:00
parent b3d0f00015
commit 2465e8e92d
1 changed files with 5 additions and 0 deletions

View File

@ -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);