mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-09-25 18:31:39 +00:00
https://github.com/XTLS/Xray-core/pull/6546#issuecomment-5100711574
18 lines
431 B
Go
18 lines
431 B
Go
//go:build !linux && !freebsd && !darwin && !openbsd
|
|
// +build !linux,!freebsd,!darwin,!openbsd
|
|
|
|
package udp
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/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
|
|
}
|