Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-chdlc.h
blob44b4c7ad63c2145d510d35d3f1657cbcb9fbc7ca
1 /* packet-chdlc.h
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
8 */
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[];
24 void
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,
28 int chdlctype_id);
30 #endif