1
0

hysteria_stub.go 423 B

12345678910111213141516
  1. //go:build !with_quic
  2. package inbound
  3. import (
  4. "context"
  5. "github.com/sagernet/sing-box/adapter"
  6. C "github.com/sagernet/sing-box/constant"
  7. "github.com/sagernet/sing-box/log"
  8. "github.com/sagernet/sing-box/option"
  9. )
  10. func NewHysteria(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.HysteriaInboundOptions) (adapter.Inbound, error) {
  11. return nil, C.ErrQUICNotIncluded
  12. }