ws_pipe: don't check for negative number using DWORD.
[metze/wireshark/wip.git] / epan / chdlctypes.h
1 /* chdlctypes.h
2  * Defines Cisco HDLC packet types that aren't just Ethernet types
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10
11 #ifndef __CHDLCTYPES_H__
12 #define __CHDLCTYPES_H__
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif /* __cplusplus */
17
18 #define CHDLCTYPE_FRARP         0x0808  /* Frame Relay ARP */
19 #define CHDLCTYPE_BPDU          0x4242  /* IEEE spanning tree protocol */
20 #define CHDLCTYPE_OSI           0xfefe  /* ISO network-layer protocols */
21
22 #ifdef __cplusplus
23 }
24 #endif /* __cplusplus */
25
26 #endif /* chdlctypes.h */