mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-08 13:00:11 +02:00
5f903d1fbf
- syscall is deprecated and is not kept up-to-date - each OS is inherently different hence the syscall being deprecated
10 lines
185 B
Go
10 lines
185 B
Go
//go:build linux || darwin
|
|
|
|
package ip
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func SetIPv4HeaderIncluded(fd int) error {
|
|
return unix.SetsockoptInt(fd, unix.IPPROTO_IP, unix.IP_HDRINCL, 1)
|
|
}
|