aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUri Simchoni <urisimchoni@gmail.com>2016-09-01 23:52:36 +0300
committerAnders Broman <a.broman58@gmail.com>2016-09-02 06:05:27 +0000
commitaa2471dfd5fff5997ec0ebb7d69dd380f28d3d83 (patch)
treeca4c693b903e878e32ab311d74d6ceeb4ef0839f
parent416bd9a108cef32c870d1731efb82cfffa0760b8 (diff)
SMB: make dissect_nt_user_quota public
To be usable by SMB2 dissector Change-Id: I7f5b9a021951c2529f8058cd2fc160eff2e865c6 Signed-off-by: Uri Simchoni <urisimchoni@gmail.com> Reviewed-on: https://code.wireshark.org/review/17441 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-smb.c2
-rw-r--r--epan/dissectors/packet-smb.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-smb.c b/epan/dissectors/packet-smb.c
index 561df79dd7..076992cfc9 100644
--- a/epan/dissectors/packet-smb.c
+++ b/epan/dissectors/packet-smb.c
@@ -8258,7 +8258,7 @@ dissect_security_information_mask(tvbuff_t *tvb, proto_tree *parent_tree, int of
return offset;
}
-static int
+int
dissect_nt_user_quota(tvbuff_t *tvb, proto_tree *tree, int offset, guint16 *bcp)
{
int old_offset, old_sid_offset;
diff --git a/epan/dissectors/packet-smb.h b/epan/dissectors/packet-smb.h
index cefda1cb28..146065503c 100644
--- a/epan/dissectors/packet-smb.h
+++ b/epan/dissectors/packet-smb.h
@@ -362,6 +362,7 @@ extern int dissect_qfsi_FS_SIZE_INFO(tvbuff_t * tvb, packet_info * pinfo, proto_
extern int dissect_qfsi_FS_DEVICE_INFO(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, int offset, guint16 *bcp);
extern int dissect_qfsi_FS_ATTRIBUTE_INFO(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, int offset, guint16 *bcp, int unicode);
extern int dissect_nt_quota(tvbuff_t *tvb, proto_tree *tree, int offset, guint16 *bcp);
+extern int dissect_nt_user_quota(tvbuff_t *tvb, proto_tree *tree, int offset, guint16 *bcp);
extern int dissect_qfsi_FS_OBJECTID_INFO(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, int offset, guint16 *bcp);
extern int dissect_qfsi_FS_FULL_SIZE_INFO(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, int offset, guint16 *bcp);
extern int dissect_qfi_SMB_FILE_EA_INFO(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int offset, guint16 *bcp, gboolean *trunc);