123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ISCSI.Client
- {
- public class ConnectionState
- {
-
- public ulong ISID;
-
- public ushort CID;
- public const int ReceiveBufferSize = 131072;
- public byte[] ReceiveBuffer = new byte[ReceiveBufferSize];
- public byte[] ConnectionBuffer = new byte[0];
- }
- }
|