Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-adb_service.h
bloba3317a327bb7e6a25b3a90810d7f23544266d297
1 /* packet-adb_service.h
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
10 #ifndef __PACKET_ADB_SERVICE_H__
11 #define __PACKET_ADB_SERVICE_H__
13 int dissect_ascii_uint32(proto_tree *tree, int hf_hex_ascii, int ett_hex_ascii,
14 int hf_value, tvbuff_t *tvb, int offset, uint32_t *value);
16 typedef struct {
17 uint32_t session_key_length;
18 uint32_t *session_key;
20 const char *service;
21 int direction;
22 } adb_service_data_t;
24 #endif /* __PACKET_ADB_SERVICE_H__ */
27 * Editor modelines - https://www.wireshark.org/tools/modelines.html
29 * Local variables:
30 * c-basic-offset: 4
31 * tab-width: 8
32 * indent-tabs-mode: nil
33 * End:
35 * vi: set shiftwidth=4 tabstop=8 expandtab:
36 * :indentSize=4:tabSize=8:noTabs=true: