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

@ -8,16 +8,10 @@ import (
"golang.org/x/sys/unix"
)
const msgTypeIPTOS = unix.IP_TOS
const (
ipv4RECVPKTINFO = unix.IP_PKTINFO
ipv6RECVPKTINFO = unix.IPV6_RECVPKTINFO
)
const (
msgTypeIPTOS = unix.IP_TOS
ipv4RECVPKTINFO = unix.IP_PKTINFO
msgTypeIPv4PKTINFO = unix.IP_PKTINFO
msgTypeIPv6PKTINFO = unix.IPV6_PKTINFO
)
const batchSize = 8 // needs to smaller than MaxUint8 (otherwise the type of oobConn.readPos has to be changed)