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
commit 2de2f49abc
Notes: sideshowbarker 2024-07-19 08:01:39 +09:00
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&);