1234567891011121314151617181920212223242526272829303132333435 |
- 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;
- }
- }
- }
|