Browse Source

Renamed ServiceActionIn to ServiceActionIn16

Tal Aloni 8 years ago
parent
commit
0e890ff925

+ 1 - 1
ISCSI/ISCSI.Client/ClientHelper.cs

@@ -313,7 +313,7 @@ namespace ISCSI.Client
         internal static SCSICommandPDU GetReadCapacity16Command(ConnectionParameters connection, ushort LUN)
         {
             ISCSISession session = connection.Session;
-            SCSICommandDescriptorBlock serviceActionIn = SCSICommandDescriptorBlock.Create(SCSIOpCodeName.ServiceActionIn);
+            SCSICommandDescriptorBlock serviceActionIn = SCSICommandDescriptorBlock.Create(SCSIOpCodeName.ServiceActionIn16);
             serviceActionIn.ServiceAction = ServiceAction.ReadCapacity16;
             serviceActionIn.TransferLength = ReadCapacity16Parameter.Length;
 

+ 1 - 1
ISCSI/SCSI/Enums/SCSIOpCodeName.cs

@@ -28,7 +28,7 @@ namespace SCSI
         Write16 = 0x8A,
         Verify16 = 0x8F,
         WriteSame16 = 0x93,
-        ServiceActionIn = 0x9E,
+        ServiceActionIn16 = 0x9E,
         ReportLUNs = 0xA0,
     }
 }

+ 2 - 2
ISCSI/SCSI/SCSICommandDescriptorBlock/SCSICommandDescriptorBlock.cs

@@ -69,7 +69,7 @@ namespace SCSI
                     return new SCSICommandDescriptorBlock16(buffer, offset);
                 case SCSIOpCodeName.WriteSame16:
                     return new SCSICommandDescriptorBlock16(buffer, offset);
-                case SCSIOpCodeName.ServiceActionIn:
+                case SCSIOpCodeName.ServiceActionIn16:
                     return new SCSICommandDescriptorBlock16(buffer, offset);
                 case SCSIOpCodeName.ReportLUNs:
                     return new SCSICommandDescriptorBlock12(buffer, offset);
@@ -118,7 +118,7 @@ namespace SCSI
                     return new SCSICommandDescriptorBlock16(opCode);
                 case SCSIOpCodeName.WriteSame16:
                     return new SCSICommandDescriptorBlock16(opCode);
-                case SCSIOpCodeName.ServiceActionIn:
+                case SCSIOpCodeName.ServiceActionIn16:
                     return new SCSICommandDescriptorBlock16(opCode);
                 case SCSIOpCodeName.ReportLUNs:
                     return new SCSICommandDescriptorBlock12(opCode);

+ 1 - 1
ISCSI/SCSITarget/VirtualSCSITarget.cs

@@ -113,7 +113,7 @@ namespace SCSI
             {
                 return SynchronizeCache10(lun, out response);
             }
-            else if (command.OpCode == SCSIOpCodeName.ServiceActionIn &&
+            else if (command.OpCode == SCSIOpCodeName.ServiceActionIn16 &&
                      command.ServiceAction == ServiceAction.ReadCapacity16)
             {
                 uint allocationLength = command.TransferLength;