aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fcels.h
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2009-10-17 10:19:18 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2009-10-17 10:19:18 +0000
commit80424e5ced9f0359fe3f6049369b6251783d9e0d (patch)
treeb8696134b286ac447dbf080f8253e32053cbd7fa /epan/dissectors/packet-fcels.h
parent9c988fa8548f8d5eb2d31aa8699433c2356be984 (diff)
From Joe Eykholt:
It would be nice to have dissection of the Fibre-Channel FCP "Sequence retransmission request" (SRR) request. This is like an FC ELS request, but it has FC type FCP, so it's a little strange. It seemed like the best place to put it is in packet-fcp.c but a slight hook is needed in packet-fc.c to recognize that packet-fcp is the correct dissector. svn path=/trunk/; revision=30587
Diffstat (limited to 'epan/dissectors/packet-fcels.h')
-rw-r--r--epan/dissectors/packet-fcels.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-fcels.h b/epan/dissectors/packet-fcels.h
index ab8d0569d5..48c68f1fc2 100644
--- a/epan/dissectors/packet-fcels.h
+++ b/epan/dissectors/packet-fcels.h
@@ -39,6 +39,7 @@
#define FC_ELS_TEST 0x11
#define FC_ELS_RRQ 0x12
#define FC_ELS_REC 0x13
+#define FC_ELS_SRR 0x14
#define FC_ELS_PRLI 0x20
#define FC_ELS_PRLO 0x21
#define FC_ELS_TPRLO 0x24
@@ -79,6 +80,7 @@ static const value_string fc_els_proto_val[] = {
{FC_ELS_TEST , "TEST"},
{FC_ELS_RRQ , "RRQ"},
{FC_ELS_REC , "REC"},
+ {FC_ELS_SRR , "SRR"},
{FC_ELS_PRLI , "PRLI"},
{FC_ELS_PRLO , "PRLO"},
{FC_ELS_TPRLO , "TPRLO"},