12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- namespace ISCSI.Server
- {
- public partial class ISCSIServer
- {
-
-
-
-
-
-
- public static uint DefaultCommandQueueSize = 64;
- public class DesiredParameters
- {
-
- public static int MaxConnections = 1;
- public static bool InitialR2T = false;
- 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 = 16;
- public static bool DataPDUInOrder = true;
- public static bool DataSequenceInOrder = true;
- public static int ErrorRecoveryLevel = 0;
- }
- public class DeclaredParameters
- {
-
- public static int MaxRecvDataSegmentLength = 262144;
- }
- }
- }
|