1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:47:44 +00:00

IRCClient: Add support for raw protocol commands with /RAW

This commit is contained in:
Brendan Coles 2020-04-05 08:20:04 +00:00 committed by Andreas Kling
parent b8cef3a2d3
commit 4ea71c9571
2 changed files with 20 additions and 0 deletions

View file

@ -168,6 +168,7 @@ private:
void handle_rpl_topicwhotime(const Message&);
void handle_rpl_endofnames(const Message&);
void handle_rpl_namreply(const Message&);
void handle_rpl_unknowncommand(const Message&);
void handle_privmsg_or_notice(const Message&, PrivmsgOrNotice);
void handle_nick(const Message&);
void handle(const Message&);