Files
gluetun/internal/pmtud/ip/ipv6_linux.go
T
Quentin McGaw 5f903d1fbf chore(pmtud): remove calls to syscall in favor of unix and windows
- syscall is deprecated and is not kept up-to-date
- each OS is inherently different hence the syscall being deprecated
2026-02-17 21:46:04 +00:00

8 lines
161 B
Go

package ip
import "golang.org/x/sys/unix"
func SetIPv6HeaderIncluded(fd int) error {
return unix.SetsockoptInt(fd, unix.IPPROTO_IPV6, unix.IPV6_HDRINCL, 1)
}