mirror of https://github.com/v2ray/v2ray-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.
23 lines
418 B
23 lines
418 B
// +build !linux
|
|
|
|
package udp
|
|
|
|
import (
|
|
"net"
|
|
|
|
v2net "v2ray.com/core/common/net"
|
|
)
|
|
|
|
func SetOriginalDestOptions(fd int) error {
|
|
return nil
|
|
}
|
|
|
|
func RetrieveOriginalDest(oob []byte) v2net.Destination {
|
|
return v2net.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
|
|
}
|