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