aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-wkssvc.c
diff options
context:
space:
mode:
authorsharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-29 21:06:27 +0000
committersharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-29 21:06:27 +0000
commitcfe7b742fbdea9ae940501f84d268b7353ae7aed (patch)
treeeaba98e7939c5d76648e24735e4dc75968280a9d /packet-dcerpc-wkssvc.c
parentf5fa555d39c613968d960f37e691672403ab846e (diff)
Confirm a simple theory. Write small VC++ program to call NetWkstaEnumUsers
and watch for the RPC to be sent. Grab RPC OpNum from trace, and increase our knowledge of these RPCs. Next to code up the dissectors, and then on to NetWkstaSetInfo etc. MSDN has lots of info ... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7602 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc-wkssvc.c')
-rw-r--r--packet-dcerpc-wkssvc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/packet-dcerpc-wkssvc.c b/packet-dcerpc-wkssvc.c
index 4bd1481091..ddbb1a5e39 100644
--- a/packet-dcerpc-wkssvc.c
+++ b/packet-dcerpc-wkssvc.c
@@ -3,7 +3,7 @@
* Copyright 2001, Tim Potter <tpot@samba.org>
* Copyright 2003, Richard Sharpe <rsharpe@richardsharpe.com>
*
- * $Id: packet-dcerpc-wkssvc.c,v 1.10 2003/04/27 06:23:16 sharpe Exp $
+ * $Id: packet-dcerpc-wkssvc.c,v 1.11 2003/04/29 21:06:27 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -245,10 +245,12 @@ static int wkssvc_dissect_netrqueryinfo_reply(tvbuff_t *tvb, int offset,
}
static dcerpc_sub_dissector dcerpc_wkssvc_dissectors[] = {
- { WKS_QUERY_INFO, "NetWkstaGetInfo",
+ { WKS_NetWkstaGetInfo, "NetWkstaGetInfo",
wkssvc_dissect_netrqueryinfo_rqst,
wkssvc_dissect_netrqueryinfo_reply},
-
+ { WKS_NetWkstaEnumUsers, "NetWkstaEnumUsers",
+ NULL,
+ NULL},
{0, NULL, NULL, NULL }
};