sing-box/inbound/naive_quic_stub.go

10 lines
245 B
Go
Raw Normal View History

2022-08-10 12:19:16 +00:00
//go:build !with_quic
package inbound
import E "github.com/sagernet/sing/common/exceptions"
func (n *Naive) configureHTTP3Listener(listenAddr string) error {
return E.New("QUIC is not included in this build, rebuild with -tags with_quic")
}