aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tftp.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-09-01 19:33:24 -0700
committerGuy Harris <guy@alum.mit.edu>2017-09-02 02:34:09 +0000
commita66a216820f877881217485388b86c73722b351d (patch)
treedee6c8bcafaebb596884bfb4906758454d3fd23b /epan/dissectors/packet-tftp.h
parent1ef38667197289f585c7315beacb87179c21b1b6 (diff)
Don't export structures used internally by dissectors for Export Objects.
They're not used anywhere other than inside the dissectors, so make them private to the dissectors. Change-Id: I9946713f34f95a8173fd7748055fd4aa2e870f70 Reviewed-on: https://code.wireshark.org/review/23357 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-tftp.h')
-rw-r--r--epan/dissectors/packet-tftp.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/epan/dissectors/packet-tftp.h b/epan/dissectors/packet-tftp.h
index d8c78ad0f7..c5dd4681d4 100644
--- a/epan/dissectors/packet-tftp.h
+++ b/epan/dissectors/packet-tftp.h
@@ -30,13 +30,4 @@ typedef struct file_block_t {
guint length;
} file_block_t;
-/* Used for TFTP Export Object feature */
-typedef struct _tftp_eo_t {
- guint32 pkt_num;
- gchar *filename;
- guint32 payload_len;
- GSList *block_list;
-} tftp_eo_t;
-
-
#endif /* __PACKET_TFTP_H__ */