1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-08 02:05:31 -05:00

Fix UDP reading on Windows

This commit is contained in:
v2ray
2016-08-19 12:58:26 +02:00
parent ad1353ac2f
commit 55e5268ce8
3 changed files with 13 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
package udp
import (
"net"
"syscall"
v2net "github.com/v2ray/v2ray-core/common/net"
@@ -32,3 +33,7 @@ func RetrieveOriginalDest(oob []byte) v2net.Destination {
}
return nil
}
func ReadUDPMsg(conn *net.UDPConn, payload []byte, oob []byte) (int, int, int, *net.UDPAddr, error) {
return conn.ReadMsgUDP(payload, oob)
}