updated comments

This commit is contained in:
eidheim 2014-07-05 12:25:28 +02:00
commit eee137af70

View file

@ -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;
}
}