Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-scsi-ssc.h
1/* packet-scsi-ssc.h
2 * Dissector for the SCSI SSC commandset
3 * Extracted from packet-scsi.h
4 *
5 * Dinesh G Dutt ([email protected])
6 * Ronnie sahlberg 2006
7 *
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <[email protected]>
10 * Copyright 2002 Gerald Combs
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 */
14
15#ifndef __PACKET_SCSI_SSC_H_
16#define __PACKET_SCSI_SSC_H_
17
18#include "ws_symbol_export.h"
19
20/* SSC Commands */
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
45
46extern int hf_scsi_ssc_opcode;
47extern const scsi_cdb_table_t scsi_ssc_table[256];
48WS_DLL_PUBLIC value_string_ext scsi_ssc_vals_ext;
49
50#endif
Definition packet-scsi.h:97
Definition value_string.h:169