aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lapdm.h
blob: 37ce30fdf5170387f0ffcd94b129a7f45c8ebcbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* packet-lapdm.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_LAPDM_H__
#define __PACKET_LAPDM_H__

/* See GSM TS 04.06 */
enum lapdm_hdr_type {
    LAPDM_HDR_FMT_A,
    LAPDM_HDR_FMT_B,
    LAPDM_HDR_FMT_Bter,
    LAPDM_HDR_FMT_B4,
    LAPDM_HDR_FMT_C,
};

typedef struct _lapdm_data_t {
    enum lapdm_hdr_type hdr_type;
} lapdm_data_t;

#endif