blob: b992728734c177d2f3c8b7ac573b826715d2b6a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* packet-link16.h
* Routines for Link 16 message dissection (MIL-STD-6016)
* William Robertson <aliask@gmail.com>
* Peter Ross <peter.ross@dsto.defence.gov.au>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_LINK16_H__
#define __PACKET_LINK16_H__
extern const value_string Link16_NPG_Strings[];
typedef struct {
gint label;
gint sublabel;
gint extension;
} Link16State;
#endif /* __PACKET_LINK16_H__ */
|