1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- namespace ISCSI.Client
- {
-
-
-
- public class DefaultParameters
- {
- public class Session
- {
-
-
-
- public const int MaxConnections = 1;
-
-
-
- public const bool InitialR2T = true;
- public const bool ImmediateData = true;
-
-
-
-
-
- public const int MaxBurstLength = 262144;
-
-
-
-
-
- public const int FirstBurstLength = 65536;
-
-
-
- public const int DefaultTime2Wait = 2;
-
-
-
-
- public const int DefaultTime2Retain = 20;
- public const int MaxOutstandingR2T = 1;
- public const bool DataPDUInOrder = true;
- public const bool DataSequenceInOrder = true;
- public const int ErrorRecoveryLevel = 0;
- }
- public class Connection
- {
-
-
-
- public const int MaxRecvDataSegmentLength = 8192;
- }
- }
- }
|