Files
gluetun/internal/pmtud/icmp/df_unspecified.go
T

11 lines
278 B
Go

//go:build !linux && !windows
package icmp
// 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, ipv4 bool) (err error) {
return nil
}