mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
410 B
17 lines
410 B
//go:build !linux && !freebsd && !darwin |
|
// +build !linux,!freebsd,!darwin |
|
|
|
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 |
|
}
|
|
|