diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2008-03-01 13:52:02 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2008-03-01 13:52:02 +0000 |
| commit | c7727da19f24a81041563bc8a195531adcf0f628 (patch) | |
| tree | 5f461231ad247c84c27e55d52c9d50f5a22f1d65 | |
| parent | 05f24a1ec49d63100bf5eaa2d83b5bad4a4f61df (diff) | |
| download | rockbox-c7727da19f24a81041563bc8a195531adcf0f628.zip rockbox-c7727da19f24a81041563bc8a195531adcf0f628.tar.gz rockbox-c7727da19f24a81041563bc8a195531adcf0f628.tar.bz2 rockbox-c7727da19f24a81041563bc8a195531adcf0f628.tar.xz | |
httpget class: if a request is cancelled before a response is available give a hint about this instead of returning a nonsense response value.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16463 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/rbutilqt/httpget.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/httpget.cpp b/rbutil/rbutilqt/httpget.cpp index 0bf5d96..acd8940 100644 --- a/rbutil/rbutilqt/httpget.cpp +++ b/rbutil/rbutilqt/httpget.cpp @@ -32,6 +32,10 @@ HttpGet::HttpGet(QObject *parent) outputToBuffer = true; cached = false; getRequest = -1; + // if a request is cancelled before a reponse is available return some + // hint about this in the http response instead of nonsense. + response = -1; + connect(&http, SIGNAL(done(bool)), this, SLOT(httpDone(bool))); connect(&http, SIGNAL(dataReadProgress(int, int)), this, SLOT(httpProgress(int, int))); connect(&http, SIGNAL(requestFinished(int, bool)), this, SLOT(httpFinished(int, bool))); |