0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-04-28 06:11:24 +03:00

16 lines
295 B
Go

//go:build !go1.18
package outbound
import (
"context"
"os"
"github.com/xtls/xray-core/common/net"
"github.com/xtls/xray-core/transport/internet/stat"
)
func (h *Handler) getUoTConnection(ctx context.Context, dest net.Destination) (stat.Connection, error) {
return nil, os.ErrInvalid
}