core: Remove slots from storage APIs
[quassel.git] / src / core / coreauthhandler.h
index e47be38..db54bec 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2019 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  *
@@ -24,6 +24,7 @@
 #include "authhandler.h"
 #include "metricsserver.h"
 #include "peerfactory.h"
+#include "proxyline.h"
 #include "remotepeer.h"
 #include "types.h"
 
@@ -34,6 +35,9 @@ class CoreAuthHandler : public AuthHandler
 public:
     CoreAuthHandler(QTcpSocket* socket, QObject* parent = nullptr);
 
+    QHostAddress hostAddress() const;
+    bool isLocal() const override;
+
 signals:
     void handshakeComplete(RemotePeer* peer, UserId uid);
 
@@ -63,6 +67,9 @@ private:
     RemotePeer* _peer;
     MetricsServer* _metricsServer;
 
+    bool _proxyReceived;
+    ProxyLine _proxyLine;
+    bool _useProxyLine;
     bool _magicReceived;
     bool _legacy;
     bool _clientRegistered;