/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* server.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maldavid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/21 09:31:17 by maldavid #+# #+# */ /* Updated: 2024/01/21 10:38:12 by maldavid ### ########.fr */ /* */ /* ************************************************************************** */ #include #include #include namespace irc { Server::Server(int port, const std::string& password) : _password(password), _port(port) { (void)_port; (void)_password; (void)_socket; (void)_channels; } Server::~Server() {} }