feat(cmd/pass): adding the start of pass command

This commit is contained in:
Raphael 2025-05-29 13:05:36 +02:00
parent 3d71d977d2
commit 8565a948ce
9 changed files with 42 additions and 16 deletions

View file

@ -6,7 +6,7 @@
/* By: omoudni <omoudni@student.42paris.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/21 20:37:12 by omoudni #+# #+# */
/* Updated: 2025/05/22 17:13:35 by omoudni ### ########.fr */
/* Updated: 2025/05/29 12:38:46 by rparodi ### ########.fr */
/* */
/******************************************************************************/
@ -15,11 +15,12 @@
// Constructor
User::User(short unsigned int fd) : _fd(fd), _registered(false), _hasNick(false), _hasUser(false) {}
// Getter for fd
short unsigned int User::getFd() const
{
return _fd;
}
/**
* @brief Getter for the fd
*
* @return the fd of the user
*/
short unsigned int User::getFd() const { return this->_fd; }
/**
* @brief Getter for the nickname of the user
@ -64,6 +65,13 @@ void User::setNickname(const std::string &nickname)
}
}
/**
* @brief Setter to register a user
*/
void User::setRegistered() {
this->_registered = true;
}
// Registration state
bool User::isRegistered() const
{