sing-box/constant/quic_stub.go

10 lines
225 B
Go
Raw Normal View History

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