Search Results

3
votes

How do I create a TCP server that will accept only one connection at a time?

You could close your original socket that's listening for connections after accepting the first connection. I don't know if the socket class you're using will allow you to do that though. …
0
votes

C++ enum not properly recognized by compiler

Either of these two lines work for me: X obj(X::A); X obj2 = X(X::A); As Neil Butterworth points out, X(X::A) is being treated as a function declarati …