mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
only run DPLPMTUD if the connection can send packets with the DF bit set (#3879)
This commit is contained in:
parent
0438eada95
commit
614fdb3271
15 changed files with 67 additions and 26 deletions
|
@ -15,9 +15,10 @@ var _ = Describe("Windows Conn Test", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
udpConn, err := net.ListenUDP("udp4", addr)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
conn, err := newConn(udpConn)
|
||||
conn, err := newConn(udpConn, true)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(conn.Close()).To(Succeed())
|
||||
Expect(conn.capabilities().DF).To(BeTrue())
|
||||
})
|
||||
|
||||
It("works on IPv6", func() {
|
||||
|
@ -25,8 +26,9 @@ var _ = Describe("Windows Conn Test", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
udpConn, err := net.ListenUDP("udp6", addr)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
conn, err := newConn(udpConn)
|
||||
conn, err := newConn(udpConn, false)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(conn.Close()).To(Succeed())
|
||||
Expect(conn.capabilities().DF).To(BeFalse())
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue