Is it possible to get the RTT and the IP address from in the new Transport package ?
It is possible to calculate RTT the same way the ping samples in GitHub - Unity-Technologies/multiplayer: Unity multiplayer packages and samples does, but you cannot get it directly from the transport since the transport does not know which packages are responses to what so it cannot calculate it.
The IP is inside the NetworkEndPoint which you can get from the driver, but in the current version there is no public api to access the actual address from it. We will fix that and make it possible to get the raw address from the end point.
2 Likes