aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-common.c
diff options
context:
space:
mode:
authorsharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-27 04:11:06 +0000
committersharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-27 04:11:06 +0000
commit7fa2784d7db4f61d383e8ff3ac106c9fa3173520 (patch)
tree0ef9dbae7ce1b7e394e143c055d94cb99585d347 /packet-smb-common.c
parentc1cdd0c2b13ef7d7d272ec5756068d764320d336 (diff)
Account for hidden share types in share_types.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5572 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-smb-common.c')
-rw-r--r--packet-smb-common.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/packet-smb-common.c b/packet-smb-common.c
index c75237af93..e7b0fb0c0c 100644
--- a/packet-smb-common.c
+++ b/packet-smb-common.c
@@ -2,7 +2,7 @@
* Common routines for smb packet dissection
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
- * $Id: packet-smb-common.c,v 1.10 2002/05/24 10:57:38 guy Exp $
+ * $Id: packet-smb-common.c,v 1.11 2002/05/27 04:11:06 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -35,6 +35,10 @@ const value_string share_type_vals[] = {
{1, "Printer queue"},
{2, "Communications device"},
{3, "IPC"},
+ {0x80000000, "Hidden Directory tree"},
+ {0x80000001, "Hidden Printer queue"},
+ {0x80000002, "Hidden Communications device"},
+ {0x80000003, "Hidden IPC"},
{0, NULL}
};