Add the actual dissector for HyperSCSI.
[metze/wireshark/wip.git] / packet-dcerpc-krb5rpc.c
1 /* packet-dcerpc-krb5rpc.c
2  *
3  * Routines for dcerpc DCE/KRB5 interface
4  * Copyright 2002, Jaime Fournier <jafour1@yahoo.com>
5  * This information is based off the released idl files from opengroup.
6  * ftp://ftp.opengroup.org/pub/dce122/dce/src/security.tar.gz security/idl/krb5rpc.idl
7  *
8  *
9  * $Id: packet-dcerpc-krb5rpc.c,v 1.2 2002/11/08 19:42:39 guy Exp $
10  *
11  * Ethereal - Network traffic analyzer
12  * By Gerald Combs <gerald@ethereal.com>
13  * Copyright 1998 Gerald Combs
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
28  */
29
30 #ifdef HAVE_CONFIG_H
31 #include "config.h"
32 #endif
33
34
35 #ifdef HAVE_SYS_TYPES_H
36 #include <sys/types.h>
37 #endif
38
39 #include <string.h>
40
41 #include <glib.h>
42 #include <epan/packet.h>
43 #include "packet-dcerpc.h"
44
45
46 static int proto_krb5rpc = -1;
47 static int hf_krb5rpc_opnum = -1;
48
49
50 static gint ett_krb5rpc = -1;
51
52
53 static e_uuid_t uuid_krb5rpc = { 0x8f73de50, 0x768c, 0x11ca, { 0xbf, 0xfc, 0x08, 0x00, 0x1e, 0x03, 0x94, 0x31 } };
54 static guint16  ver_krb5rpc = 1;
55
56
57 static dcerpc_sub_dissector krb5rpc_dissectors[] = {
58         { 0, "rsec_krb5rpc_sendto_kdc", NULL, NULL },
59         { 0, NULL, NULL, NULL }
60 };
61
62 static const value_string krb5rpc_opnum_vals[] = {
63         { 0, "rsec_krb5rpc_sendto_kdc" },
64         { 0, NULL }
65 };
66
67 void
68 proto_register_krb5rpc (void)
69 {
70         static hf_register_info hf[] = {
71           { &hf_krb5rpc_opnum,
72             { "Operation", "krb5rpc.opnum", FT_UINT16, BASE_DEC,
73               VALS(krb5rpc_opnum_vals), 0x0, "Operation", HFILL }}
74         };
75
76         static gint *ett[] = {
77                 &ett_krb5rpc,
78         };
79         proto_krb5rpc = proto_register_protocol ("DCE/RPC Kerberos V", "KRB5RPC", "krb5rpc");
80         proto_register_field_array (proto_krb5rpc, hf, array_length (hf));
81         proto_register_subtree_array (ett, array_length (ett));
82 }
83
84 void
85 proto_reg_handoff_krb5rpc (void)
86 {
87         /* Register the protocol as dcerpc */
88         dcerpc_init_uuid (proto_krb5rpc, ett_krb5rpc, &uuid_krb5rpc, ver_krb5rpc, krb5rpc_dissectors, hf_krb5rpc_opnum);
89 }