mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-13 04:03:19 +00:00
16 lines
295 B
Go
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
|
||
|
}
|