aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcm.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-dcm.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-dcm.h')
-rw-r--r--epan/dissectors/packet-dcm.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/epan/dissectors/packet-dcm.h b/epan/dissectors/packet-dcm.h
deleted file mode 100644
index bfadc9fe33..0000000000
--- a/epan/dissectors/packet-dcm.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/* packet-dcm.h
- *
- * Routines for DICOM packet dissection
- * Copyright 2009, David Aggeler <david_aggeler@hispeed.ch>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef PACKET_DCM_H
-#define PACKET_DCM_H
-
-/* Used for DICOM Export Object feature */
-typedef struct _dicom_eo_t {
- guint32 pkt_num;
- gchar *hostname;
- gchar *filename;
- gchar *content_type;
- guint32 payload_len;
- guint8 *payload_data;
-} dicom_eo_t;
-
-#endif /* PACKET_DCM_H */