mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
10 lines
245 B
Go
10 lines
245 B
Go
//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")
|
|
}
|