Xray-core/transport/internet/udp/hub_other.go
2021-09-20 21:00:55 +08:00

18 lines
391 B
Go

//go:build !linux && !freebsd
// +build !linux,!freebsd
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
}