aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-mapi.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-04 11:08:03 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-04 11:08:03 +0000
commitd7c5f32f0e7487757754a44901da9b39112c13e0 (patch)
treea4d2d6dadf80e0ddb7310c5697bbd8c5a2f3c690 /epan/dissectors/packet-dcerpc-mapi.c
parentd583cf2eaa9aafaa0d58db4321371cee22e8434a (diff)
the unknown stuff in the decrypted blobs in mapi are just uninitialized buffer padding so dont show them in the decode tree
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13582 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-dcerpc-mapi.c')
-rw-r--r--epan/dissectors/packet-dcerpc-mapi.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/epan/dissectors/packet-dcerpc-mapi.c b/epan/dissectors/packet-dcerpc-mapi.c
index d19fbef757..8765704901 100644
--- a/epan/dissectors/packet-dcerpc-mapi.c
+++ b/epan/dissectors/packet-dcerpc-mapi.c
@@ -49,8 +49,6 @@ static int hf_mapi_decrypted_data_offset = -1;
static int hf_mapi_decrypted_data_len = -1;
static int hf_mapi_decrypted_data = -1;
static int hf_mapi_pdu_len = -1;
-static int hf_mapi_pdu_trailer = -1;
-static int hf_mapi_pdu_extra_trailer = -1;
static gint ett_dcerpc_mapi = -1;
static gint ett_mapi_decrypted_pdu = -1;
@@ -166,12 +164,6 @@ mapi_decrypt_pdu(tvbuff_t *tvb, int offset,
/*XXX call dissector here */
proto_tree_add_item(tr, hf_mapi_decrypted_data, decrypted_tvb, 2, pdu_len-2, FALSE);
- proto_tree_add_item(tr, hf_mapi_pdu_trailer, decrypted_tvb, pdu_len, 4, FALSE);
- if(len>((gint)pdu_len+4)){
- proto_tree_add_item(tr, hf_mapi_pdu_extra_trailer, decrypted_tvb, pdu_len+4, len-(pdu_len+4), FALSE);
- }
-
-
offset+=len;
return offset;
@@ -378,13 +370,6 @@ static hf_register_info hf[] = {
{ "Length", "mapi.pdu.len", FT_UINT16, BASE_DEC,
NULL, 0x0, "Size of the command PDU", HFILL }},
- { &hf_mapi_pdu_trailer,
- { "Trailer", "mapi.pdu.trailer", FT_UINT32, BASE_HEX,
- NULL, 0x0, "If you know what this is, contact ethereal developers", HFILL }},
-
- { &hf_mapi_pdu_extra_trailer,
- { "unknown", "mapi.pdu.extra_trailer", FT_BYTES, BASE_HEX,
- NULL, 0x0, "If you know what this is, contact ethereal developers", HFILL }}
};