Hey guys,
I am currently make a Server, I learned to make something like this:
while(true)
{
SOCKET s = accept(s, ....)
// do something with the connection
printf("connection\n");
}
I learned that it will stuck at accept(..) while there isnt a connection. In my Program there isnt any connection yet, but it get overflowed with connection ?? I mean my Console got spammed with "connection".
So whats wrong?
THX Guys i fixed it now :)