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

34 lines
903 B
Go
Raw Normal View History

2016-08-15 15:44:46 +00:00
// +build linux
package udp
import (
"syscall"
"golang.org/x/sys/unix"
2017-08-29 12:32:54 +00:00
"v2ray.com/core/common/net"
2016-08-15 15:44:46 +00:00
)
2017-08-29 12:32:54 +00:00
func RetrieveOriginalDest(oob []byte) net.Destination {
2016-08-15 15:44:46 +00:00
msgs, err := syscall.ParseSocketControlMessage(oob)
if err != nil {
2017-08-29 12:32:54 +00:00
return net.Destination{}
2016-08-15 15:44:46 +00:00
}
for _, msg := range msgs {
2017-01-13 16:10:07 +00:00
if msg.Header.Level == syscall.SOL_IP && msg.Header.Type == syscall.IP_RECVORIGDSTADDR {
2017-08-29 12:32:54 +00:00
ip := net.IPAddress(msg.Data[4:8])
port := net.PortFromBytes(msg.Data[2:4])
return net.UDPDestination(ip, port)
} else if msg.Header.Level == syscall.SOL_IPV6 && msg.Header.Type == unix.IPV6_RECVORIGDSTADDR {
2017-08-29 12:32:54 +00:00
ip := net.IPAddress(msg.Data[8:24])
port := net.PortFromBytes(msg.Data[2:4])
return net.UDPDestination(ip, port)
2016-08-15 15:44:46 +00:00
}
}
2017-08-29 12:32:54 +00:00
return net.Destination{}
2016-08-15 15:44:46 +00:00
}
2016-08-19 10:58:26 +00:00
2017-08-29 12:32:54 +00:00
func ReadUDPMsg(conn *net.UDPConn, payload []byte, oob []byte) (int, int, int, *net.UDPAddr, error) {
2016-08-19 10:58:26 +00:00
return conn.ReadMsgUDP(payload, oob)
}