A new type of DCERPC over SMB transport.
[obnox/wireshark/wip.git] / packet-dcerpc-wkssvc.c
1 /* packet-dcerpc-wkssvc.c
2  * Routines for SMB \\PIPE\\wkssvc packet disassembly
3  * Copyright 2001, Tim Potter <tpot@samba.org>
4  *
5  * $Id: packet-dcerpc-wkssvc.c,v 1.2 2002/01/21 07:36:33 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
9  * Copyright 1998 Gerald Combs
10  * 
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  * 
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include <glib.h>
31 #include <epan/packet.h>
32 #include "packet-dcerpc.h"
33 #include "packet-dcerpc-wkssvc.h"
34
35 static int proto_dcerpc_wkssvc = -1;
36 static gint ett_dcerpc_wkssvc = -1;
37
38 static e_uuid_t uuid_dcerpc_wkssvc = {
39         0x6bffd098, 0xa112, 0x3610,
40         { 0x98, 0x33, 0x46, 0xc3, 0xf8, 0x7e, 0x34, 0x5a }
41 };
42
43 static guint16 ver_dcerpc_wkssvc = 1;
44
45 static dcerpc_sub_dissector dcerpc_wkssvc_dissectors[] = {
46         { WKS_QUERY_INFO, "WKS_QUERY_INFO", NULL, NULL },
47
48         {0, NULL, NULL,  NULL },
49 };
50
51 void 
52 proto_register_dcerpc_wkssvc(void)
53 {
54         static gint *ett[] = {
55                 &ett_dcerpc_wkssvc,
56         };
57
58         proto_dcerpc_wkssvc = proto_register_protocol(
59                 "Microsoft Workstation Service", "WKSSVC", "wkssvc");
60
61         proto_register_subtree_array(ett, array_length(ett));
62 }
63
64 void
65 proto_reg_handoff_dcerpc_wkssvc(void)
66 {
67         /* Register protocol as dcerpc */
68
69         dcerpc_init_uuid(proto_dcerpc_wkssvc, ett_dcerpc_wkssvc, 
70                          &uuid_dcerpc_wkssvc, ver_dcerpc_wkssvc, 
71                          dcerpc_wkssvc_dissectors);
72 }