1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:18:13 +00:00

IRClient: Add a member list to channel views.

This commit is contained in:
Andreas Kling 2019-03-15 18:25:51 +01:00
parent 08c15be0ca
commit 491aa112ab
7 changed files with 115 additions and 3 deletions

View file

@ -51,6 +51,9 @@ public:
void handle_user_input_in_query(const String& query_name, const String&);
void handle_user_input_in_server(const String&);
IRCQuery& ensure_query(const String& name);
IRCChannel& ensure_channel(const String& name);
private:
struct Message {
String prefix;
@ -70,8 +73,6 @@ private:
void handle_namreply(const Message&);
void handle_privmsg(const Message&);
void handle(const Message&, const String& verbatim);
IRCQuery& ensure_query(const String& name);
IRCChannel& ensure_channel(const String& name);
String m_hostname;
int m_port { 0 };