blob: 0e42a1f93fcaf3cc047f20ca7e401eb0bd4c4c91 (
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 {
guint8 ac;
guint8 fc;
address dst;
address src;
} tr_hdr;
#endif
|