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.

In reference to this question: What is the background that a java.net.DatagramSocket supports a "connected" state?

I would have expected that the isConnected() method always returns false, since UDP/datagram sockets do not support a connected state. But a quick look at the sources shows that there is some logic behind the isConnected() method. Why?

share|improve this question

1 Answer

up vote 2 down vote accepted

Read the Javadoc. When you "connect" a DatagramSocket to a remote IP/port you are just telling the socket not to accept packets to or from any other remote host.

share|improve this answer
So, simply said, this is an extension to the underlying network protocol states, and the connected state of DatagramSocket has nothing to do with network level states, right? – Andreas Oct 2 '12 at 6:19
That is correct. – Jim Garrison Oct 2 '12 at 6:19
And also to only send to that remote host:ip. – EJP Oct 2 '12 at 6:59

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.