| 1305 | #define RETRIEVELIMIT 5000 |
| 1306 | |
| 1307 | int progress_callback_retrieveservers(void *data, float progress) |
| 1308 | { |
| 1309 | if(progress < 0) show_out_of_renderloop_progress(progress + 1.0f, "waiting for response (esc to abort)"); |
| 1310 | else show_out_of_renderloop_progress(min(progress, 1.0f), (const char *)data); |
| 1311 | return interceptkey(SDLK_ESCAPE) ? 1 : 0; |
| 1312 | } |
| 1313 | |
| 1314 | VARP(mastertype, 0, 0, 1); // 0: TCP direct, 1: HTTP proxy |
| 1315 |
nothing calls this directly
no test coverage detected