If two devices with different IP addresses send UDP packets through processes with different ports to the same destination device and on the same destination port, will the two packets be received by the same socket?
Asked
Active
Viewed 143 times
0
-
1Yes...the receiving socket will be the same for both packets. – Jonathan Leffler May 17 '13 at 06:48
-
A socket is a combination of IP address and a port number. As log as these things are same they will represent same socket. – me_digvijay May 17 '13 at 07:02