Exemplo n.º 1
0
 public NetworkClient()
 {
     this.mClientSocket    = null;
     this.mRemoteEndPoint  = null;
     this.mRecvBuffer      = new byte[this.BufferSize];
     this.mRecvMemory      = new MemoryStream();
     this.mMemoryPosition  = 0;
     this.mDatagramManager = new DatagramManager();
 }
Exemplo n.º 2
0
 public NetonChannel(TcpClient client, DatagramManager dmanager)
 {
     this.mClient          = client;
     this.mDatagramManager = dmanager;
 }