aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-nt.h
diff options
context:
space:
mode:
authortpot <tpot@f5534014-38df-0310-8fa8-9805f1628bb7>2002-03-26 05:20:51 +0000
committertpot <tpot@f5534014-38df-0310-8fa8-9805f1628bb7>2002-03-26 05:20:51 +0000
commitd3facd3fec1c9bde53c620660f6424d1dfa5ea37 (patch)
treeeddc41cb570dce51b975c8670767d35e7efb277c /packet-dcerpc-nt.h
parentfdb9cd6def281a85d0151289cf310ba203eaede1 (diff)
Use dcerpc_call_value structure to fetch request/response frame numbers
and storage of private data. Fix memory leaks in form dissectors. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5020 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc-nt.h')
-rw-r--r--packet-dcerpc-nt.h30
1 files changed, 4 insertions, 26 deletions
diff --git a/packet-dcerpc-nt.h b/packet-dcerpc-nt.h
index 78ede999ca..240ef613b2 100644
--- a/packet-dcerpc-nt.h
+++ b/packet-dcerpc-nt.h
@@ -2,7 +2,7 @@
* Routines for DCERPC over SMB packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
- * $Id: packet-dcerpc-nt.h,v 1.15 2002/03/25 05:42:01 tpot Exp $
+ * $Id: packet-dcerpc-nt.h,v 1.16 2002/03/26 05:20:51 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -127,31 +127,6 @@ dissect_ndr_nt_SID_AND_ATTRIBUTES(tvbuff_t *tvb, int offset,
char *drep);
/*
- * Request/response matching functions. We also hang private data here.
- */
-
-void
-dcerpc_smb_init(void);
-
-guint32
-dcerpc_smb_fetch_q(dcerpc_info *di, guint16 opnum);
-
-void
-dcerpc_smb_store_q(dcerpc_info *di, guint16 opnum, int frame_num);
-
-guint32
-dcerpc_smb_fetch_r(dcerpc_info *di, guint16 opnum);
-
-void
-dcerpc_smb_store_r(dcerpc_info *di, guint16 opnum, int frame_num);
-
-void
-dcerpc_smb_store_priv(dcerpc_info *di, guint16 opnum, void *data, int len);
-
-void *
-dcerpc_smb_fetch_priv(dcerpc_info *di, guint16 opnum, int *len);
-
-/*
* Policy handle hashing
*/
@@ -168,4 +143,7 @@ void
dcerpc_smb_check_long_frame(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree);
+void
+dcerpc_smb_init(void);
+
#endif /* packet-dcerpc-nt.h */