2 * Dissector for the SCSI SSC commandset
3 * Extracted from packet-scsi.h
5 * Dinesh G Dutt (ddutt@cisco.com)
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <gerald@wireshark.org>
10 * Copyright 2002 Gerald Combs
12 * SPDX-License-Identifier: GPL-2.0-or-later
15 #ifndef __PACKET_SCSI_SSC_H_
16 #define __PACKET_SCSI_SSC_H_
18 #include "ws_symbol_export.h"
21 #define SCSI_SSC_REWIND 0x01
22 #define SCSI_SSC_FORMAT_MEDIUM 0x04
23 #define SCSI_SSC_READ_BLOCK_LIMITS 0x05
24 #define SCSI_SSC_READ6 0x08
25 #define SCSI_SSC_WRITE6 0x0A
26 #define SCSI_SSC_SET_CAPACITY 0x0B
27 #define SCSI_SSC_READ_REVERSE_6 0x0F
28 #define SCSI_SSC_WRITE_FILEMARKS_6 0x10
29 #define SCSI_SSC_SPACE_6 0x11
30 #define SCSI_SSC_VERIFY_6 0x13
31 #define SCSI_SSC_RECOVER_BUFFERED_DATA 0x14
32 #define SCSI_SSC_ERASE_6 0x19
33 #define SCSI_SSC_LOAD_UNLOAD 0x1B
34 #define SCSI_SSC_LOCATE_10 0x2B
35 #define SCSI_SSC_READ_POSITION 0x34
36 #define SCSI_SSC_REPORT_DENSITY_SUPPORT 0x44
37 #define SCSI_SSC_WRITE_FILEMARKS_16 0x80
38 #define SCSI_SSC_READ_REVERSE_16 0x81
39 #define SCSI_SSC_READ_16 0x88
40 #define SCSI_SSC_WRITE_16 0x8A
41 #define SCSI_SSC_VERIFY_16 0x8F
42 #define SCSI_SSC_SPACE_16 0x91
43 #define SCSI_SSC_LOCATE_16 0x92
44 #define SCSI_SSC_ERASE_16 0x93
46 extern int hf_scsi_ssc_opcode
;
47 extern const scsi_cdb_table_t scsi_ssc_table
[256];
48 WS_DLL_PUBLIC value_string_ext scsi_ssc_vals_ext
;