sing-box/inbound/naive_quic_stub.go
2022-08-22 22:20:19 +08:00

12 lines
192 B
Go

//go:build !with_quic
package inbound
import (
C "github.com/sagernet/sing-box/constant"
)
func (n *Naive) configureHTTP3Listener(listenAddr string) error {
return C.ErrQUICNotIncluded
}