summaryrefslogtreecommitdiffstats
path: root/checkcloudconnection.h
diff options
context:
space:
mode:
Diffstat (limited to 'checkcloudconnection.h')
-rw-r--r--checkcloudconnection.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/checkcloudconnection.h b/checkcloudconnection.h
index 6c85203ac..58a412797 100644
--- a/checkcloudconnection.h
+++ b/checkcloudconnection.h
@@ -2,6 +2,8 @@
#define CHECKCLOUDCONNECTION_H
#include <QObject>
+#include <QNetworkReply>
+#include <QSsl>
#include "checkcloudconnection.h"
@@ -9,7 +11,12 @@ class CheckCloudConnection : public QObject {
Q_OBJECT
public:
CheckCloudConnection(QObject *parent = 0);
- static bool checkServer();
+ bool checkServer();
+private:
+ QNetworkReply *reply;
+private
+slots:
+ void sslErrors(QList<QSslError> errorList);
};
#endif // CHECKCLOUDCONNECTION_H