diff options
author | deva <deva> | 2009-11-04 10:01:23 +0000 |
---|---|---|
committer | deva <deva> | 2009-11-04 10:01:23 +0000 |
commit | 47ddcf0d11f626e8a6fe6d3142bd38f9c129ef8b (patch) | |
tree | 3ea32ab6845b14197c2dc6d0c4e9b431618d6571 /client/netcom.h | |
parent | 1782d12938ba89b67a52677d162d4c865f00cbe0 (diff) |
Prepare for SSL encrypted connection (https).
Diffstat (limited to 'client/netcom.h')
-rw-r--r-- | client/netcom.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/netcom.h b/client/netcom.h index e11509b..c40f85c 100644 --- a/client/netcom.h +++ b/client/netcom.h @@ -33,6 +33,8 @@ #include <QDomDocument> #include <QHttp> +//#define USE_SSL + //#include "widgets/widget.h" class Widget; @@ -47,6 +49,9 @@ public: public slots: void done(bool); +#ifdef USE_SSL + void sslError(const QList<QSslError> &errlst); +#endif private: volatile bool transfering; |