How are ICMP replies associated with the request socket?
Maybe this is a silly question, but if I create a socket and send an ICMP echo request with sendto(), I can receive the echo reply with recvfrom(). How does the underlying network system know that the incoming reply is associated with my socket? In other words, why do I receive my echo reply with recvfrom() and not other echo replies to other programs that are also sending echo requests? Is there some kind of ID field in some protocol header somewhere that the system has associated with my socket?
Re: How are ICMP replies associated with the request socket?
Originally Posted by mnbv0987
Maybe this is a silly question, but if I create a socket and send an ICMP echo request with sendto(), I can receive the echo reply with recvfrom(). How does the underlying network system know that the incoming reply is associated with my socket?
The socket received your request know your address due to the fifth parameter of the recvfrom function:
from [out]
An optional pointer to a buffer in a sockaddr structure that will hold the source address upon return.
Re: How are ICMP replies associated with the request socket?
Originally Posted by VictorN
The socket received your request know your address due to the fifth parameter of the recvfrom function:
The fifth parameter returns the address that the message was received from. But how does the system know that the incoming ICMP reply is associated with my socket? In other words, if I call recvfrom(), I don't receive incoming data intended for other applications - how does the system associate that incoming reply with my socket descriptor? (The first parameter to recvfrom())?
Bookmarks