aboutsummaryrefslogtreecommitdiffstats
path: root/packet-fcip.c
AgeCommit message (Collapse)AuthorFilesLines
2003-12-21Compiling with -pedantic:Jörg Mayer1-4/+4
warning: comma at end of enumerator list svn path=/trunk/; revision=9383
2003-12-04Add {0, NULL} to end of fcencap_proto_vals value_string array.Gilbert Ramirez1-1/+2
svn path=/trunk/; revision=9162
2003-11-16Export "protocol_t" as an opaque type.Guy Harris1-4/+1
Make "proto_is_protocol_enabled()" and "proto_get_protocol_short_name()" take a "protocol_t *" as an argument, so they don't have to look up the "protocol_t" - this will probably speed them up considerably, and they're called on almost every dissector handoff. Get rid of a number of "proto_is_protocol_enabled()" calls that aren't necessary (dissectors called through handles, including those called through dissector tables, or called as heuristic dissectors, aren't even called if their protocol isn't enabled). Change some direct dissector calls to go through handles. svn path=/trunk/; revision=8979
2003-10-30From Dinesh Dutt:Guy Harris1-2/+21
- Dissector for FICON - Dissector for FC-SP (Security Protocol for Fibre Channel) - Patches to correct the reassembly of FC fragments. - Support for new MDS Port Analyzer Adapters that carry the frame length for truncated frames. svn path=/trunk/; revision=8823
2003-09-09Get rid of "fsf_conn_flag_vals[]" - the connection usage flags are bitGuy Harris1-5/+12
flags, not part of a field where each value means something special. Put in ID names for some current FCIP drafts. Note fields that should arguably show their individual bits. svn path=/trunk/; revision=8423
2003-09-03Don't include <epan/conversation.h> if you don't need it.Guy Harris1-2/+1
svn path=/trunk/; revision=8361
2003-09-02From Dinesh Dutt:Guy Harris1-25/+38
use the value_string tables for SOF and EOF values, rather than the string tables, and get rid of the string tables; add another desegmentation check; other cleanups. svn path=/trunk/; revision=8337
2003-07-09Use "fcencap_proto_vals[]" for the protocol field.Guy Harris1-4/+4
svn path=/trunk/; revision=8004
2003-01-28Panic if a preference starts with the name of the module to which itGuy Harris1-3/+3
belongs, as that's redundant. Fix a bunch of cases where that was done, and map the old name to the new name. Instead of marking "mtp3.mtp3_standard" as obsolete, map it to "mtp3.standard". svn path=/trunk/; revision=7030
2003-01-22From Dinesh Dutt:Guy Harris1-2/+2
- 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
2002-12-08From Dinesh Dutt: Add Fibre Channel support, including FCIP, Basic FCGerald Combs1-0/+619
header, Extended Link Service, Interswitch Link Service, FCP, and IPFC. svn path=/trunk/; revision=6757