X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fauthhandler.h;h=6a429d315303a5f3dbc9a45bfd7237eeec248153;hp=ce2ac677e3f5b5eba4be6f48fc6614e74b978caf;hb=95848fd9232d92f388e0e533adb15f6ba9d2d492;hpb=695758015a80eb8c158a9ac4c0f1c0b547e70df3 diff --git a/src/common/authhandler.h b/src/common/authhandler.h index ce2ac677..6a429d31 100644 --- a/src/common/authhandler.h +++ b/src/common/authhandler.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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,8 +18,9 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef AUTHHANDLER_H -#define AUTHHANDLER_H +#pragma once + +#include "common-export.h" #include @@ -27,41 +28,44 @@ class Peer; -class AuthHandler : public QObject +class COMMON_EXPORT AuthHandler : public QObject { Q_OBJECT public: - AuthHandler(QObject *parent = 0); + AuthHandler(QObject* parent = nullptr); - QTcpSocket *socket() const; + QTcpSocket* socket() const; bool isLocal() const; - virtual void handle(const Protocol::RegisterClient &) { invalidMessage(); } - virtual void handle(const Protocol::ClientDenied &) { invalidMessage(); } - virtual void handle(const Protocol::ClientRegistered &) { invalidMessage(); } - virtual void handle(const Protocol::SetupData &) { invalidMessage(); } - virtual void handle(const Protocol::SetupFailed &) { invalidMessage(); } - virtual void handle(const Protocol::SetupDone &) { invalidMessage(); } - virtual void handle(const Protocol::Login &) { invalidMessage(); } - virtual void handle(const Protocol::LoginFailed &) { invalidMessage(); } - virtual void handle(const Protocol::LoginSuccess &) { invalidMessage(); } - virtual void handle(const Protocol::SessionState &) { invalidMessage(); } + virtual void handle(const Protocol::RegisterClient&) { invalidMessage(); } + virtual void handle(const Protocol::ClientDenied&) { invalidMessage(); } + virtual void handle(const Protocol::ClientRegistered&) { invalidMessage(); } + virtual void handle(const Protocol::SetupData&) { invalidMessage(); } + virtual void handle(const Protocol::SetupFailed&) { invalidMessage(); } + virtual void handle(const Protocol::SetupDone&) { invalidMessage(); } + virtual void handle(const Protocol::Login&) { invalidMessage(); } + virtual void handle(const Protocol::LoginFailed&) { invalidMessage(); } + virtual void handle(const Protocol::LoginSuccess&) { invalidMessage(); } + virtual void handle(const Protocol::SessionState&) { invalidMessage(); } // fallback for unknown types, will trigger an error template - void handle(const T &) { invalidMessage(); } + void handle(const T&) + { + invalidMessage(); + } public slots: void close(); signals: void disconnected(); - void socketError(QAbstractSocket::SocketError error, const QString &errorString); + void socketError(QAbstractSocket::SocketError error, const QString& errorString); protected: - void setSocket(QTcpSocket *socket); + void setSocket(QTcpSocket* socket); protected slots: virtual void onSocketError(QAbstractSocket::SocketError error); @@ -70,8 +74,6 @@ protected slots: private: void invalidMessage(); - QTcpSocket *_socket; // FIXME: should be a QSharedPointer? -> premature disconnect before the peer has taken over - bool _disconnectedSent; + QTcpSocket* _socket{nullptr}; // FIXME: should be a QSharedPointer? -> premature disconnect before the peer has taken over + bool _disconnectedSent{false}; }; - -#endif