mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 11:36:34 +00:00

- Updates fips-go to be the latest on cfsetup.yaml - Updates sumtype's x/tools to be latest to avoid Internal: nil pkg errors with fips.
20 lines
245 B
Go
20 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
|