diff options
author | Richard Sharpe <sharpe@ns.aus.com> | 2003-04-29 21:06:27 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@ns.aus.com> | 2003-04-29 21:06:27 +0000 |
commit | 925a9396fb9fb84ad449236e5ab5e29268a108e7 (patch) | |
tree | eaba98e7939c5d76648e24735e4dc75968280a9d /packet-dcerpc-wkssvc.h | |
parent | daeac95d4aca8fc28e30d033b35b0131a680fe4c (diff) | |
download | wireshark-925a9396fb9fb84ad449236e5ab5e29268a108e7.tar.gz wireshark-925a9396fb9fb84ad449236e5ab5e29268a108e7.tar.bz2 wireshark-925a9396fb9fb84ad449236e5ab5e29268a108e7.zip |
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 ...
svn path=/trunk/; revision=7602
Diffstat (limited to 'packet-dcerpc-wkssvc.h')
-rw-r--r-- | packet-dcerpc-wkssvc.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packet-dcerpc-wkssvc.h b/packet-dcerpc-wkssvc.h index b97c590112..1a86e14102 100644 --- a/packet-dcerpc-wkssvc.h +++ b/packet-dcerpc-wkssvc.h @@ -1,8 +1,9 @@ /* packet-dcerpc-wkssvc.h * Routines for SMB \PIPE\wkssvc packet disassembly * Copyright 2001, Tim Potter <tpot@samba.org> + * Copyright 2002, Richard Sharpe <rsharpe@richardsharpe.org> * - * $Id: packet-dcerpc-wkssvc.h,v 1.4 2002/08/28 21:00:12 jmayer Exp $ + * $Id: packet-dcerpc-wkssvc.h,v 1.5 2003/04/29 21:06:27 sharpe Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -28,6 +29,6 @@ /* Functions available on the WKSSVC pipe. From Samba, include/rpc_wkssvc.h */ -#define WKS_QUERY_INFO 0x00 - +#define WKS_NetWkstaGetInfo 0x00 +#define WKS_NetWkstaEnumUsers 0x02 #endif /* packet-dcerpc-wkssvc.h */ |