How to send timestamp via RPC so it was relative to the receiver?

The fact is Network.time is peer-relative and makes sense only when used with NetworkMessageInfo.timestamp withing OnSerializeNetworkView() method.

But I want to use an RPC and not the auto-syncing via OnSerializeNetworkView(). How can I send timestamps via RPC so it was valid for receiving peer???

Thank you.

OMG, there's internal parameter 'info : NetworkMessageInfo' appended to each RPC parameter list if you wish.

Like here:

@RPC
function PrintText (text : String, info : NetworkMessageInfo)
{
    Debug.Log(text + " from " + info.sender);
}