mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
684 B
24 lines
684 B
package udp
|
|
|
|
import (
|
|
"context"
|
|
|
|
"v2ray.com/core/common"
|
|
v2net "v2ray.com/core/common/net"
|
|
"v2ray.com/core/transport/internet"
|
|
"v2ray.com/core/transport/internet/internal"
|
|
)
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterTransportDialer(internet.TransportProtocol_UDP,
|
|
func(ctx context.Context, dest v2net.Destination) (internet.Connection, error) {
|
|
src := internet.DialerSourceFromContext(ctx)
|
|
conn, err := internet.DialSystem(src, dest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// TODO: handle dialer options
|
|
return internal.NewConnection(internal.NewConnectionID(src, dest), conn, internal.NoOpConnectionRecyler{}, internal.ReuseConnection(false)), nil
|
|
}))
|
|
}
|