In socket prgramming in “C” how do I find out the IP address of the Client who is connecting to the Server? How can the server get the client’s IP address?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You didn’t mention any API, but the
acceptfunction/system call generally accepts asockaddr *argument where it stores the address of the peer.Alternatively you can use
getpeernameto retrieve the same address at a later time.If you happen to use winapi:
accept,getpeername.