wireshark/epan/dissectors/packet-lapdm.h
Alexis La Goutte 3e072f1bc9 lapdm(.h): fix duplicate include guard (found by lgtm.com)
Change-Id: I3cf4d30f5e91b6182c64b7f016e03d63aa1066d0
Reviewed-on: https://code.wireshark.org/review/35829
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2020-01-15 22:17:18 +00:00

27 lines
489 B
C

/* 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