Hang on DatagramSocket.send() without bind()
Sometimes my program hangs on the first call to DatagramSocket.send() if I have not called bind() and gave the constructor a null argument.
If I suspend the thread, it's stuck in DatagramSocket.bind()
It seems like if I always give the constructor a socket address, this doesn't happen. Can someone explain what's going on?

