From Wes Hardaker:
[obnox/wireshark/wip.git] / packet-dcerpc-remact.c
1 /* packet-dcerpc-remact.c
2  * Routines for DCOM Remote Activation
3  * Copyright 2001, Todd Sabin <tas@webspan.net>
4  *
5  * $Id: packet-dcerpc-remact.c,v 1.6 2002/08/02 23:35:48 jmayer 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
31 #include <string.h>
32
33 #include <glib.h>
34 #include <epan/packet.h>
35 #include "packet-dcerpc.h"
36
37
38 static int proto_remact = -1;
39
40 static gint ett_remact = -1;
41
42
43 static e_uuid_t uuid_remact = { 0x4d9f4ab8, 0x7d1c, 0x11cf, { 0x86, 0x1e, 0x00, 0x20, 0xaf, 0x6e, 0x7c, 0x57 } };
44 static guint16  ver_remact = 0;
45
46
47 static dcerpc_sub_dissector remact_dissectors[] = {
48     { 0, "RemoteActivation", NULL, NULL },
49     { 0, NULL, NULL, NULL },
50 };
51
52
53 void
54 proto_register_remact (void)
55 {
56 #if 0
57         static hf_register_info hf[] = {
58         };
59 #endif
60
61         static gint *ett[] = {
62                 &ett_remact
63         };
64         proto_remact = proto_register_protocol ("DCOM Remote Activation", "REMACT", "remact");
65 #if 0
66         proto_register_field_array (proto_remact, hf, array_length (hf));
67 #endif
68         proto_register_subtree_array (ett, array_length (ett));
69 }
70
71 void
72 proto_reg_handoff_remact (void)
73 {
74         /* Register the protocol as dcerpc */
75         dcerpc_init_uuid (proto_remact, ett_remact, &uuid_remact, ver_remact, remact_dissectors, -1);
76 }