as I think I can answer this question to myself by reading the MSDN description of closesocket, I want to have it confirmed by one of the experienced guys since the MSDN kinda only implies it from what I've read.

Is WSAENOBUFS a symptom of missing closesocket calls to used sockets ?

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

The occurence of WSAENOBUFS error messages does not necessarily mean that it is a symptom of missing closesocket calls. But it might be.

The system responds with this message if you have not the necessary resources and or there are too many open sockets. However it might also be that you close everything appropriately but you try to open too much sockets or have no resources left.

link|improve this answer
Yea I was aware of the other possible explainations, just didn't know which system error will be "thrown", so I asked the other way around. Thanks for your answer ( and also thanks to Ates and INS ) – Andy Feb 7 at 6:55
So the answer is yes. There is a upper limit and if sockets are not closed properly you will reach it sometimes. – fyr Feb 7 at 6:56
feedback

Yes, it can be a symptom of leaking of unclosed sockets.

link|improve this answer
feedback

Yes, it seems that this is related to the number of sockets that are (left) opened; from here.

link|improve this answer
That's a very old article you found there. – Len Holgate Feb 7 at 9:00
feedback

Your Answer

 
or
required, but never shown

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