12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- namespace ISCSI.Client
- {
- public partial class ISCSIClient
- {
- public class DesiredParameters
- {
-
- public static bool InitialR2T = true;
- public static bool ImmediateData = true;
- public static int MaxBurstLength = DefaultParameters.Session.MaxBurstLength;
- public static int FirstBurstLength = DefaultParameters.Session.FirstBurstLength;
- public static int DefaultTime2Wait = 0;
- public static int DefaultTime2Retain = 20;
- public static int MaxOutstandingR2T = 1;
- public static bool DataPDUInOrder = true;
- public static bool DataSequenceInOrder = true;
- public static int ErrorRecoveryLevel = 0;
- public static int MaxConnections = 1;
- }
- public class DeclaredParameters
- {
-
-
-
-
-
-
- public static int MaxRecvDataSegmentLength = 262144;
- }
- }
- }
|