mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
32 lines
586 B
Go
32 lines
586 B
Go
package udp
|
|
|
|
import (
|
|
"net"
|
|
|
|
v2net "v2ray.com/core/common/net"
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
type Connection struct {
|
|
net.UDPConn
|
|
}
|
|
|
|
func (v *Connection) Reusable() bool {
|
|
return false
|
|
}
|
|
|
|
func (v *Connection) SetReusable(b bool) {}
|
|
|
|
func init() {
|
|
internet.UDPDialer = func(src v2net.Address, dest v2net.Destination, options internet.DialerOptions) (internet.Connection, error) {
|
|
conn, err := internet.DialToDest(src, dest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// TODO: handle dialer options
|
|
return &Connection{
|
|
UDPConn: *(conn.(*net.UDPConn)),
|
|
}, nil
|
|
}
|
|
}
|