Get the Remote IP and port from the server- solved

Thanks again to Sandeep..

The latest library, version 0.15, now has calls to retrieve the remote IP and port.

long rport; // remote port
IPAddress thisclient; // remote ip

rport = client.remotePort();
thisclient = client.remoteIP();

David