Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-adb_service.h
1 /* packet-adb_service.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef __PACKET_ADB_SERVICE_H__
11 #define __PACKET_ADB_SERVICE_H__
12 
13 gint dissect_ascii_uint32(proto_tree *tree, gint hf_hex_ascii, gint ett_hex_ascii,
14  gint hf_value, tvbuff_t *tvb, gint offset, guint32 *value);
15 
16 typedef struct {
17  guint32 session_key_length;
18  guint32 *session_key;
19 
20  const gchar *service;
21  gint direction;
23 
24 #endif /* __PACKET_ADB_SERVICE_H__ */
25 
26 /*
27  * Editor modelines - https://www.wireshark.org/tools/modelines.html
28  *
29  * Local variables:
30  * c-basic-offset: 4
31  * tab-width: 8
32  * indent-tabs-mode: nil
33  * End:
34  *
35  * vi: set shiftwidth=4 tabstop=8 expandtab:
36  * :indentSize=4:tabSize=8:noTabs=true:
37  */
Definition: proto.h:904
Definition: packet-adb_service.h:16
Definition: tvbuff-int.h:35