few changes before push

This commit is contained in:
Samy Ben Tayeb 2025-06-24 14:53:14 +02:00
parent b5bb9a6503
commit c395dea89d
2 changed files with 7 additions and 10 deletions

View file

@ -6,7 +6,7 @@
/* By: sben-tay <sben-tay@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/13 11:11:07 by rparodi #+# #+# */
/* Updated: 2025/06/24 14:41:14 by sben-tay ### ########.fr */
/* Updated: 2025/06/24 14:51:44 by sben-tay ### ########.fr */
/* */
/* ************************************************************************** */
@ -67,6 +67,7 @@ std::vector<std::string> splitLines(const std::string& input);
void Server::start()
{
signal(SIGQUIT, SIG_IGN);
signal(SIGINT, handle_sigint);
_serverFd = socket(AF_INET, SOCK_STREAM, 0);
if (_serverFd == -1) {