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