From f7533058af08bfb59640a40880b7bf44467e3933 Mon Sep 17 00:00:00 2001 From: Ole Christian Eidheim Date: Sun, 6 Jul 2014 10:59:58 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index ff163f7..bceb5dd 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ A very simple, fast, multithreaded and platform independent HTTP server implemen * HTTP persistent connection (for HTTP/1.1) * Simple way to add REST resources using regex for path, and anonymous functions +HTTPS is not yet supported, but take a look at http://www.boost.org/doc/libs/1_55_0/doc/html/boost_asio/example/cpp03/ssl/server.cpp. It does not seem that server.hpp and server.cpp require too much change to support HTTPS. + ###Usage See main.cpp for example usage. @@ -18,6 +20,8 @@ See main.cpp for example usage. Boost C++ libraries must be installed, go to http://www.boost.org for download and instructions. +Will update to use C++17 networking instead in the future when it is supported by g++. + ### Compile and run Compile with a C++11 compiler supporting regex (for instance g++ 4.9):