mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 01:53:36 -05:00
23 lines
418 B
Go
23 lines
418 B
Go
// +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
|
|
}
|