Files
clio/src/web
Sergey Kuznetsov 4b53bef1f5 Add clang tidy (#864)
Fixes #863
2023-10-03 10:43:54 +01:00
..
2023-10-03 10:43:54 +01:00
2023-10-03 10:43:54 +01:00
2023-10-03 10:43:54 +01:00
2023-10-03 10:43:54 +01:00
2023-10-03 10:43:54 +01:00
2023-10-03 10:43:54 +01:00
2023-10-03 10:43:54 +01:00
2023-08-11 21:32:32 +01:00
2023-10-03 10:43:54 +01:00
2023-10-03 10:43:54 +01:00
2023-10-03 10:43:54 +01:00
2023-10-03 10:43:54 +01:00
2023-10-03 10:43:54 +01:00

Webserver subsystem

This folder contains all of the classes for running the webserver.

The webserver subsystem

  • Handles JSON-RPC and websocket requests.
  • Supports SSL if a cert and key file are specified in the config.
  • 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.