use golang.org/x/sys/unix instead of syscall

This commit is contained in:
Marten Seemann 2020-12-04 10:08:51 +07:00
parent 5a0ce24265
commit f59cd928f8
5 changed files with 19 additions and 28 deletions

View file

@ -2,10 +2,6 @@
package quic
import "syscall"
import "golang.org/x/sys/unix"
const msgTypeIPTOS = syscall.IP_TOS
func setRECVTOS(fd uintptr) error {
return syscall.SetsockoptInt(int(fd), syscall.IPPROTO_IP, syscall.IP_RECVTOS, 1)
}
const msgTypeIPTOS = unix.IP_TOS