From 0d2aef18b580e916b21fda089e87a591ce55b0c8 Mon Sep 17 00:00:00 2001 From: CJ Cobb <46455409+cjcobb23@users.noreply.github.com> Date: Wed, 23 Jun 2021 11:46:00 -0400 Subject: [PATCH] Add README for server folder --- src/server/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/server/README.md diff --git a/src/server/README.md b/src/server/README.md new file mode 100644 index 00000000..6d3d9d6d --- /dev/null +++ b/src/server/README.md @@ -0,0 +1,9 @@ +This folder contains all of the classes for running the webserver. + +The webserver handles JSON-RPC and websocket requests. +The webserver supports SSL if a cert and key file are specified in the config. +The webserver handles all types of requests on a single port. + +Each request is handled asynchronously using boost asio. + +Much of this code was originally copied from boost beast example code.