mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-12 07:46:35 +00:00

- Added a QUIC server to accept streams - Unit test for this server also tests ALPN - Temporary echo capability for HTTP ConnectionType
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
|
|
)
|