X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientauthhandler.h;h=47b42a71be8a2fe0efd4c703def493d165308d29;hp=d80051a8ab72be2690a2a0f570b6b1257c0457f8;hb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;hpb=b654b2f908590b6f69a7edadf9dacf1277a4493b diff --git a/src/client/clientauthhandler.h b/src/client/clientauthhandler.h index d80051a8..47b42a71 100644 --- a/src/client/clientauthhandler.h +++ b/src/client/clientauthhandler.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,9 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef CLIENTAUTHHANDLER_H -#define CLIENTAUTHHANDLER_H +#pragma once +#include "compressor.h" #include "authhandler.h" #include "coreaccount.h" @@ -33,7 +33,15 @@ class ClientAuthHandler : public AuthHandler Q_OBJECT public: - ClientAuthHandler(CoreAccount account, QObject *parent = 0); + enum DigestVersion { + Md5, + Sha2_512, + Latest=Sha2_512 + }; + + ClientAuthHandler(CoreAccount account, QObject *parent = nullptr); + + Peer *peer() const; public slots: void connectToCore(); @@ -63,7 +71,7 @@ signals: #endif void encrypted(bool isEncrypted = true); - void startCoreSetup(const QVariantList &backendInfo); + void startCoreSetup(const QVariantList &backendInfo, const QVariantList &authenticatorInfo); void coreSetupSuccessful(); void coreSetupFailed(const QString &error); @@ -78,10 +86,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(); @@ -95,8 +110,9 @@ private: RemotePeer *_peer; bool _coreConfigured; QVariantList _backendInfo; + QVariantList _authenticatorInfo; CoreAccount _account; - + bool _probing; + bool _legacy; + quint8 _connectionFeatures; }; - -#endif