Updated README.md

This commit is contained in:
eidheim 2016-06-28 23:15:21 +02:00
commit 8b6915a953

View file

@ -7,6 +7,7 @@ See https://github.com/eidheim/Simple-WebSocket-Server for an easy way to make W
### Features ### Features
* Asynchronous
* Thread pool * Thread pool
* Platform independent * Platform independent
* HTTPS support * HTTPS support
@ -14,7 +15,6 @@ See https://github.com/eidheim/Simple-WebSocket-Server for an easy way to make W
* Client supports chunked transfer encoding * Client supports chunked transfer encoding
* Timeouts, if any of Server::timeout_request and Server::timeout_content are >0 (default: Server::timeout_request=5 seconds, and Server::timeout_content=300 seconds) * Timeouts, if any of Server::timeout_request and Server::timeout_content are >0 (default: Server::timeout_request=5 seconds, and Server::timeout_content=300 seconds)
* Simple way to add REST resources using regex for path, and anonymous functions * Simple way to add REST resources using regex for path, and anonymous functions
* Possibility to flush response to clients synchronously (Server::Response::flush).
###Usage ###Usage
@ -22,8 +22,6 @@ See http_examples.cpp or https_examples.cpp for example usage.
See particularly the JSON-POST (using Boost.PropertyTree) and the GET /match/[number] examples, which are most relevant. See particularly the JSON-POST (using Boost.PropertyTree) and the GET /match/[number] examples, which are most relevant.
The default_resource includes example use of Server::Response::flush.
### Dependencies ### Dependencies
* Boost C++ libraries * Boost C++ libraries