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.
  1. When receiving a packet on an unconnected UDP socket bound to 0.0.0.0/INADDR_ANY, how can I determine what the local IP it was sent to?
  2. Can I determine what interface it was received on?
  3. Can this be also be done for connection-oriented sockets such as TCP?

Update0

  1. Platform is Linux, so language is irrelevant but C is native.
  2. UDP sockets are bound to INADDR_ANY host, so getsockname() returns 0.0.0.0.
share|improve this question
Maybe tag what language? C? – Konerak Mar 7 '11 at 9:09
What language are you programming this on? – RedX Mar 7 '11 at 9:09
What does getsockname say? – larsmans Mar 7 '11 at 9:19
Try this question: stackoverflow.com/questions/3940612/… – Steve-o Mar 7 '11 at 12:39

2 Answers

up vote 1 down vote accepted

Hmmm, have a look at this. So looks like there is probably a socket option, at least in the Linux/Unix world. What OSes does it need to work on?

share|improve this answer
I've added the platform to the Q. – Matt Joiner Mar 7 '11 at 12:24

I've had to deal with the same issue on Windows platforms. My solution was to explicitly listen on all available interfaces as that way getsockname() works as expected.

share|improve this answer
1  
This is my current work around. – Matt Joiner Mar 7 '11 at 10:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.