summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2014-08-10 13:41:23 +0200
committerJochen Dolze <vdr@dolze.de>2014-08-10 13:41:23 +0200
commited028fe438fcb794d9e62090facc71dfde94f7a9 (patch)
tree2e4d2c79b05d3c4c85bc7ee370178256b3caf1c8
parent0c874fcecd4c4389a4de4e559251faadbc211126 (diff)
downloadvdr-plugin-xmltv2vdr-ed028fe438fcb794d9e62090facc71dfde94f7a9.tar.gz
vdr-plugin-xmltv2vdr-ed028fe438fcb794d9e62090facc71dfde94f7a9.tar.bz2
Increased timeout in epgdata2xmltv to 300 seconds, fixes bug #1869
-rw-r--r--dist/epgdata2xmltv/epgdata2xmltv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/epgdata2xmltv/epgdata2xmltv.cpp b/dist/epgdata2xmltv/epgdata2xmltv.cpp
index 603a3a5..9437a18 100644
--- a/dist/epgdata2xmltv/epgdata2xmltv.cpp
+++ b/dist/epgdata2xmltv/epgdata2xmltv.cpp
@@ -118,7 +118,7 @@ int cepgdata2xmltv::DownloadData(const char *url)
curl_easy_setopt(curl_handle, CURLOPT_MAXFILESIZE, 85971520); // Set maximum file size to get (bytes)
curl_easy_setopt(curl_handle, CURLOPT_NOPROGRESS, 1); // No progress meter
curl_easy_setopt(curl_handle, CURLOPT_NOSIGNAL, 1); // No signaling
- curl_easy_setopt(curl_handle, CURLOPT_TIMEOUT, 240); // Set timeout to 240 seconds
+ curl_easy_setopt(curl_handle, CURLOPT_TIMEOUT, 300); // Set timeout to 300 seconds
curl_easy_setopt(curl_handle, CURLOPT_USERAGENT, EPGDATA2XMLTV_USERAGENT); // Some servers don't like requests that are made without a user-agent field
ret=curl_easy_perform(curl_handle);