mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename MaxPacketSizeIPv{4,6} to InitialPacketSizeIPv{4,6}
This commit is contained in:
parent
2c45f2b11d
commit
eea0b1eacd
5 changed files with 12 additions and 12 deletions
|
@ -119,13 +119,13 @@ var _ = Describe("Packet packer", func() {
|
|||
|
||||
It("uses the maximum IPv4 packet size, if the remote address is IPv4", func() {
|
||||
addr := &net.UDPAddr{IP: net.IPv4(11, 12, 13, 14), Port: 1337}
|
||||
Expect(getMaxPacketSize(addr)).To(BeEquivalentTo(protocol.MaxPacketSizeIPv4))
|
||||
Expect(getMaxPacketSize(addr)).To(BeEquivalentTo(protocol.InitialPacketSizeIPv4))
|
||||
})
|
||||
|
||||
It("uses the maximum IPv6 packet size, if the remote address is IPv6", func() {
|
||||
ip := net.ParseIP("2001:0db8:85a3:0000:0000:8a2e:0370:7334")
|
||||
addr := &net.UDPAddr{IP: ip, Port: 1337}
|
||||
Expect(getMaxPacketSize(addr)).To(BeEquivalentTo(protocol.MaxPacketSizeIPv6))
|
||||
Expect(getMaxPacketSize(addr)).To(BeEquivalentTo(protocol.InitialPacketSizeIPv6))
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue