mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-08-23 01:56:48 +08:00
v1.0.0
This commit is contained in:
16
transport/internet/udp/hub_other.go
Normal file
16
transport/internet/udp/hub_other.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// +build !linux,!freebsd
|
||||
|
||||
package udp
|
||||
|
||||
import (
|
||||
"github.com/xtls/xray-core/v1/common/net"
|
||||
)
|
||||
|
||||
func RetrieveOriginalDest(oob []byte) net.Destination {
|
||||
return net.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
|
||||
}
|
Reference in New Issue
Block a user