You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
287 B
16 lines
287 B
using System.Net.Sockets;
|
|
using System.Text;
|
|
|
|
namespace EC.Utils.SocketHelper
|
|
{
|
|
public class StateObject
|
|
{
|
|
public Socket workSocket = null;
|
|
|
|
public const int BufferSize = 256;
|
|
|
|
public byte[] buffer = new byte[BufferSize];
|
|
|
|
public StringBuilder sb = new StringBuilder();
|
|
}
|
|
}
|