2025-02-11 13:52:45 +01:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
|
|
|
/* webserv.hpp :+: :+: :+: */
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
/* Created: 2025/02/11 13:29:21 by mmoussou #+# #+# */
|
2025-02-12 01:36:19 +01:00
|
|
|
/* Updated: 2025/02/12 00:11:41 by mmoussou ### ########.fr */
|
2025-02-11 13:52:45 +01:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#ifndef __WEBSERV_WEBSERV_HPP__
|
|
|
|
# define __WEBSERV_WEBSERV_HPP__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <cstring>
|
|
|
|
#include <fstream>
|
|
|
|
#include <csignal>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <iostream>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
namespace webserv {
|
|
|
|
|
|
|
|
} //-namespace webserv
|
|
|
|
|
|
|
|
#endif // __WEBSERV_WEBSERV_HPP__
|