Files
clio/src/web/README.md
Sergey Kuznetsov 837a547849 chore: Revert "feat: Use new web server by default (#2182)" (#2187)
There is an issue found in the new web server, so we couldn't use it by
default for now.
This reverts commit b3f3259b14.
2025-06-05 17:35:21 +01:00

478 B

Web server subsystem

This folder contains all of the classes for running the web server.

The web server 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.