From 880067f7c24fe279482bf3f87fa72106923a3627 Mon Sep 17 00:00:00 2001 From: eidheim Date: Fri, 20 Nov 2015 10:00:02 +0100 Subject: [PATCH] Renamed HttpServer:: to Server:: in README.md. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c44c32b..8b1ea7b 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ See also https://github.com/eidheim/Simple-WebSocket-Server for an easy way to m * 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) * Simple way to add REST resources using regex for path, and anonymous functions -* Possibility to flush response to clients synchronously (HttpServer::Response::flush). +* Possibility to flush response to clients synchronously (Server::Response::flush). ###Usage @@ -22,7 +22,7 @@ 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. -The default_resource includes example use of HttpServer::Response::flush. +The default_resource includes example use of Server::Response::flush. ### Dependencies