X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientauthhandler.h;h=6683d1dd06c6efa1a0701762054ab6fa2477e906;hp=d80051a8ab72be2690a2a0f570b6b1257c0457f8;hb=d1bf207d30fe62a15d0e8669d186374c68e6eae8;hpb=e55d141896130c9b82bfae60e23078b8b765d85e diff --git a/src/client/clientauthhandler.h b/src/client/clientauthhandler.h index d80051a8..6683d1dd 100644 --- a/src/client/clientauthhandler.h +++ b/src/client/clientauthhandler.h @@ -78,10 +78,17 @@ private: void handle(const Protocol::LoginSuccess &msg); void handle(const Protocol::SessionState &msg); + void setPeer(RemotePeer *peer); + void checkAndEnableSsl(bool coreSupportsSsl); + void startRegistration(); + private slots: void onSocketConnected(); void onSocketStateChanged(QAbstractSocket::SocketState state); - //void onSocketError(QAbstractSocket::SocketError); + void onSocketError(QAbstractSocket::SocketError); + void onSocketDisconnected(); + void onReadyRead(); + #ifdef HAVE_SSL void onSslSocketEncrypted(); void onSslErrors(); @@ -96,7 +103,9 @@ private: bool _coreConfigured; QVariantList _backendInfo; CoreAccount _account; - + bool _probing; + bool _legacy; + quint8 _connectionFeatures; }; #endif