| 475 | } |
| 476 | |
| 477 | static void LoadBalancer(void* arg) |
| 478 | { |
| 479 | HttpService* service = (HttpService*) arg; |
| 480 | while (service->m_Run) { |
| 481 | dmMessage::DispatchBlocking(service->m_Socket, &LoadBalance, service); |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | HHttpService New(const Params* params) |
| 486 | { |
nothing calls this directly
no test coverage detected