summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-dcerpc.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-03-10 08:50:18 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-03-10 08:50:18 +0000
commit0180d280fe208de98fa5a18c9429b7374569852e (patch)
tree97c2e0a2243ac57c96e25c1a88d428e5bbf9fc34 /epan/dissectors/packet-dcerpc.h
parent420323a21242b740e27b544a9ef6cd2e6a5e7086 (diff)
downloadwireshark-0180d280fe208de98fa5a18c9429b7374569852e.tar.gz
change the signature for the functions to decrypt data for the
dcerpc_auth_subdissector_fns structure. the SignAndSeal decryption (which works really well) needs this. svn path=/trunk/; revision=13688
Diffstat (limited to 'epan/dissectors/packet-dcerpc.h')
-rw-r--r--epan/dissectors/packet-dcerpc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dcerpc.h b/epan/dissectors/packet-dcerpc.h
index 1e4e8427e6..1d1247cd28 100644
--- a/epan/dissectors/packet-dcerpc.h
+++ b/epan/dissectors/packet-dcerpc.h
@@ -304,7 +304,9 @@ typedef struct _dcerpc_uuid_value {
/* Authenticated pipe registration functions and miscellanea */
-typedef tvbuff_t *(dcerpc_decode_data_fnct_t)(tvbuff_t *tvb, int offset,
+typedef tvbuff_t *(dcerpc_decode_data_fnct_t)(tvbuff_t *data_tvb,
+ tvbuff_t *auth_tvb,
+ int offset,
packet_info *pinfo,
dcerpc_auth_info *auth_info);