]> git.sesse.net Git - cubemap/blobdiff - input.cpp
Reconnect when the input goes away.
[cubemap] / input.cpp
index f9f879b6c2a393f6671b42fb25e4462854e04711..fd71d4072fa64fbd30eb0d584b9b0f0217f01b2a 100644 (file)
--- 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)