Adding join channels and privmsg

This commit is contained in:
2026-04-17 19:12:05 +02:00
parent b3c190293a
commit 1c8ad9ba68
5 changed files with 64 additions and 14 deletions

View File

@@ -156,4 +156,8 @@ void Server::parseCommand(int fd, std::string line)
cmd_nick(fd, ss);
else if (command == "USER")
cmd_user(fd, ss);
else if (command == "JOIN")
cmd_join(fd, ss);
else if (command == "PRIVMSG")
cmd_privmsg(fd, ss);
}