|
@@ -15,12 +15,12 @@ namespace ISCSI.Server
|
|
|
public class TransferEntry
|
|
|
{
|
|
|
public SCSICommandPDU Command;
|
|
|
- public uint NextR2NSN;
|
|
|
+ public uint NextR2TSN;
|
|
|
|
|
|
- public TransferEntry(SCSICommandPDU command, uint nextR2NSN)
|
|
|
+ public TransferEntry(SCSICommandPDU command, uint nextR2TSN)
|
|
|
{
|
|
|
Command = command;
|
|
|
- NextR2NSN = nextR2NSN;
|
|
|
+ NextR2TSN = nextR2TSN;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -47,9 +47,9 @@ namespace ISCSI.Server
|
|
|
// Dictionary of current transfers: <transfer-tag, TransferEntry>
|
|
|
private Dictionary<uint, TransferEntry> n_transfers = new Dictionary<uint, TransferEntry>();
|
|
|
|
|
|
- public TransferEntry AddTransfer(uint transferTag, SCSICommandPDU command, uint nextR2NSN)
|
|
|
+ public TransferEntry AddTransfer(uint transferTag, SCSICommandPDU command, uint nextR2TSN)
|
|
|
{
|
|
|
- TransferEntry entry = new TransferEntry(command, nextR2NSN);
|
|
|
+ TransferEntry entry = new TransferEntry(command, nextR2TSN);
|
|
|
n_transfers.Add(transferTag, entry);
|
|
|
return entry;
|
|
|
}
|