This repository was archived by the owner on Feb 25, 2020. It is now read-only.

Description
- 在IServerPacketProcessor中声明如下:
void ProcessUdpFromBuffer(EndPoint sender, byte[] buffer, int offset = 0, int length = 0);
- 在UdpClientListener中未指定数据长度
private async Task Process(EndPoint endPoint, byte[] buffer)
{
// serverPacketProcessor.ProcessUdpFromBuffer(endPoint, buffer);
serverPacketProcessor.ProcessUdpFromBuffer(endPoint, buffer,0,buffer.Length);
endPointPool.Push(endPoint);
}