mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
19 lines
245 B
Go
19 lines
245 B
Go
// +build freebsd
|
|
|
|
package quic
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const msgTypeIPTOS = unix.IP_RECVTOS
|
|
|
|
const (
|
|
ipv4RECVPKTINFO = 0x7
|
|
ipv6RECVPKTINFO = 0x24
|
|
)
|
|
|
|
const (
|
|
msgTypeIPv4PKTINFO = 0x7
|
|
msgTypeIPv6PKTINFO = 0x2e
|
|
)
|
|
|
|
const batchSize = 8
|