diff --git a/irc_command.hpp b/irc_command.hpp index a673a47..59a5deb 100644 --- a/irc_command.hpp +++ b/irc_command.hpp @@ -263,6 +263,7 @@ enum class IrcCommand CAP, CHGHOST, ERROR, + INVITE, JOIN, KICK, MODE, @@ -274,5 +275,7 @@ enum class IrcCommand PRIVMSG, QUIT, SETNAME, + TAGMSG, TOPIC, + WALLOPS, }; diff --git a/irc_commands.gperf b/irc_commands.gperf index 34709d6..9a234f8 100644 --- a/irc_commands.gperf +++ b/irc_commands.gperf @@ -265,6 +265,7 @@ BOUNCER, IrcCommand::BOUNCER CAP, IrcCommand::CAP, 1, 15 CHGHOST, IrcCommand::CHGHOST, 2, 2 ERROR, IrcCommand::ERROR, 1, 1 +INVITE, IrcCommand::INVITE, 2, 2 JOIN, IrcCommand::JOIN, 1, 3 KICK, IrcCommand::KICK, 3, 3 MODE, IrcCommand::MODE, 2, 15 @@ -276,4 +277,6 @@ PONG, IrcCommand::PONG, 1, 2 PRIVMSG, IrcCommand::PRIVMSG, 2, 2 QUIT, IrcCommand::QUIT, 1, 1 SETNAME, IrcCommand::SETNAME, 1, 1 +TAGMSG, IrcCommand::TAGMSG, 1, 1 TOPIC, IrcCommand::TOPIC, 2, 2 +WALLOPS, IrcCommand::WALLOPS, 1, 1