X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcore.h;h=5e73b7c8c1c48d3560b4f8acf94dadacb11f709c;hp=15a2e90a925bd8614a9b34fc74e255300f781e5d;hb=c7ad7451b1e899ba0de2ded9ac08359dff5cca61;hpb=44b22c4419f478a20f6324f9f3a700a2dec56302;ds=sidebyside diff --git a/src/core/core.h b/src/core/core.h index 15a2e90a..5e73b7c8 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -26,7 +26,7 @@ #include #include -#include "coreproxy.h" +#include "global.h" class CoreSession; class Storage; @@ -46,13 +46,11 @@ class Core : public QObject { static void disconnectLocalClient(); private slots: - void recvProxySignal(CoreSignal, QVariant, QVariant, QVariant); bool startListening(uint port = DEFAULT_PORT); void stopListening(); void incomingConnection(); void clientHasData(); void clientDisconnected(); - void updateGlobalData(UserId, QString); private: Core(); @@ -68,14 +66,12 @@ class Core : public QObject { */ QVariant initSession(UserId userId); void processClientInit(QTcpSocket *socket, const QVariant &v); - void processClientUpdate(QTcpSocket *socket, QString key, const QVariant &data); UserId guiUser; QHash sessions; Storage *storage; QTcpServer server; // TODO: implement SSL - QHash validClients; QHash blockSizes; };