read packets with the maximum packet size

fixes #467
This commit is contained in:
Marten Seemann 2017-03-06 13:02:46 +07:00
parent eff9c6f906
commit 1f01904270
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
8 changed files with 24 additions and 20 deletions

View file

@ -13,7 +13,7 @@ func getPacketBuffer() []byte {
}
func putPacketBuffer(buf []byte) {
if cap(buf) != int(protocol.MaxPacketSize) {
if cap(buf) != int(protocol.MaxReceivePacketSize) {
panic("putPacketBuffer called with packet of wrong size!")
}
bufferPool.Put(buf[:0])
@ -21,6 +21,6 @@ func putPacketBuffer(buf []byte) {
func init() {
bufferPool.New = func() interface{} {
return make([]byte, 0, protocol.MaxPacketSize)
return make([]byte, 0, protocol.MaxReceivePacketSize)
}
}