aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet_info.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-01-22 06:26:36 +0000
committerGuy Harris <guy@alum.mit.edu>2003-01-22 06:26:36 +0000
commite120160577df46123fa7c0e80e552f708487fef9 (patch)
tree22c2c3d3dabcca88c698b7f38f1e088711eed9f3 /epan/packet_info.h
parenta4280bade5973de55506ab23b433b493651fc02a (diff)
downloadwireshark-e120160577df46123fa7c0e80e552f708487fef9.tar.gz
wireshark-e120160577df46123fa7c0e80e552f708487fef9.tar.bz2
wireshark-e120160577df46123fa7c0e80e552f708487fef9.zip
From Dinesh Dutt:
- A new decoder called MDSHDR which decodes the internal header of the Cisco MDS switch (this is different from the Boardwalk header). - Support for some more new columns as part of FC support. - Fixed the decoding of the Special Frame in FCIP. - Fixed the decoding of credit management type field in FLOGI/PLOGI frame in FC-ELS. svn path=/trunk/; revision=6974
Diffstat (limited to 'epan/packet_info.h')
-rw-r--r--epan/packet_info.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/packet_info.h b/epan/packet_info.h
index 138d7a3325..587ca6d062 100644
--- a/epan/packet_info.h
+++ b/epan/packet_info.h
@@ -1,7 +1,7 @@
/* packet_info.h
* Definitions for packet info structures and routines
*
- * $Id: packet_info.h,v 1.28 2003/01/06 19:08:37 jmayer Exp $
+ * $Id: packet_info.h,v 1.29 2003/01/22 06:26:36 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -152,6 +152,9 @@ typedef struct _packet_info {
guint16 rxid; /* channel conversations */
guint8 r_ctl; /* R_CTL field in Fibre Channel Protocol */
guint8 pad;
+ guint16 src_idx; /* Source port index (Cisco MDS-specific) */
+ guint16 dst_idx; /* Dest port index (Cisco MDS-specific) */
+ guint16 vsan; /* Fibre channel/Cisco MDS-specific */
void *private_data; /* pointer to data passed from one dissector to another */
void *decrypted_data; /* pointer to description of decrypted payload structure */
} packet_info;