Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-chdlc.h
1/* packet-chdlc.h
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
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
22extern const value_string chdlc_vals[];
23
24void
25chdlctype(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);
29
30#endif
Definition packet_info.h:43
Definition proto.h:901
Definition value_string.h:25
Definition packet.c:763
Definition tvbuff-int.h:35