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

@ -4,8 +4,8 @@ package quic
import "net"
func newConn(c net.PacketConn) (rawConn, error) {
return &basicConn{PacketConn: c}, nil
func newConn(c net.PacketConn, supportsDF bool) (rawConn, error) {
return &basicConn{PacketConn: c, supportsDF: supportsDF}, nil
}
func inspectReadBuffer(any) (int, error) { return 0, nil }