On unix system when you call the accept system call, does the newly created socket have a different port number from the listening socket?
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.
No, it has the same port number.
TCP/IP connections are differentiated by their source and destination ips, and source and destination port numbers, so each connection to the same port from the same “client” on the “recipient” will have the same port on the “recipient,” but a unique* port on the “client.”
*Unique, at least, from the perspective of the “recipient.”