Files
gluetun/internal/pmtud/df.go

11 lines
268 B
Go
Raw Normal View History

2025-08-19 20:04:22 +00:00
//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
}