X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresessioneventprocessor.cpp;h=e3eca41caa0a8d31f3143cb2627c3ad12a36d505;hp=7a44fd0ffad83f56873c8d3d07c2811d4aed1064;hb=68478cb98a582e4a5b9b8cc188de51287d0da6b0;hpb=46984aca05b2d5f8dddd0c8739e60a1753078123;ds=sidebyside diff --git a/src/core/coresessioneventprocessor.cpp b/src/core/coresessioneventprocessor.cpp index 7a44fd0f..e3eca41c 100644 --- a/src/core/coresessioneventprocessor.cpp +++ b/src/core/coresessioneventprocessor.cpp @@ -170,6 +170,26 @@ void CoreSessionEventProcessor::processIrcEvent001(IrcEvent *e) { e->network()->setMyNick(nickFromMask(myhostmask)); } +/* RPL_UMODEIS - " []" */ +void CoreSessionEventProcessor::processIrcEvent221(IrcEvent *) { + // TODO: save information in network object +} + +/* RPL_STATSCONN - "Highest connection cout: 8000 (7999 clients)" */ +void CoreSessionEventProcessor::processIrcEvent250(IrcEvent *) { + // TODO: save information in network object +} + +/* RPL_LOCALUSERS - "Current local user: 5024 Max: 7999 */ +void CoreSessionEventProcessor::processIrcEvent265(IrcEvent *) { + // TODO: save information in network object +} + +/* RPL_GLOBALUSERS - "Current global users: 46093 Max: 47650" */ +void CoreSessionEventProcessor::processIrcEvent266(IrcEvent *) { + // TODO: save information in network object +} + /* template void CoreSessionEventProcessor::processIrcEvent(IrcEvent *e) { if(!checkParamCount(e, 1))