| 513 | } |
| 514 | |
| 515 | void FetchServersTask_Run(void) { |
| 516 | cc_string url; char urlBuffer[URL_MAX_SIZE]; |
| 517 | if (FetchServersTask.Base.working) return; |
| 518 | |
| 519 | LWebTask_Reset(&FetchServersTask.Base); |
| 520 | String_InitArray(url, urlBuffer); |
| 521 | String_Format1(&url, "%s/servers", &servicesServer); |
| 522 | |
| 523 | FetchServersTask.Base.Handle = FetchServersTask_Handle; |
| 524 | FetchServersTask.Base.reqID = Http_AsyncGetDataEx(&url, 0, NULL, NULL, &ccCookies); |
| 525 | } |
| 526 | |
| 527 | void FetchServersTask_ResetOrder(void) { |
| 528 | int i; |
no test coverage detected