uot_stub.go 295 B

123456789101112131415
  1. //go:build !go1.18
  2. package outbound
  3. import (
  4. "context"
  5. "os"
  6. "github.com/xtls/xray-core/common/net"
  7. "github.com/xtls/xray-core/transport/internet/stat"
  8. )
  9. func (h *Handler) getUoTConnection(ctx context.Context, dest net.Destination) (stat.Connection, error) {
  10. return nil, os.ErrInvalid
  11. }