FIXUP: WIP: verification_trailer
[wireshark-wip.git] / epan / dissectors / packet-scsi-smc.h
blobb512ef367a1ae9651dcf30374c37b04ae6c904b6
1 /* packet-scsi-smc.h
2 * Dissector for the SCSI SMC commandset
3 * Extracted from packet-scsi.h
5 * Dinesh G Dutt (ddutt@cisco.com)
6 * Ronnie sahlberg 2006
8 * $Id$
10 * Wireshark - Network traffic analyzer
11 * By Gerald Combs <gerald@wireshark.org>
12 * Copyright 2002 Gerald Combs
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 #ifndef __PACKET_SCSI_SMC_H_
30 #define __PACKET_SCSI_SMC_H_
32 #include "ws_symbol_export.h"
34 /* SMC Commands */
35 #define SCSI_SMC_EXCHANGE_MEDIUM 0x40
36 #define SCSI_SMC_INITIALIZE_ELEMENT_STATUS 0x07
37 #define SCSI_SMC_INITIALIZE_ELEMENT_STATUS_RANGE 0x37
38 #define SCSI_SMC_MOVE_MEDIUM 0xA5
39 #define SCSI_SMC_MOVE_MEDIUM_ATTACHED 0xA7
40 #define SCSI_SMC_OPENCLOSE_ELEMENT 0x1B
41 #define SCSI_SMC_POSITION_TO_ELEMENT 0x2B
42 #define SCSI_SMC_READ_ATTRIBUTE 0x8C
43 #define SCSI_SMC_READ_ELEMENT_STATUS 0xB8
44 #define SCSI_SMC_READ_ELEMENT_STATUS_ATTACHED 0xB4
45 #define SCSI_SMC_REPORT_VOLUME_TYPES_SUPPORTED 0x44
46 #define SCSI_SMC_REQUEST_VOLUME_ELEMENT_ADDRESS 0xB5
47 #define SCSI_SMC_SEND_VOLUME_TAG 0xB6
48 #define SCSI_SMC_WRITE_ATTRIBUTE 0x8D
49 void dissect_smc_movemedium (tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, guint offset, gboolean isreq, gboolean iscdb, guint payload_len _U_, scsi_task_data_t *cdata _U_);
50 void dissect_smc_readelementstatus (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint offset, gboolean isreq, gboolean iscdb, guint payload_len _U_, scsi_task_data_t *cdata _U_);
53 extern int hf_scsi_smc_opcode;
54 extern scsi_cdb_table_t scsi_smc_table[256];
55 WS_DLL_PUBLIC const value_string scsi_smc_vals[];
57 #endif