This commit is contained in:
2024-01-23 17:14:58 +01:00
parent 8042d3db6f
commit 7023f81541
4 changed files with 23 additions and 14 deletions

View File

@@ -1,14 +1,14 @@
/* ************************************************************************** */
/******************************************************************************/
/* */
/* ::: :::::::: */
/* channel.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* By: vvaas <vvaas@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/21 10:34:25 by maldavid #+# #+# */
/* Updated: 2024/01/23 10:49:35 by maldavid ### ########.fr */
/* Updated: 2024/01/23 16:48:15 by vvaas ### ########.fr */
/* */
/* ************************************************************************** */
/******************************************************************************/
#ifndef __CHANNEL__
#define __CHANNEL__
@@ -17,7 +17,6 @@
#include <set>
#include <unstd/shared_ptr.hpp>
#include <client.hpp>
namespace irc
{
class Channel

View File

@@ -6,7 +6,7 @@
/* By: vvaas <vvaas@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/21 09:12:28 by maldavid #+# #+# */
/* Updated: 2024/01/23 10:21:04 by maldavid ### ########.fr */
/* Updated: 2024/01/23 17:07:50 by vvaas ### ########.fr */
/* */
/******************************************************************************/
@@ -69,7 +69,7 @@ namespace irc
fd_set _fd_set;
const std::string _password;
const std::string _ip;
const int _port;
int _port;
int _main_socket;
bool _active;
};