X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fserver.h;h=dd8aac9b80c6d02d705b5fbd83626363525b7949;hp=34a451425323adbad42dc3ca2a28dbffe02f5859;hb=47b574c28983254b6679191f76ddb36fe7da7632;hpb=0ac9ce4d7cf768d13993d6aa1d6b791c4149a843 diff --git a/src/core/server.h b/src/core/server.h index 34a45142..dd8aac9b 100644 --- a/src/core/server.h +++ b/src/core/server.h @@ -29,8 +29,7 @@ #include #include "message.h" - -#define DEFAULT_PORT 6667 +#include "serverinfo.h" /*! @@ -159,7 +158,7 @@ class Server : public QThread { QHash topics; // stores topics for each buffer VarMap serverSupports; // stores results from RPL_ISUPPORT - void handleServerMsg(QString rawMsg); + void handleServerMsg(QByteArray rawMsg); void handleUserInput(QString buffer, QString usrMsg); // CTCP Stuff @@ -185,6 +184,9 @@ class Server : public QThread { public: UnknownCmdError(QString cmd, QString prefix, QStringList params); }; + + // stuff needed for new separation of server information + ServerInfo *serverinfo; }; #endif