mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 10:20:44 -05:00
31 lines
553 B
Go
31 lines
553 B
Go
|
package udp
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
|
||
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
||
|
"github.com/v2ray/v2ray-core/transport/internet"
|
||
|
)
|
||
|
|
||
|
type Connection struct {
|
||
|
net.UDPConn
|
||
|
}
|
||
|
|
||
|
func (this *Connection) Reusable() bool {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (this *Connection) SetReusable(b bool) {}
|
||
|
|
||
|
func init() {
|
||
|
internet.UDPDialer = func(src v2net.Address, dest v2net.Destination) (internet.Connection, error) {
|
||
|
conn, err := internet.DialToDest(src, dest)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &Connection{
|
||
|
UDPConn: *(conn.(*net.UDPConn)),
|
||
|
}, nil
|
||
|
}
|
||
|
}
|