| 12345678910111213141516 | 
							- //go:build !with_quic
 
- package outbound
 
- import (
 
- 	"context"
 
- 	"github.com/sagernet/sing-box/adapter"
 
- 	C "github.com/sagernet/sing-box/constant"
 
- 	"github.com/sagernet/sing-box/log"
 
- 	"github.com/sagernet/sing-box/option"
 
- )
 
- func NewTUIC(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.TUICOutboundOptions) (adapter.Outbound, error) {
 
- 	return nil, C.ErrQUICNotIncluded
 
- }
 
 
  |