uquic/conn_helper_darwin.go
2020-09-15 10:51:22 +07:00

14 lines
219 B
Go

// +build darwin
package quic
import "syscall"
const (
ip_recvtos = 27
msgTypeIPTOS = ip_recvtos
)
func setRECVTOS(fd uintptr) error {
return syscall.SetsockoptInt(int(fd), syscall.IPPROTO_IP, ip_recvtos, 1)
}