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

11 lines
217 B
Go

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