2016-08-15 11:44:46 -04:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package udp
|
|
|
|
|
|
|
|
import (
|
2017-08-29 06:56:57 -04:00
|
|
|
"v2ray.com/core/common/net"
|
2016-08-15 11:44:46 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func SetOriginalDestOptions(fd int) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-08-29 06:56:57 -04:00
|
|
|
func RetrieveOriginalDest(oob []byte) net.Destination {
|
|
|
|
return net.Destination{}
|
2016-08-15 11:44:46 -04:00
|
|
|
}
|
2016-08-19 06:58:26 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|