Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-tr.h
1 /* packet-tr.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_TR_H__
11 #define __PACKET_TR_H__
12 
13 #include "ws_symbol_export.h"
14 
15 typedef struct _tr_hdr {
16  guint8 ac;
17  guint8 fc;
18  address dst;
19  address src;
20 } tr_hdr;
21 
22 #endif
Definition: address.h:56
Definition: packet-tr.h:15