Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-adb_service.h
1/* packet-adb_service.h
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
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
13int 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);
15
16typedef struct {
17 uint32_t session_key_length;
18 uint32_t *session_key;
19
20 const char *service;
21 int 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:901
Definition packet-adb_service.h:16
Definition tvbuff-int.h:35