Rewrite middleware to support epoll

This commit is contained in:
2019-06-29 12:46:29 +02:00
parent 72a6a745ff
commit 4d90d18660
27 changed files with 670 additions and 318 deletions

View File

@@ -5,9 +5,10 @@
int main(int argc, char ** argv)
{
ServerConfiguration serverConfiguration;
Logger logger;
HttpServer httpServer(logger, serverConfiguration);
Server::Configuration serverConfiguration;
Server::HttpServer httpServer(logger, serverConfiguration);
httpServer.Execute();