1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-06 03:54:22 -04:00
v2fly/transport/internet/udp/dialer.go

23 lines
510 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) {
src := internet.DialerSourceFromContext(ctx)
2017-02-23 17:48:47 -05:00
conn, err := internet.DialSystem(ctx, src, 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
}