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

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