Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
file-file.h
1/* file-file.h
2 *
3 * Top-most file dissector. Decides dissector based on Filetap Encapsulation Type.
4 *
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <[email protected]>
7 * Copyright 2000 Gerald Combs
8 *
9 * SPDX-License-Identifier: GPL-2.0-or-later
10 */
11
12
13/*
14 * Routine used to register file record end routine. The routine should only
15 * be registred when the dissector is used in the file record, not in the
16 * proto_register_XXX function.
17 */
18void
19register_file_record_end_routine(packet_info *pinfo, void (*func)(void));
Definition packet_info.h:43