1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-05 13:35:23 +00:00
v2fly/transport/internet/udp/hub_other.go

23 lines
418 B
Go
Raw Normal View History

2016-08-15 15:44:46 +00:00
// +build !linux
package udp
import (
2016-08-19 10:58:26 +00:00
"net"
2016-08-20 18:55:45 +00:00
v2net "v2ray.com/core/common/net"
2016-08-15 15:44:46 +00:00
)
func SetOriginalDestOptions(fd int) error {
return nil
}
func RetrieveOriginalDest(oob []byte) v2net.Destination {
2016-09-20 09:53:05 +00:00
return v2net.Destination{}
2016-08-15 15:44:46 +00:00
}
2016-08-19 10:58:26 +00: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
}