Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-chdlc.h
1 /* packet-chdlc.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef __PACKET_CHDLC_H__
11 #define __PACKET_CHDLC_H__
12 
13 /*
14  * See section 4.3.1 of RFC 1547, and
15  *
16  * http://www.nethelp.no/net/cisco-hdlc.txt
17  */
18 
19 #define CHDLC_ADDR_UNICAST 0x0f
20 #define CHDLC_ADDR_MULTICAST 0x8f
21 
22 extern const value_string chdlc_vals[];
23 
24 void
25 chdlctype(dissector_handle_t sub_dissector, guint16 chdlctype,
26  tvbuff_t *tvb, int offset_after_chdlctype,
27  packet_info *pinfo, proto_tree *tree, proto_tree *fh_tree,
28  int chdlctype_id);
29 
30 #endif
Definition: packet_info.h:44
Definition: proto.h:904
Definition: value_string.h:26
Definition: packet.c:763
Definition: tvbuff-int.h:35