X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=input.cpp;h=fd71d4072fa64fbd30eb0d584b9b0f0217f01b2a;hp=f9f879b6c2a393f6671b42fb25e4462854e04711;hb=62d560b67de3a922bc26ef5c0c2a72a9a09e7905;hpb=6d062eab70fd6528219545846e6c19c1cad35a3d diff --git a/input.cpp b/input.cpp index f9f879b..fd71d40 100644 --- a/input.cpp +++ b/input.cpp @@ -61,10 +61,15 @@ void *Input::do_work_thunk(void *arg) void Input::do_work() { CURL *curl = curl_easy_init(); - curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); - curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &Input::curl_callback_thunk); - curl_easy_setopt(curl, CURLOPT_WRITEDATA, this); - curl_easy_perform(curl); + + for ( ;; ) { + curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); + curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &Input::curl_callback_thunk); + curl_easy_setopt(curl, CURLOPT_WRITEDATA, this); + curl_easy_perform(curl); + printf("Transfer ended, waiting 0.2 seconds and restarting...\n"); + usleep(200000); + } } size_t Input::curl_callback_thunk(char *ptr, size_t size, size_t nmemb, void *userdata)