X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fclientauthhandler.h;h=8cc07d12688434b058816f2d2cd40e62f63fb844;hb=98144aaad0cd747f186edcd0e36a1d67326ac766;hp=888f935df0e27b71b74f0dfa3b4666f4f3bd1125;hpb=68878dc8366f2f4a0afe132847aad9a51a80cdbf;p=quassel.git diff --git a/src/client/clientauthhandler.h b/src/client/clientauthhandler.h index 888f935d..8cc07d12 100644 --- a/src/client/clientauthhandler.h +++ b/src/client/clientauthhandler.h @@ -39,7 +39,7 @@ public: Latest=Sha2_512 }; - ClientAuthHandler(CoreAccount account, QObject *parent = 0); + ClientAuthHandler(CoreAccount account, QObject *parent = nullptr); Peer *peer() const; @@ -78,27 +78,23 @@ signals: private: using AuthHandler::handle; - void handle(const Protocol::ClientDenied &msg); - void handle(const Protocol::ClientRegistered &msg); - void handle(const Protocol::SetupFailed &msg); - void handle(const Protocol::SetupDone &msg); - void handle(const Protocol::LoginFailed &msg); - void handle(const Protocol::LoginSuccess &msg); - void handle(const Protocol::SessionState &msg); + void handle(const Protocol::ClientDenied &msg) override; + void handle(const Protocol::ClientRegistered &msg) override; + void handle(const Protocol::SetupFailed &msg) override; + void handle(const Protocol::SetupDone &msg) override; + void handle(const Protocol::LoginFailed &msg) override; + void handle(const Protocol::LoginSuccess &msg) override; + void handle(const Protocol::SessionState &msg) override; void setPeer(RemotePeer *peer); void checkAndEnableSsl(bool coreSupportsSsl); void startRegistration(); -#if QT_VERSION < 0x050000 - QByteArray sha2_512(const QByteArray &input); -#endif - private slots: void onSocketConnected(); void onSocketStateChanged(QAbstractSocket::SocketState state); - void onSocketError(QAbstractSocket::SocketError); - void onSocketDisconnected(); + void onSocketError(QAbstractSocket::SocketError) override; + void onSocketDisconnected() override; void onReadyRead(); #ifdef HAVE_SSL