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

@ -11,7 +11,7 @@ var _ = Describe("Buffer Pool", func() {
It("returns buffers of correct len and cap", func() {
buf := getPacketBuffer()
Expect(buf).To(HaveLen(0))
Expect(buf).To(HaveCap(int(protocol.MaxPacketSize)))
Expect(buf).To(HaveCap(int(protocol.MaxReceivePacketSize)))
})
It("zeroes put buffers' length", func() {
@ -20,7 +20,7 @@ var _ = Describe("Buffer Pool", func() {
putPacketBuffer(buf[0:10])
buf = getPacketBuffer()
Expect(buf).To(HaveLen(0))
Expect(buf).To(HaveCap(int(protocol.MaxPacketSize)))
Expect(buf).To(HaveCap(int(protocol.MaxReceivePacketSize)))
}
})