aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2016-09-19 04:35:49 +0200
committerAnders Broman <a.broman58@gmail.com>2016-09-23 04:27:11 +0000
commit1ec28b4a084112e6ca4971300f17354e8c6cee3c (patch)
tree378fb30791025baa1602dacddc8d53137c357945 /epan/dissectors/packet-dcerpc.h
parent68dbc6431f5b391c05f27641ad5c11c378739648 (diff)
packet-dcerpc: let dissect_dcerpc_cn_auth() always dissect the whole auth_info
As all this information belongs together I'm moving it into a subtree. Change-Id: I839a5a6294360976a78b4b43f219e30381b4f516 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-on: https://code.wireshark.org/review/17878 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-dcerpc.h')
-rw-r--r--epan/dissectors/packet-dcerpc.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/epan/dissectors/packet-dcerpc.h b/epan/dissectors/packet-dcerpc.h
index 480ad28c9e..2b62570ae9 100644
--- a/epan/dissectors/packet-dcerpc.h
+++ b/epan/dissectors/packet-dcerpc.h
@@ -100,12 +100,18 @@ typedef struct _e_dce_dg_common_hdr_t {
guint8 serial_lo;
} e_dce_dg_common_hdr_t;
+struct _dcerpc_auth_subdissector_fns;
+
typedef struct _dcerpc_auth_info {
- guint8 auth_pad_len;
- guint8 auth_level;
guint8 auth_type;
+ guint8 auth_level;
+ guint32 auth_context_id;
+ guint8 auth_pad_len;
guint32 auth_size;
- tvbuff_t *auth_data;
+ struct _dcerpc_auth_subdissector_fns *auth_fns;
+ tvbuff_t *auth_tvb;
+ proto_item *auth_item;
+ proto_tree *auth_tree;
} dcerpc_auth_info;
typedef struct dcerpcstat_tap_data