Files
quic-go/conn_helper_generic.go
Marten Seemann ea3d32394d read the ECN bits
2020-09-15 10:51:22 +07:00

12 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)
}