wireshark/epan/dissectors/packet-tftp.h
Roman Koshelev 37e74c9ceb TFTP: Transferred files may now be reassembled and dissected.
This allows higher-layer file or protocol dissectors to dissect the file
contents. Note that there are currently no dissectors that do this in-tree,
but an example of how to do this is at:
     https://github.com/Roman-Koshelev/Arinc-615a-Wireshark-Dissector.

Bug: 16069
Change-Id: I88236175128efd0f6d474218dd117f5b0ca1fae9
Reviewed-on: https://code.wireshark.org/review/35553
Petri-Dish: Martin Mathieson <martin.r.mathieson@googlemail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
2020-02-03 14:42:13 +00:00

19 lines
386 B
C

/* packet-tftp.h
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_TFTP_H__
#define __PACKET_TFTP_H__
/* Private data passed from the TFTP dissector to subdissectors. */
struct tftpinfo {
const char *filename;
};
#endif /* __PACKET_TFTP_H__ */