checkAPIs.pl: support for new-style dissectors in check_hf_entries
[metze/wireshark/wip.git] / epan / dissectors / packet-dcerpc-tkn4int.c
1 /* packet-dcerpc-tkn4int.c
2  *
3  * Routines for DCE DFS Token Server Calls
4  * Copyright 2002, 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/file.tar.gz file/fsint/tkn4int.idl
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * SPDX-License-Identifier: GPL-2.0-or-later
13  */
14
15 #include "config.h"
16
17
18 #include <epan/packet.h>
19 #include "packet-dcerpc.h"
20
21 void proto_register_tkn4int (void);
22 void proto_reg_handoff_tkn4int (void);
23
24 static int proto_tkn4int = -1;
25 static int hf_tkn4int_opnum = -1;
26
27
28 static gint ett_tkn4int = -1;
29
30
31 static e_guid_t uuid_tkn4int = { 0x4d37f2dd, 0xed96, 0x0000, { 0x02, 0xc0, 0x37, 0xcf, 0x1e, 0x00, 0x00, 0x00 } };
32 static guint16  ver_tkn4int = 4;
33
34
35 static dcerpc_sub_dissector tkn4int_dissectors[] = {
36         { 0, "Probe",               NULL, NULL},
37         { 1, "InitTokenState",      NULL, NULL},
38         { 2, "TokenRevoke",         NULL, NULL},
39         { 3, "GetCellName",         NULL, NULL},
40         { 4, "GetLock",             NULL, NULL},
41         { 5, "GetCE",               NULL, NULL},
42         { 6, "GetServerInterfaces", NULL, NULL},
43         { 7, "SetParams",           NULL, NULL},
44         { 8, "AsyncGrant",          NULL, NULL},
45         { 0, NULL, NULL, NULL }
46
47 };
48
49 void
50 proto_register_tkn4int (void)
51 {
52         static hf_register_info hf[] = {
53           { &hf_tkn4int_opnum,
54             { "Operation", "tkn4int.opnum", FT_UINT16, BASE_DEC,
55               NULL, 0x0, NULL, HFILL }}
56         };
57
58         static gint *ett[] = {
59                 &ett_tkn4int,
60         };
61         proto_tkn4int = proto_register_protocol ("DCE DFS Token Server", "TKN4Int", "tkn4int");
62         proto_register_field_array (proto_tkn4int, hf, array_length (hf));
63         proto_register_subtree_array (ett, array_length (ett));
64 }
65
66 void
67 proto_reg_handoff_tkn4int (void)
68 {
69         /* Register the protocol as dcerpc */
70         dcerpc_init_uuid (proto_tkn4int, ett_tkn4int, &uuid_tkn4int, ver_tkn4int, tkn4int_dissectors, hf_tkn4int_opnum);
71 }
72
73 /*
74  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
75  *
76  * Local variables:
77  * c-basic-offset: 8
78  * tab-width: 8
79  * indent-tabs-mode: t
80  * End:
81  *
82  * vi: set shiftwidth=8 tabstop=8 noexpandtab:
83  * :indentSize=8:tabSize=8:noTabs=false:
84  */