naive_quic_stub.go 175 B

1234567891011
  1. //go:build !with_quic
  2. package inbound
  3. import (
  4. C "github.com/sagernet/sing-box/constant"
  5. )
  6. func (n *Naive) configureHTTP3Listener() error {
  7. return C.ErrQUICNotIncluded
  8. }