mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
15 lines
240 B
Go
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)
|
|
}
|