hello world

This commit is contained in:
3lswear
2021-12-19 16:45:43 +03:00
parent 0c7d9cba49
commit 8c2d06f6a9
2 changed files with 112 additions and 0 deletions

16
includes/webserv.hpp Normal file
View File

@@ -0,0 +1,16 @@
#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