sing-box/constant/quic_stub.go

10 lines
225 B
Go
Raw Permalink Normal View History

2022-08-10 20:19:16 +08:00
//go:build !with_quic
package constant
2022-08-22 21:20:05 +08:00
import E "github.com/sagernet/sing/common/exceptions"
2022-08-10 20:19:16 +08:00
const QUIC_AVAILABLE = false
2022-08-22 21:20:05 +08:00
var ErrQUICNotIncluded = E.New(`QUIC is not included in this build, rebuild with -tags with_quic`)