mirror of
https://github.com/3lswear/webserv.git
synced 2025-10-29 05:17:59 +03:00
23 lines
380 B
C++
23 lines
380 B
C++
#ifndef WEBSERV_HPP
|
|
#define WEBSERV_HPP
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <arpa/inet.h>
|
|
#include <sys/select.h>
|
|
#include <poll.h>
|
|
#include <sys/epoll.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include "Server.hpp"
|
|
#include <stdlib.h>
|
|
#include <fstream>
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
#endif
|