aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-scsi-smc.c
AgeCommit message (Collapse)AuthorFilesLines
2012-07-25Converted scsi dissectors display filter format from scsi.<protocol> to ↵mmann1-17/+17
scsi_<protocol> (matching their registered filter name) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43993 f5534014-38df-0310-8fa8-9805f1628bb7
2012-06-28Update Free Software Foundation address.darkjames1-1/+1
(COPYING will be updated in next commit) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43536 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-24Fix encoding arg for various fcn calls:wmeier1-11/+11
- proto_tree_add_bits_item - proto_tree_add_bits_ret_val - proto_tree_add_bitmask - tvb_get_bits - tvb_get_bits16 - tvb_get_bits24 - tvb_get_bits32 - tvb_get_bits64 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39539 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵wmeier1-13/+13
non-autogenerated epan/dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_UINT8 FT_UINT16 FT_UINT24 FT_UINT32 FT_UINT64 FT_INT8 FT_INT16 FT_INT24 FT_INT32 FT_INT64 FT_FLOAT FT_DOUBLE git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39288 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-06Improve dissection of bit-oriented fields. Patch from Richard Sharpe viacmaynard1-59/+22
bug #5466 with some minor whitespace modifications from me and a fix of an invalid offset introduced with the patch. Fuzz testing still needs to be done. I can't seem to get the fuzz tester to work with the capture files attached to the bug report. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35137 f5534014-38df-0310-8fa8-9805f1628bb7
2010-10-29Use value_string_ext to access several "relatively large" value-strings.wmeier1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34689 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-06#include <string.h> not needed.wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32411 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-18From Kovarththanan Rajaratnam via bug 3548:stig1-17/+17
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28770 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-26#include <emem.h> not req'dwmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26091 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-25#include <prefs.h> not req'dwmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26089 f5534014-38df-0310-8fa8-9805f1628bb7
2008-04-29Move minimum byte count test from dissect_scsi_smc_element() up into the ↵morriss1-7/+10
calling dissect_scsi_smc_elements() so we can break out of the loop if we're not advancing through the packet. This fixes the infinite loop reported in http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2508 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25193 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-13another attempt to let windows buildbot becoming greenstandel1-14/+14
fix rev21398 (gcc warning fix) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21412 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-13use of volatile for every functions and not only the ones using the Exceptionstandel1-14/+14
mechanisms. (fix rev21398) Windows buildbot sould be green again as formal parameters are the same as the ones in the declaration now. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21409 f5534014-38df-0310-8fa8-9805f1628bb7
2007-02-12add dissection of SMC POSITION TO ELEMENT cdbsahlberg1-1/+29
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20799 f5534014-38df-0310-8fa8-9805f1628bb7
2007-02-12add dissection of SMC OPEN/CLOSE IMPORT/EXPORT ELEMENT cdbsahlberg1-1/+37
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20794 f5534014-38df-0310-8fa8-9805f1628bb7
2007-02-11update the SMC MOVEMEDIUM cdb dissectorsahlberg1-14/+25
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20782 f5534014-38df-0310-8fa8-9805f1628bb7
2007-02-11add dissection of the two SMC cdbssahlberg1-6/+76
INITIALIZE ELEMENT STATUS INITIALIZE ELEMENT STATUS WITH RANGE git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20781 f5534014-38df-0310-8fa8-9805f1628bb7
2007-02-11add dissection of SMC EXCHANGE MEDIUM cdbsahlberg1-7/+66
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20780 f5534014-38df-0310-8fa8-9805f1628bb7
2007-02-11remove the revision number from the spc symbolssahlberg1-38/+42
change all spc2 and spc3 to spc git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20779 f5534014-38df-0310-8fa8-9805f1628bb7
2007-02-11dont encode a specific revision of the standard in the symbol namessahlberg1-27/+28
change all symbols from smc2 to smc git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20778 f5534014-38df-0310-8fa8-9805f1628bb7
2007-02-11add the name for two missing SMC cdbssahlberg1-0/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20777 f5534014-38df-0310-8fa8-9805f1628bb7
2006-11-23break the SCSI SMC commandset out into its own dissectorsahlberg1-0/+777
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19964 f5534014-38df-0310-8fa8-9805f1628bb7