123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- namespace ISCSI.Server
- {
- public partial class ISCSIServer
- {
-
-
-
-
-
-
- public static uint DefaultCommandQueueSize = 64;
- 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;
- }
- }
- }
|