Hello everybody,
I am currently working on a client/server chat interface-program. Everything works fine until I switch to release mode.
Console output:
The socket can't be added to the selector because its ID is too high. This is a limitation of your operating system's FD_SETSIZE
This output is generated because of
selector.add(listener)
I've already read something about this FD_SETSIZE problem on Windows, but I don't get why it randomly appears when I switch to release mode.