aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-scsi.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-04-22 02:16:52 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-04-22 02:16:52 +0000
commite776696d14b66f7e963d2599b51b8710436f5564 (patch)
tree55ac51d7f61e9e784a3dc5ac5d3f76b8cfae6721 /epan/dissectors/packet-scsi.h
parent3cd547dc0a46a9981524a788306214f6c27ce68c (diff)
the scsi transports (fc/fcp and iscsi) now track both itl and itlq
structures for scsi. we no longer need the scsi_task_id structure passed by pinfo->private_data so get rid of it. we no longer need the (broken by design) scsi_task_data hash table since this has been replaced byt hte itl and itlq structures and tracking svn path=/trunk/; revision=17952
Diffstat (limited to 'epan/dissectors/packet-scsi.h')
-rw-r--r--epan/dissectors/packet-scsi.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/epan/dissectors/packet-scsi.h b/epan/dissectors/packet-scsi.h
index 0a0daec051..b698673620 100644
--- a/epan/dissectors/packet-scsi.h
+++ b/epan/dissectors/packet-scsi.h
@@ -69,15 +69,4 @@ void dissect_scsi_payload (tvbuff_t *, packet_info *, proto_tree *,
gboolean, itlq_nexus_t *, itl_nexus_t *);
void dissect_scsi_snsinfo (tvbuff_t *, packet_info *, proto_tree *, guint, guint, guint16);
-/*
- * Private data to be supplied to those functions via "pinfo->private_data";
- * the structure contains a 32-bit conversation ID and a 32-bit task
- * ID, where the former identifies a conversation between initiator and
- * target and the latter identifies a SCSI task within that conversation.
- */
-typedef struct {
- guint32 conv_id;
- guint32 task_id;
-} scsi_task_id_t;
-
#endif