v2ray-core/transport/internet/udp/dialer.go

23 lines
536 B
Go
Raw Normal View History

2016-06-14 20:54:08 +00:00
package udp
import (
"context"
2017-01-03 14:16:48 +00:00
"v2ray.com/core/common"
2016-08-20 18:55:45 +00:00
v2net "v2ray.com/core/common/net"
"v2ray.com/core/transport/internet"
2016-06-14 20:54:08 +00:00
)
func init() {
common.Must(internet.RegisterTransportDialer(internet.TransportProtocol_UDP,
func(ctx context.Context, dest v2net.Destination) (internet.Connection, error) {
src := internet.DialerSourceFromContext(ctx)
2017-02-23 22:48:47 +00:00
conn, err := internet.DialSystem(ctx, src, dest)
2017-01-03 14:16:48 +00:00
if err != nil {
return nil, err
}
// TODO: handle dialer options
return internet.Connection(conn), nil
2017-01-03 14:16:48 +00:00
}))
2016-06-14 20:54:08 +00:00
}