2022-08-22 03:01:29 +00:00
|
|
|
//go:build !linux && !freebsd && !darwin
|
|
|
|
// +build !linux,!freebsd,!darwin
|
2020-11-25 11:01:53 +00:00
|
|
|
|
|
|
|
package udp
|
|
|
|
|
|
|
|
import (
|
2020-12-04 01:36:16 +00:00
|
|
|
"github.com/xtls/xray-core/common/net"
|
2020-11-25 11:01:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|