From eee137af70b3fa996c035cd66e9b356ab5628bb6 Mon Sep 17 00:00:00 2001 From: eidheim Date: Sat, 5 Jul 2014 12:25:28 +0200 Subject: [PATCH] updated comments --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index 22e559a..c1ca370 100644 --- a/main.cpp +++ b/main.cpp @@ -10,7 +10,7 @@ using namespace boost::property_tree; int main() { //HTTP-server at port 8080 using 4 threads - HTTPServer httpserver(8080, 1); + HTTPServer httpserver(8080, 4); //Add resources using regular expressions for path and method //POST-example for the path /string, responds the posted string @@ -59,4 +59,4 @@ int main() { httpserver.start(); return 0; -} \ No newline at end of file +}