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