Any API to get IP address and port number of remote TCP CLient?

Could some one help me finding a way to get IP address and Port number of TCP client at Arduino Server example?

I am trying to send data from Linux TCP client to Arduino TCP server(Made example code for that),
I am able to receive data over tcp socket .

I want to know if there is an API call to get IP address and port of Client from where arduino server has received data.

Thanks in Advance

I don't see anything in the source or documentation to do it for TCP clients. You can send data to the client with client.write() but I don't see any way to fetch the IP address or port number.

For UDP packets you can use remoteIP and remotePort.

The below might have some info.

http://forum.arduino.cc/index.php/topic,82416.0.html