34 lines
1.2 KiB
C++
34 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* join.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/04/17 16:26:18 by aortigos #+# #+# */
|
|
/* Updated: 2026/04/17 18:44:02 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../Server/Server.hpp"
|
|
|
|
void Server::cmd_join(int fd, std::istringstream &ss)
|
|
{
|
|
std::string args;
|
|
|
|
ss >> args;
|
|
|
|
if (!clients[fd].isRegistered())
|
|
{
|
|
std::string msg = "You are not registered";
|
|
send(fd, msg.c_str(), msg.size(), 0);
|
|
}
|
|
|
|
if (channels.find(channelName) == channels.end())
|
|
{
|
|
|
|
} else {
|
|
|
|
}
|
|
|
|
} |