buglist
1 在频繁访问时,readbuffer会被重写,需要NEW新的BUFFER,WRITE时也是如此。(Fixed)
The read_buffer will be rewrited if there are too many data sended by client at the same time.
2 UDT 协议在read 大的数据包时候会进行拆包处理,更改原来用recv方式改用recvmsg方式接收大地数据包。(Fixed)
UDT protocol split bit datagram in to small packet (about 1k length), so serverside recv small packet before, change the api(recv) to (recvmsg),and recv a big packet instead of small packet.