X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoresessioneventprocessor.h;h=ff167299356cce5227d17ee9aedaddf6d6edef61;hb=f4bccff9c485c977ff027954497b3c4c397ffa1a;hp=18d853a40d24ccba8e520debc477c195c6c5e401;hpb=adc18a7284e7124639fa4b354251d6b102dcf6b7;p=quassel.git diff --git a/src/core/coresessioneventprocessor.h b/src/core/coresessioneventprocessor.h index 18d853a4..ff167299 100644 --- a/src/core/coresessioneventprocessor.h +++ b/src/core/coresessioneventprocessor.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -48,6 +48,8 @@ public: Q_INVOKABLE void processIrcEventAuthenticate(IrcEvent *event); /// SASL authentication Q_INVOKABLE void processIrcEventCap(IrcEvent *event); /// CAP framework negotiation + Q_INVOKABLE void processIrcEventAccount(IrcEvent *event); /// account-notify received + Q_INVOKABLE void processIrcEventAway(IrcEvent *event); /// away-notify received Q_INVOKABLE void processIrcEventInvite(IrcEvent *event); Q_INVOKABLE void processIrcEventJoin(IrcEvent *event); Q_INVOKABLE void lateProcessIrcEventKick(IrcEvent *event); @@ -152,17 +154,6 @@ private: // key: quit message // value: the corresponding netsplit object QHash > _netsplits; - - // IRCv3 capability negotiation - /** - * Sends the next capability from the queue. - * - * During nick registration if any capabilities remain queued, this will take the next and - * request it. When no capabilities remain, capability negotiation is ended. - * - * @param[in,out] A network currently undergoing capability negotiation - */ - void sendNextCap(Network *net); };