uquic/conn_helper_darwin.go
2020-10-05 13:32:06 +07:00

15 lines
240 B
Go

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