mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-10 02:53:11 +00:00
17 lines
364 B
Go
17 lines
364 B
Go
|
// +build !linux,!freebsd
|
||
|
|
||
|
package udp
|
||
|
|
||
|
import (
|
||
|
"github.com/xtls/xray-core/v1/common/net"
|
||
|
)
|
||
|
|
||
|
func RetrieveOriginalDest(oob []byte) net.Destination {
|
||
|
return net.Destination{}
|
||
|
}
|
||
|
|
||
|
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
|
||
|
}
|