1// +build freebsd
2
3package quic
4
5import "golang.org/x/sys/unix"
6
7const msgTypeIPTOS = unix.IP_RECVTOS
8
9const (
10	ipv4RECVPKTINFO = 0x7
11	ipv6RECVPKTINFO = 0x24
12)
13
14const (
15	msgTypeIPv4PKTINFO = 0x7
16	msgTypeIPv6PKTINFO = 0x2e
17)
18
19const batchSize = 8
20