IOTeule
Results
2
comments of
IOTeule
I think, this should fix it: ``` void Client::receiveTask() { while(isConnected()) { const fd_wait::Result waitResult = fd_wait::waitFor(_sockfd); if (waitResult == fd_wait::Result::FAILURE) { throw std::runtime_error(strerror(errno)); } else if (waitResult == fd_wait::Result::TIMEOUT)...
see PR