mirror of
https://github.com/3lswear/webserv.git
synced 2025-10-28 21:07:59 +03:00
47 lines
773 B
C++
47 lines
773 B
C++
#ifndef WEBSERV_HPP
|
|
#define WEBSERV_HPP
|
|
|
|
#define RED "\033[31m"
|
|
#define GREEN "\033[32m"
|
|
#define YELLOW "\033[33m"
|
|
#define BLUE "\033[34m"
|
|
#define PINK "\033[35m"
|
|
#define TURGUOISE "\033[36m"
|
|
#define ZERO_C "\033[0m"
|
|
|
|
#define HOME "www"
|
|
#define BUFFSIZE 1024
|
|
#define MAX_CLIENT 1000
|
|
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
#include <sys/epoll.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/select.h>
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
#include <netinet/in.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <poll.h>
|
|
#include <dirent.h>
|
|
|
|
|
|
#include <fstream>
|
|
#include <vector>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <map>
|
|
#include <fstream>
|
|
#include <algorithm>
|
|
#include <cctype>
|
|
|
|
#endif
|