When I call recvfrom() on the blocking udp socket after sendto() call it returns 0.

But when I call Sleep() function between them, recvfrom() returns the correct lenghth of the received udp packet.

The same correct behaviour is present when I use the debugger in step over mode.

Can some clarify this behavior of the udp socket?

link|improve this question

62% accept rate
1  
C/C++/C# ? Some code illustrating the behaviour would be helpful – arunkumar Aug 29 '11 at 18:47
I am using microsoft visual c++. The strange behaviour disapear when I pass to recvfrom () NULL value for src address. – Art Spasky Aug 29 '11 at 19:26
1  
You probably forgot to initialize the variable your last parameter to recvfrom points to. It is both an input and output parameter. – David Schwartz Sep 24 '11 at 18:36
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.