mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename MaxReceivePacketSize to MaxPacketBufferSize
We use the same buffer size for sending and receiving packets.
This commit is contained in:
parent
fb5a45ac53
commit
82ac6dcf6d
14 changed files with 26 additions and 26 deletions
|
@ -18,7 +18,7 @@ var _ = Describe("Basic Conn Test", func() {
|
|||
addr := &net.UDPAddr{IP: net.IPv4(1, 2, 3, 4), Port: 1234}
|
||||
c.EXPECT().ReadFrom(gomock.Any()).DoAndReturn(func(b []byte) (int, net.Addr, error) {
|
||||
data := []byte("foobar")
|
||||
Expect(b).To(HaveLen(int(protocol.MaxReceivePacketSize)))
|
||||
Expect(b).To(HaveLen(int(protocol.MaxPacketBufferSize)))
|
||||
return copy(b, data), addr, nil
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue