aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fc.h
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-04-20 09:16:09 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-04-20 09:16:09 +0000
commit7c8d049546a4d53455efdbc19f7c353a4a64f25e (patch)
tree4124a1613f8ef0d37cb1fcffd020ccd9e3c8f68d /epan/dissectors/packet-fc.h
parentd0434a7f55c8b7526ae7fd9067d38c155bac6778 (diff)
rename the fc_exchange_data structure to the more appropriate itlq_nexus_t
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17921 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-fc.h')
-rw-r--r--epan/dissectors/packet-fc.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/epan/dissectors/packet-fc.h b/epan/dissectors/packet-fc.h
index c8a820250b..c8bbd081f0 100644
--- a/epan/dissectors/packet-fc.h
+++ b/epan/dissectors/packet-fc.h
@@ -125,16 +125,18 @@ ETH_VAR_IMPORT const value_string fc_fc4_val[];
#define FC_FCTL_ABTS_MASK 0x000030
#define FC_FCTL_REL_OFFSET 0x000008
-/* structure and functions to keep track of first/last exchange
- frames and time deltas
-*/
-typedef struct _fc_exchange_data {
+/* Structure containing itlq nexus data :
+ * The itlq nexus is a structure containing data specific
+ * for a initiator target lun queue/commandid combination.
+ */
+/* XXX the LUN field will later be moved into an itl_nexusu_t structure */
+typedef struct _itlq_nexus_t {
guint32 first_exchange_frame;
guint32 last_exchange_frame;
guint16 lun; /* initialized to 0xffff == unknown */
guint16 scsi_opcode; /* initialized to 0xffff == unknown */
nstime_t fc_time;
-} fc_exchange_data;
+} itlq_nexus_t;
/* FC header structure */
typedef struct _fc_hdr {
@@ -147,7 +149,7 @@ typedef struct _fc_hdr {
guint16 rxid;
guint8 r_ctl;
guint8 cs_ctl;
- fc_exchange_data *fced;
+ itlq_nexus_t *fced;
} fc_hdr;
#endif /* __PACKET_FC_H_ */