mirror of
https://github.com/3lswear/webserv.git
synced 2025-10-29 13:27:59 +03:00
17 lines
285 B
C++
17 lines
285 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>
|
|
|
|
#endif
|