aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-smb-common.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-08-03 02:28:49 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-08-03 02:28:49 +0000
commit1de64131d4430b129e2217ff2ada2c9553cb0692 (patch)
treef31a0b745dea790a0070678be6db8442ba481cac /epan/dissectors/packet-smb-common.h
parent99991258964ae6f92af9ab389dc5fc9a7b125967 (diff)
Move a bunch of stuff that's more Windows-related than SMB-related to
"packet-windows-common.[ch]". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11592 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-smb-common.h')
-rw-r--r--epan/dissectors/packet-smb-common.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/epan/dissectors/packet-smb-common.h b/epan/dissectors/packet-smb-common.h
index 4b612f0cad..915fe193b0 100644
--- a/epan/dissectors/packet-smb-common.h
+++ b/epan/dissectors/packet-smb-common.h
@@ -36,54 +36,6 @@ const gchar *get_unicode_or_ascii_string(tvbuff_t *tvb, int *offsetp,
gboolean useunicode, int *len, gboolean nopad, gboolean exactlen,
guint16 *bcp);
-int dissect_smb_64bit_time(tvbuff_t *tvb, proto_tree *tree, int offset, int hf_date);
-
-int dissect_nt_sid(tvbuff_t *tvb, int offset, proto_tree *parent_tree,
- char *name, char **sid_str, int hf_sid);
-
-/*
- * Stuff for dissecting NT access masks
- */
-
-typedef void (nt_access_mask_fn_t)(tvbuff_t *tvb, gint offset,
- proto_tree *tree, guint32 access);
-
-/* Map generic access permissions to specific permissions */
-
-struct generic_mapping {
- guint32 generic_read;
- guint32 generic_write;
- guint32 generic_execute;
- guint32 generic_all;
-};
-
-/* Map standard access permissions to specific permissions */
-
-struct standard_mapping {
- guint32 std_read;
- guint32 std_write;
- guint32 std_execute;
- guint32 std_all;
-};
-
-struct access_mask_info {
- char *specific_rights_name;
- nt_access_mask_fn_t *specific_rights_fn;
- struct generic_mapping *generic_mapping;
- struct standard_mapping *standard_mapping;
-};
-
-int
-dissect_nt_access_mask(tvbuff_t *tvb, gint offset, packet_info *pinfo,
- proto_tree *tree, guint8 *drep, int hfindex,
- struct access_mask_info *ami,
- guint32 *perms);
-
-int
-dissect_nt_sec_desc(tvbuff_t *tvb, int offset, packet_info *pinfo,
- proto_tree *parent_tree, guint8 *drep, int len,
- struct access_mask_info *ami);
-
extern const value_string share_type_vals[];
#endif