From Thomas Anders:
[obnox/wireshark/wip.git] / packet-dcerpc-llb.c
1 /* packet-dcerpc-llb.c
2  *
3  * Routines for llb dissection
4  * Copyright 2004, Jaime Fournier <jaime.fournier@hush.com>
5  * This information is based off the released idl files from opengroup.
6  * ftp://ftp.opengroup.org/pub/dce122/dce/src/admin.tar.gz ./admin/dced/idl/llb.idl
7  *      
8  * $Id: packet-dcerpc-llb.c,v 1.1 2004/02/10 23:38:34 guy Exp $
9  *
10  * Ethereal - Network traffic analyzer
11  * By Gerald Combs <gerald@ethereal.com>
12  * Copyright 1998 Gerald Combs
13  *
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27  */
28
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33
34 #ifdef HAVE_SYS_TYPES_H
35 #include <sys/types.h>
36 #endif
37
38 #include <string.h>
39
40 #include <glib.h>
41 #include <epan/packet.h>
42 #include "packet-dcerpc.h"
43 #include "packet-dcerpc-dce122.h"
44
45
46 static int proto_llb = -1;
47 static int hf_llb_opnum = -1;
48
49 static gint ett_llb = -1;
50
51
52 static e_uuid_t uuid_llb =
53   { 0x333b33c3, 0x0000, 0x0000, {0x0d, 0x00, 0x00, 0x87, 0x84, 0x00, 0x00,
54                                  0x00} };
55 static guint16 ver_llb = 4;
56
57
58 static dcerpc_sub_dissector llb_dissectors[] = {
59   {0, "insert", NULL, NULL},
60   {1, "delete", NULL, NULL},
61   {2, "lookup", NULL, NULL},
62   {0, NULL, NULL, NULL}
63 };
64
65 void
66 proto_register_llb (void)
67 {
68   static hf_register_info hf[] = {
69     {&hf_llb_opnum,
70      {"Operation", "llb.opnum", FT_UINT16, BASE_DEC, NULL, 0x0, "Operation",
71       HFILL}},
72   };
73
74   static gint *ett[] = {
75     &ett_llb,
76   };
77   proto_llb =
78     proto_register_protocol ("DCE/RPC NCS 1.5.1 Local Location Broker", "llb",
79                              "llb");
80   proto_register_field_array (proto_llb, hf, array_length (hf));
81   proto_register_subtree_array (ett, array_length (ett));
82 }
83
84 void
85 proto_reg_handoff_llb (void)
86 {
87   /* Register the protocol as dcerpc */
88   dcerpc_init_uuid (proto_llb, ett_llb, &uuid_llb, ver_llb, llb_dissectors,
89                     hf_llb_opnum);
90 }