3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
10 #ifndef __PACKET_CHDLC_H__
11 #define __PACKET_CHDLC_H__
14 * See section 4.3.1 of RFC 1547, and
16 * http://www.nethelp.no/net/cisco-hdlc.txt
19 #define CHDLC_ADDR_UNICAST 0x0f
20 #define CHDLC_ADDR_MULTICAST 0x8f
22 extern const value_string chdlc_vals
[];
25 chdlctype(dissector_handle_t sub_dissector
, uint16_t chdlctype
,
26 tvbuff_t
*tvb
, int offset_after_chdlctype
,
27 packet_info
*pinfo
, proto_tree
*tree
, proto_tree
*fh_tree
,