sing-box/inbound/naive_quic_stub.go

12 lines
174 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-14 04:46:02 +00:00
I "github.com/sagernet/sing-box/include"
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-14 04:46:02 +00:00
return I.ErrQUICNotIncluded
2022-08-10 12:19:16 +00:00
}