1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 11:35:23 +00:00
v2fly/transport/internet/udp/hub_other.go

17 lines
350 B
Go
Raw Normal View History

// +build !linux,!freebsd
2016-08-15 15:44:46 +00:00
package udp
import (
"v2ray.com/core/common/net"
2016-08-15 15:44:46 +00:00
)
func RetrieveOriginalDest(oob []byte) net.Destination {
return net.Destination{}
2016-08-15 15:44:46 +00:00
}
2016-08-19 10:58:26 +00:00
func ReadUDPMsg(conn *net.UDPConn, payload []byte, oob []byte) (int, int, int, *net.UDPAddr, error) {
nBytes, addr, err := conn.ReadFromUDP(payload)
return nBytes, 0, 0, addr, err
}