Files
gluetun/internal/pmtud/df.go
Quentin McGaw e21d798f57 pmtud package
2025-10-06 09:57:15 +00:00

11 lines
268 B
Go

//go:build !linux && !windows
package pmtud
// setDontFragment for platforms other than Linux and Windows
// is not implemented, so we just return assuming the don't
// fragment flag is set on IP packets.
func setDontFragment(fd uintptr) (err error) {
return nil
}