Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
I have a requirement where I want to inspect a remote client's IP address when it talks to the server over the Sasl transport. If the transport is TSocket, I could do the following in my implementation of TProcessor.process(TProtocol inProt, TProtocol outProt):
((TSocket)inProt.getTransport()).getSocket().getInetAddress()
I need a similar functionality for the Sasl transport as well.