sing-box/inbound/naive_quic_stub.go

12 lines
175 B
Go
Raw Normal View History

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