default and custom error pages response

+ refactoring in response.cpp (functions split)
+ added Client::clear()
+ added replace_all_substr() in utils.cpp
This commit is contained in:
LuckyLaszlo
2022-08-04 02:52:31 +02:00
parent 6f5b28dd93
commit 0026106bf6
10 changed files with 176 additions and 68 deletions

View File

@@ -12,6 +12,8 @@ Webserv::Webserv()
throw std::runtime_error("Epoll init");
}
_init_http_status_map();
std::signal(SIGPIPE, signal_handler);
std::signal(SIGINT, signal_handler);
}