summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lapdm.h
blob: 17d920ef34c3c43b43821922c5d38887be51e442 (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
27
28
/* 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__

#include <glib.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 {
    gboolean is_acch;
} lapdm_data_t;

#endif