This commit is contained in:
2024-01-30 00:26:02 +01:00
parent 9fc30f5ec9
commit da1f23c294
6 changed files with 42 additions and 19 deletions

View File

@@ -6,7 +6,7 @@
/* By: vvaas <vvaas@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/21 10:35:52 by maldavid #+# #+# */
/* Updated: 2024/01/29 23:27:33 by maldavid ### ########.fr */
/* Updated: 2024/01/30 00:10:23 by vvaas ### ########.fr */
/* */
/******************************************************************************/
@@ -137,5 +137,10 @@ namespace irc
return (std::string());
}
void Client::kill(const std::string& reason)
{
sendMsg("yipirc", "KILL", reason);
}
Client::~Client() {}
}