Starts the main server loop If it has been stopped (or hasn't ever been started), it restarts it Nothing
| 241 | /// </summary> |
| 242 | /// <returns>Nothing</returns> |
| 243 | void StartServerLoop() { |
| 244 | if (!serverStarted) |
| 245 | std::thread(CrowdControlThread).detach(); |
| 246 | } |
| 247 | |
| 248 | /// <summary> |
| 249 | /// Starts the necessary threads to listen and respond to Crowd Control requests |
no outgoing calls
no test coverage detected