1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:37:35 +00:00

IRCClient: Add support for /HOP and /TOPIC commands

This commit is contained in:
Brendan Coles 2020-03-31 14:46:08 +00:00 committed by Andreas Kling
parent c56c8c8953
commit 2de2f49abc
2 changed files with 21 additions and 0 deletions

View file

@ -133,6 +133,7 @@ private:
void send_pong(const String& server);
void send_privmsg(const String& target, const String&);
void send_notice(const String& target, const String&);
void send_topic(const String& channel_name, const String&);
void send_whois(const String&);
void process_line(ByteBuffer&&);
void handle_join(const Message&);