| 123456789101112131415161718192021222324252627282930313233343536373839404142 | // +build linuxpackage udpimport (	"syscall"	"v2ray.com/core/common/net")func SetOriginalDestOptions(fd int) error {	if err := syscall.SetsockoptInt(fd, syscall.SOL_IP, syscall.IP_TRANSPARENT, 1); err != nil {		return err	}	if err := syscall.SetsockoptInt(fd, syscall.SOL_IP, syscall.IP_RECVORIGDSTADDR, 1); err != nil {		return err	}	return nil}func RetrieveOriginalDest(oob []byte) net.Destination {	msgs, err := syscall.ParseSocketControlMessage(oob)	if err != nil {		return net.Destination{}	}	for _, msg := range msgs {		if msg.Header.Level == syscall.SOL_IP && msg.Header.Type == syscall.IP_RECVORIGDSTADDR {			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 == syscall.IP_RECVORIGDSTADDR {			ip := net.IPAddress(msg.Data[8:24])			port := net.PortFromBytes(msg.Data[2:4])			return net.UDPDestination(ip, port)		}	}	return net.Destination{}}func ReadUDPMsg(conn *net.UDPConn, payload []byte, oob []byte) (int, int, int, *net.UDPAddr, error) {	return conn.ReadMsgUDP(payload, oob)}
 |