ssl: Remove fallback code for missing SSL support
[quassel.git] / src / client / clientauthhandler.h
index 8cc07d1..b02c0c8 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2018 by the Quassel Project                        *
+ *   Copyright (C) 2005-2020 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -20,8 +20,8 @@
 
 #pragma once
 
-#include "compressor.h"
 #include "authhandler.h"
+#include "compressor.h"
 #include "coreaccount.h"
 
 class QSslSocket;
@@ -33,60 +33,59 @@ class ClientAuthHandler : public AuthHandler
     Q_OBJECT
 
 public:
-    enum DigestVersion {
+    enum DigestVersion
+    {
         Md5,
         Sha2_512,
-        Latest=Sha2_512
+        Latest = Sha2_512
     };
 
-    ClientAuthHandler(CoreAccount account, QObject *parent = nullptr);
+    ClientAuthHandler(CoreAccount account, QObjectparent = nullptr);
 
-    Peer *peer() const;
+    Peerpeer() const;
 
 public slots:
     void connectToCore();
 
-    void login(const QString &previousError = QString());
-    void login(const QString &user, const QString &password, bool remember);
-    void setupCore(const Protocol::SetupData &setupData);
+    void login(const QStringpreviousError = QString());
+    void login(const QString& user, const QString& password, bool remember);
+    void setupCore(const Protocol::SetupDatasetupData);
 
 signals:
-    void statusMessage(const QString &message);
-    void errorMessage(const QString &message);
-    void errorPopup(const QString &message);
+    void statusMessage(const QStringmessage);
+    void errorMessage(const QStringmessage);
+    void errorPopup(const QStringmessage);
     void transferProgress(int current, int max);
 
-    void requestDisconnect(const QString &errorString = QString(), bool wantReconnect = false);
+    void requestDisconnect(const QStringerrorString = QString(), bool wantReconnect = false);
 
     void connectionReady();
-    void loginSuccessful(const CoreAccount &account);
-    void handshakeComplete(RemotePeer *peer, const Protocol::SessionState &sessionState);
+    void loginSuccessful(const CoreAccountaccount);
+    void handshakeComplete(RemotePeer* peer, const Protocol::SessionState& sessionState);
 
     // These signals MUST be handled synchronously!
-    void userAuthenticationRequired(CoreAccount *account, bool *valid, const QString &errorMessage = QString());
-    void handleNoSslInClient(bool *accepted);
-    void handleNoSslInCore(bool *accepted);
-#ifdef HAVE_SSL
-    void handleSslErrors(const QSslSocket *socket, bool *accepted, bool *permanently);
-#endif
+    void userAuthenticationRequired(CoreAccount* account, bool* valid, const QString& errorMessage = QString());
+    void handleNoSslInClient(bool* accepted);
+    void handleNoSslInCore(bool* accepted);
+    void handleSslErrors(const QSslSocket* socket, bool* accepted, bool* permanently);
 
     void encrypted(bool isEncrypted = true);
-    void startCoreSetup(const QVariantList &backendInfo, const QVariantList &authenticatorInfo);
+    void startCoreSetup(const QVariantList& backendInfo, const QVariantList& authenticatorInfo);
     void coreSetupSuccessful();
-    void coreSetupFailed(const QString &error);
+    void coreSetupFailed(const QStringerror);
 
 private:
     using AuthHandler::handle;
 
-    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 handle(const Protocol::ClientDeniedmsg) override;
+    void handle(const Protocol::ClientRegisteredmsg) override;
+    void handle(const Protocol::SetupFailedmsg) override;
+    void handle(const Protocol::SetupDonemsg) override;
+    void handle(const Protocol::LoginFailedmsg) override;
+    void handle(const Protocol::LoginSuccessmsg) override;
+    void handle(const Protocol::SessionStatemsg) override;
 
-    void setPeer(RemotePeer *peer);
+    void setPeer(RemotePeerpeer);
     void checkAndEnableSsl(bool coreSupportsSsl);
     void startRegistration();
 
@@ -97,17 +96,15 @@ private slots:
     void onSocketDisconnected() override;
     void onReadyRead();
 
-#ifdef HAVE_SSL
     void onSslSocketEncrypted();
     void onSslErrors();
-#endif
 
     void onProtocolVersionMismatch(int actual, int expected);
 
     void onConnectionReady();
 
 private:
-    RemotePeer *_peer;
+    RemotePeer_peer;
     bool _coreConfigured;
     QVariantList _backendInfo;
     QVariantList _authenticatorInfo;