mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
14 lines
219 B
Go
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)
|
|
}
|