mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
26 lines
676 B
Go
26 lines
676 B
Go
package udp
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
"github.com/v2fly/v2ray-core/v4/common/net"
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet"
|
|
)
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterTransportDialer(protocolName,
|
|
func(ctx context.Context, dest net.Destination, streamSettings *internet.MemoryStreamConfig) (internet.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 internet.Connection(conn), nil
|
|
}))
|
|
}
|