Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
decoders.h
1/* decoders.h
2 * Header file for the TRANSUM response time analyzer post-dissector
3 * By Paul Offord <[email protected]>
4 * Copyright 2016 Advance Seven Limited
5 *
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <[email protected]>
8 * Copyright 1998 Gerald Combs
9 *
10 * SPDX-License-Identifier: GPL-2.0-or-later
11 */
12
21int decode_syn(packet_info *pinfo, proto_tree *tree, PKT_INFO* pkt_info);
22
31int decode_dcerpc(packet_info *pinfo, proto_tree *tree, PKT_INFO* pkt_info);
32
42int decode_smb(packet_info *pinfo, proto_tree *tree, PKT_INFO* pkt_info, PKT_INFO* subpackets);
43
52int decode_gtcp(packet_info *pinfo, proto_tree *tree, PKT_INFO* pkt_info);
53
62int decode_dns(packet_info *pinfo, proto_tree *tree, PKT_INFO* pkt_info);
63
75int decode_gudp(packet_info *pinfo, proto_tree *tree, PKT_INFO* pkt_info);
76
77/*
78 * Editor modelines - https://www.wireshark.org/tools/modelines.html
79 *
80 * Local variables:
81 * c-basic-offset: 4
82 * tab-width: 8
83 * indent-tabs-mode: nil
84 * End:
85 *
86 * vi: set shiftwidth=4 tabstop=8 expandtab:
87 * :indentSize=4:tabSize=8:noTabs=true:
88 */
Aggregates all per-packet field values extracted by the RR dissector, including transport,...
Definition packet-transum.h:77
Represents the metadata and indexing information for a single captured frame.
Definition packet_info.h:43
Definition proto.h:909