aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-smb.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-09-01 01:00:11 +0000
committerEvan Huus <eapache@gmail.com>2013-09-01 01:00:11 +0000
commit7dbc052d782ae6e186262e7db68e2e90b5a3cc9b (patch)
tree9fee92c6698baa398909c4abc553691474ffcea6 /epan/dissectors/packet-smb.h
parent74b205bc84bd77d94be8f5cade866298f493fb0b (diff)
More dissectors to wmem. There are no more dissectors using se_tree now, just a
few other places. svn path=/trunk/; revision=51622
Diffstat (limited to 'epan/dissectors/packet-smb.h')
-rw-r--r--epan/dissectors/packet-smb.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/epan/dissectors/packet-smb.h b/epan/dissectors/packet-smb.h
index a048e92a06..0972c87c37 100644
--- a/epan/dissectors/packet-smb.h
+++ b/epan/dissectors/packet-smb.h
@@ -28,6 +28,8 @@
#include "ws_symbol_export.h"
+#include <epan/wmem/wmem.h>
+
WS_DLL_PUBLIC gboolean sid_name_snooping;
/* SMB command codes, from the SNIA CIFS spec. With MSVC and a
@@ -290,15 +292,15 @@ typedef struct conv_tables {
gboolean raw_ntlmssp; /* Do extended security exc use raw ntlmssp */
/* track fid to fidstruct (filename/openframe/closeframe */
- emem_tree_t *fid_tree;
+ wmem_tree_t *fid_tree;
/* We'll use a GSL list instead */
GSList *GSL_fid_info;
/* track tid to fidstruct (sharename/shareframe/unshareframe */
- emem_tree_t *tid_tree;
+ wmem_tree_t *tid_tree;
/* track uid to username mappings */
- emem_tree_t *uid_tree;
+ wmem_tree_t *uid_tree;
} conv_tables_t;
typedef struct smb_info {