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
|
@ -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 }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue