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