mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 20:10:11 +02:00
11 lines
278 B
Go
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
|
|
}
|