Xray-core/transport/internet/udp/hub_other.go

18 lines
410 B
Go
Raw Normal View History

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