1 /* packet-dcerpc-tkn4int.c
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
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <gerald@wireshark.org>
10 * Copyright 1998 Gerald Combs
12 * SPDX-License-Identifier: GPL-2.0-or-later
18 #include <epan/packet.h>
19 #include "packet-dcerpc.h"
21 void proto_register_tkn4int (void);
22 void proto_reg_handoff_tkn4int (void);
24 static int proto_tkn4int
;
25 static int hf_tkn4int_opnum
;
28 static int ett_tkn4int
;
31 static e_guid_t uuid_tkn4int
= { 0x4d37f2dd, 0xed96, 0x0000, { 0x02, 0xc0, 0x37, 0xcf, 0x1e, 0x00, 0x00, 0x00 } };
32 static uint16_t ver_tkn4int
= 4;
35 static const 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
}
50 proto_register_tkn4int (void)
52 static hf_register_info hf
[] = {
54 { "Operation", "tkn4int.opnum", FT_UINT16
, BASE_DEC
,
55 NULL
, 0x0, NULL
, HFILL
}}
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
));
67 proto_reg_handoff_tkn4int (void)
69 /* Register the protocol as dcerpc */
70 dcerpc_init_uuid (proto_tkn4int
, ett_tkn4int
, &uuid_tkn4int
, ver_tkn4int
, tkn4int_dissectors
, hf_tkn4int_opnum
);
74 * Editor modelines - https://www.wireshark.org/tools/modelines.html
82 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
83 * :indentSize=8:tabSize=8:noTabs=false: