blob: e69797d6536f3189a9fd7bb0a17f0ee3ae1231e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* packet-tr.h
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_TR_H__
#define __PACKET_TR_H__
#include "ws_symbol_export.h"
typedef struct _tr_hdr {
uint8_t ac;
uint8_t fc;
address dst;
address src;
} tr_hdr;
#endif
|