summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/httpget.cpp
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2008-06-02 19:29:54 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2008-06-02 19:29:54 +0000
commit44bc9157ee5437bd36abbbe483e1e0e81c15b839 (patch)
tree4ec76f6d87e363c89a3a6cb689f8b15b3861baac /rbutil/rbutilqt/httpget.cpp
parent758072173ec6e3551c451f55b744d38e87b7a9dd (diff)
downloadrockbox-44bc9157ee5437bd36abbbe483e1e0e81c15b839.tar.gz
rockbox-44bc9157ee5437bd36abbbe483e1e0e81c15b839.zip
Extend http class to allow retrieving of the server timestamp once a file has been downloaded.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17680 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/httpget.cpp')
-rw-r--r--rbutil/rbutilqt/httpget.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/httpget.cpp b/rbutil/rbutilqt/httpget.cpp
index a1385c5755..488155610d 100644
--- a/rbutil/rbutilqt/httpget.cpp
+++ b/rbutil/rbutilqt/httpget.cpp
@@ -45,6 +45,9 @@ HttpGet::HttpGet(QObject *parent)
45 setProxy(m_globalProxy); 45 setProxy(m_globalProxy);
46 m_usecache = false; 46 m_usecache = false;
47 m_cachedir = m_globalCache; 47 m_cachedir = m_globalCache;
48
49 m_serverTimestamp = QDateTime();
50
48 connect(&http, SIGNAL(done(bool)), this, SLOT(httpDone(bool))); 51 connect(&http, SIGNAL(done(bool)), this, SLOT(httpDone(bool)));
49 connect(&http, SIGNAL(dataReadProgress(int, int)), this, SLOT(httpProgress(int, int))); 52 connect(&http, SIGNAL(dataReadProgress(int, int)), this, SLOT(httpProgress(int, int)));
50 connect(&http, SIGNAL(requestFinished(int, bool)), this, SLOT(httpFinished(int, bool))); 53 connect(&http, SIGNAL(requestFinished(int, bool)), this, SLOT(httpFinished(int, bool)));