aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcm.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-dcm.c')
-rw-r--r--epan/dissectors/packet-dcm.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/epan/dissectors/packet-dcm.c b/epan/dissectors/packet-dcm.c
index 156ae77e43..5c4c866b58 100644
--- a/epan/dissectors/packet-dcm.c
+++ b/epan/dissectors/packet-dcm.c
@@ -225,8 +225,6 @@
#include "packet-tcp.h"
-#include "packet-dcm.h"
-
void proto_register_dcm(void);
void proto_reg_handoff_dcm(void);
@@ -390,6 +388,16 @@ static const value_string user_identify_type_vals[] = {
{ 0, NULL }
};
+/* 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;
+
static gboolean
dcm_eo_packet(void *tapdata, packet_info *pinfo, epan_dissect_t *edt _U_,
const void *data)