From: Steinar H. Gunderson Date: Sat, 6 Apr 2013 22:09:07 +0000 (+0200) Subject: Reconnect when the input goes away. X-Git-Tag: 1.0.0~202 X-Git-Url: https://git.sesse.net/?p=cubemap;a=commitdiff_plain;h=62d560b67de3a922bc26ef5c0c2a72a9a09e7905 Reconnect when the input goes away. --- 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)