hysteria/core/internal/pmtud/unavail.go
2023-05-25 20:24:24 -07:00

12 lines
495 B
Go

//go:build !linux && !windows
package pmtud
// quic-go's MTU discovery is enabled by default across all platforms. However, our testing has found that on certain
// platforms (e.g. macOS) the DF bit is not set. As a result, probe packets that should never be fragmented are still
// fragmented and transmitted. So we have decided to enable MTU discovery only on Linux and Windows for now, as we have
// verified its functionality on these platforms.
const (
DisablePathMTUDiscovery = true
)