18 lines
224 B
Go
18 lines
224 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
|
||
|
)
|