I need to know the IP of the clients that call my server. But I haven't found any method to do it. I have been searching in the code of the Chris Morley's libraries but I coudn't found any information about the client's IP or Host name.
Any one can help me??
Thanks!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
AFAIK client information is exchanged while accepting a connection using accept(). This is done in member XmlRpcSocket::accept().
Information is hold in a local variable so it is not accessible outside this function.
Hope that helps
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I need to know the IP of the clients that call my server. But I haven't found any method to do it. I have been searching in the code of the Chris Morley's libraries but I coudn't found any information about the client's IP or Host name.
Any one can help me??
Thanks!
AFAIK client information is exchanged while accepting a connection using accept(). This is done in member XmlRpcSocket::accept().
Information is hold in a local variable so it is not accessible outside this function.
Hope that helps