diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-19 10:37:20 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-19 10:37:20 +0200 |
| commit | 6a5198d23412a6d11f78cdef71850e578ca6f8c0 (patch) | |
| tree | 136afe4f0d78018a1ae97a35e770ae792ae66ebc /src/webclient.hpp | |
| parent | 9a5c0b8ba8595b9084ad8dc27884b0cbc691459c (diff) | |
| download | kristall-6a5198d23412a6d11f78cdef71850e578ca6f8c0.tar.gz | |
Allows user to skip over invalid TLS connections and fetch the content anyways.
Diffstat (limited to 'src/webclient.hpp')
| -rw-r--r-- | src/webclient.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/webclient.hpp b/src/webclient.hpp index 55439b9..53e7fad 100644 --- a/src/webclient.hpp +++ b/src/webclient.hpp @@ -18,7 +18,7 @@ public: bool supportsScheme(QString const & scheme) const override; - bool startRequest(QUrl const & url) override; + bool startRequest(QUrl const & url, RequestOptions options) override; bool isInProgress() const override; @@ -35,6 +35,7 @@ private: QNetworkReply * current_reply; QByteArray body; + RequestOptions options; }; #endif // WEBCLIENT_HPP |
