only run DPLPMTUD if the connection can send packets with the DF bit set (#3879)

This commit is contained in:
Marten Seemann 2023-06-02 16:54:34 +03:00 committed by GitHub
parent 0438eada95
commit 614fdb3271
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 67 additions and 26 deletions

View file

@ -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())
})
})