This commit is contained in:
2024-01-22 01:40:02 +01:00
parent 9f8fb8902a
commit bf00253b28
5 changed files with 93 additions and 23 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/21 16:32:12 by vvaas ### ########.fr */
/* Updated: 2024/01/22 01:27:30 by vvaas ### ########.fr */
/* */
/******************************************************************************/
@@ -14,9 +14,9 @@
namespace irc
{
Client::Client(int fd) : _fd(fd)
Client::Client(int fd, sockaddr_in sock, int id) : _s_data(sock), _fd(fd), _id(id)
{
}
Client::~Client() {}