12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- namespace ISCSI
- {
-
-
-
- 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;
- }
- }
- }
|