1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-21 04:34:15 -04:00
v2fly/transport/internet/udp/dialer.go

22 lines
457 B
Go
Raw Normal View History

2016-06-14 16:54:08 -04:00
package udp
import (
"context"
2017-01-03 09:16:48 -05:00
"v2ray.com/core/common"
"v2ray.com/core/common/net"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/transport/internet"
2016-06-14 16:54:08 -04:00
)
func init() {
2018-08-06 07:48:35 -04:00
common.Must(internet.RegisterTransportDialer(protocolName,
func(ctx context.Context, dest net.Destination) (internet.Connection, error) {
conn, err := internet.DialSystem(ctx, dest)
2017-01-03 09:16:48 -05:00
if err != nil {
return nil, err
}
// TODO: handle dialer options
return internet.Connection(conn), nil
2017-01-03 09:16:48 -05:00
}))
2016-06-14 16:54:08 -04:00
}