From 704288169f2651da69c2dc3491a496bbdac284a5 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Tue, 15 Feb 2011 21:24:24 +1100 Subject: [PATCH] Add task management pdu request and response constants to the list of pdu types --- include/iscsi-private.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/iscsi-private.h b/include/iscsi-private.h index 3b54c9f..6562660 100644 --- a/include/iscsi-private.h +++ b/include/iscsi-private.h @@ -137,12 +137,14 @@ struct iscsi_context { enum iscsi_opcode { ISCSI_PDU_NOP_OUT = 0x00, ISCSI_PDU_SCSI_REQUEST = 0x01, + ISCSI_PDU_SCSI_TASK_MANAGEMENT_REQUEST = 0x02, ISCSI_PDU_LOGIN_REQUEST = 0x03, ISCSI_PDU_TEXT_REQUEST = 0x04, ISCSI_PDU_DATA_OUT = 0x05, ISCSI_PDU_LOGOUT_REQUEST = 0x06, ISCSI_PDU_NOP_IN = 0x20, ISCSI_PDU_SCSI_RESPONSE = 0x21, + ISCSI_PDU_SCSI_TASK_MANAGEMENT_RESPONSE = 0x22, ISCSI_PDU_LOGIN_RESPONSE = 0x23, ISCSI_PDU_TEXT_RESPONSE = 0x24, ISCSI_PDU_DATA_IN = 0x25,