Hi,
In C++, is there a way to identify the stream id of a client who is making the rpc call?
If not, is ServerContext::peer() a reliable way to go about it? From documentation I understand that peer() value is never authenticated or subject to any security related code. But I am hoping it'd be reliable if not compromised (meaning different rpc calls from the same peer always return the same value). One downside of this approach is that this call always makes an allocation. So if there is a way to get the stream id of the peer, that'd be nice.
Thanks
Arpit