mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
simplify content storage in packed packets
It's not necessary to store both the packetBuffer and the slice containing the raw data in the packet.
This commit is contained in:
parent
077504f557
commit
d642bf9098
10 changed files with 112 additions and 103 deletions
|
@ -10,7 +10,7 @@ import (
|
|||
var _ = Describe("Buffer Pool", func() {
|
||||
It("returns buffers of cap", func() {
|
||||
buf := getPacketBuffer()
|
||||
Expect(buf.Slice).To(HaveCap(int(protocol.MaxReceivePacketSize)))
|
||||
Expect(buf.Data).To(HaveCap(int(protocol.MaxReceivePacketSize)))
|
||||
})
|
||||
|
||||
It("releases buffers", func() {
|
||||
|
@ -18,9 +18,15 @@ var _ = Describe("Buffer Pool", func() {
|
|||
buf.Release()
|
||||
})
|
||||
|
||||
It("gets the length", func() {
|
||||
buf := getPacketBuffer()
|
||||
buf.Data = append(buf.Data, []byte("foobar")...)
|
||||
Expect(buf.Len()).To(BeEquivalentTo(6))
|
||||
})
|
||||
|
||||
It("panics if wrong-sized buffers are passed", func() {
|
||||
buf := getPacketBuffer()
|
||||
buf.Slice = make([]byte, 10)
|
||||
buf.Data = make([]byte, 10)
|
||||
Expect(func() { buf.Release() }).To(Panic())
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue