I have a server program is running on my PC. The server program using socket to connect to many clients. Is there anyway to find out which client with witch IP is connected to the server at any time? Or how many clients are connected to the server?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
closed as off topic by casperOne♦ Oct 18 '12 at 15:52
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
When you accept a socket you can get its remote IP address.
If there are multiple clients connecting from that IP, this is not enough to tell the difference. If this is an issue you can have the client send a unique id so you know which client it is. |
|||||||||||
|