mirror of
https://github.com/KeyZox71/webserv.git
synced 2025-05-10 21:08:45 +02:00
「🏗️」 wip: Added logger class
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/03/19 14:11:28 by adjoly #+# #+# */
|
||||
/* Updated: 2025/03/19 16:54:35 by adjoly ### ########.fr */
|
||||
/* Updated: 2025/03/19 23:09:56 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -21,8 +21,10 @@ class Server {
|
||||
public:
|
||||
protected:
|
||||
private:
|
||||
Route *_default;
|
||||
std::vector<Route *> *_routes;
|
||||
Route *_default;
|
||||
std::vector<Route *> *_routes;
|
||||
std::string host;
|
||||
std::vector<std::string> server_names;
|
||||
};
|
||||
|
||||
} // namespace config
|
||||
|
Reference in New Issue
Block a user