Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-ansi_map-template.h
1 /* packet-ansi_map.h
2  * Routines for ansi_map packet dissection
3  * Copyright 2005, Anders Broman <anders.broman@ericsson.com>
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef PACKET_ANSI_MAP_H
13 #define PACKET_ANSI_MAP_H
14 
15 #include "ws_symbol_export.h"
16 
17 #define ANSI_MAP_MAX_NUM_MESSAGE_TYPES 256
18 
19 typedef struct _ansi_map_tap_rec_t {
20  guint8 message_type;
21  guint16 size;
23 
24 
25 /*
26  * the following allows TAP code access to the messages
27  * without having to duplicate it. With MSVC and a
28  * libwireshark.dll, we need a special declaration.
29  */
30 WS_DLL_PUBLIC const value_string ansi_map_opr_code_strings[];
31 
32 
33 
34 /*#include "packet-ansi_map-exp.h" */
35 
36 #endif /* PACKET_ansi_map_H */
37 
38 
Definition: packet-ansi_map-template.h:19
Definition: value_string.h:24