mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
706 B
26 lines
706 B
package udp |
|
|
|
import ( |
|
"context" |
|
|
|
"github.com/xtls/xray-core/common" |
|
"github.com/xtls/xray-core/common/net" |
|
"github.com/xtls/xray-core/transport/internet" |
|
"github.com/xtls/xray-core/transport/internet/stat" |
|
) |
|
|
|
func init() { |
|
common.Must(internet.RegisterTransportDialer(protocolName, |
|
func(ctx context.Context, dest net.Destination, streamSettings *internet.MemoryStreamConfig) (stat.Connection, error) { |
|
var sockopt *internet.SocketConfig |
|
if streamSettings != nil { |
|
sockopt = streamSettings.SocketSettings |
|
} |
|
conn, err := internet.DialSystem(ctx, dest, sockopt) |
|
if err != nil { |
|
return nil, err |
|
} |
|
// TODO: handle dialer options |
|
return stat.Connection(conn), nil |
|
})) |
|
}
|
|
|