Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-doip.h
1 /* packet-doip.c
2  * DoIP (ISO13400) protocol
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef __PACKET_DOIP_H__
12 #define __PACKET_DOIP_H__
13 
14 typedef struct doip_info {
15  guint16 target_address;
16  guint16 source_address;
17 } doip_info_t;
18 
19 #endif /* __PACKET_DOIP_H__ */
20 
21 /*
22  * Editor modelines - https://www.wireshark.org/tools/modelines.html
23  *
24  * Local variables:
25  * c-basic-offset: 4
26  * tab-width: 8
27  * indent-tabs-mode: nil
28  * End:
29  *
30  * vi: set shiftwidth=4 tabstop=8 expandtab:
31  * :indentSize=4:tabSize=8:noTabs=true:
32  */
Definition: packet-doip.h:14