123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ISCSI.Client
- {
- public class ConnectionParameters
- {
-
-
-
- public const int DefaultMaxRecvDataSegmentLength = 8192;
- public static int DeclaredMaxRecvDataSegmentLength = 262144;
- public ushort CID;
-
-
-
-
-
- public int InitiatorMaxRecvDataSegmentLength = DeclaredMaxRecvDataSegmentLength;
- public int TargetMaxRecvDataSegmentLength = DefaultMaxRecvDataSegmentLength;
- public bool StatusNumberingStarted;
- public uint ExpStatSN;
- }
- }
|