sing-box/inbound/naive_quic_stub.go

12 lines
175 B
Go
Raw Normal View History

2022-08-10 20:19:16 +08:00
//go:build !with_quic
package inbound
2022-08-22 21:20:05 +08:00
import (
2022-09-26 19:37:06 +08:00
C "github.com/sagernet/sing-box/constant"
2022-08-22 21:20:05 +08:00
)
2022-08-10 20:19:16 +08:00
2022-08-23 13:22:03 +08:00
func (n *Naive) configureHTTP3Listener() error {
2022-09-26 19:37:06 +08:00
return C.ErrQUICNotIncluded
2022-08-10 20:19:16 +08:00
}