use unix.IPV6_RECVPKTINFO and unix.IPV6_PKTINFO on all platforms (#3918)

This commit is contained in:
Marten Seemann 2023-06-25 20:08:08 +02:00 committed by GitHub
parent 21388c86bb
commit 4b0ca320a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 28 deletions

View file

@ -5,17 +5,9 @@ package quic
import "golang.org/x/sys/unix"
const (
msgTypeIPTOS = unix.IP_RECVTOS
)
const (
ipv4RECVPKTINFO = 0x7
ipv6RECVPKTINFO = 0x24
)
const (
msgTypeIPTOS = unix.IP_RECVTOS
ipv4RECVPKTINFO = 0x7
msgTypeIPv4PKTINFO = 0x7
msgTypeIPv6PKTINFO = 0x2e
)
const batchSize = 8