belle

An HTTP / Websocket library in C++17 using Boost.Beast and Boost.ASIO.


 .doxyfile                        |    6 +-
 CMakeLists.txt                   |   50 +-
 README.md                        |  109 +-
 build.sh                         |   36 +-
 docs.sh                          |    8 +-
 env.sh                           |    3 +-
 examples/basic/CMakeLists.txt    |   50 +-
 examples/basic/public/index.html |    1 +-
 examples/basic/public/test.txt   |    1 +-
 examples/basic/src/main.cc       |  165 +---
 examples/chat/CMakeLists.txt     |   57 +-
 examples/chat/public/chat.css    |   99 ++-
 examples/chat/public/chat.html   |   29 +-
 examples/chat/public/chat.js     |  238 +++++-
 examples/chat/public/index.css   |   80 ++-
 examples/chat/public/index.html  |   23 +-
 examples/chat/public/index.js    |  194 ++++-
 examples/chat/src/main.cc        |  363 +++++++-
 examples/hello/CMakeLists.txt    |   57 +-
 examples/hello/public/index.html |   14 +-
 examples/hello/src/main.cc       |   54 +-
 examples/http/CMakeLists.txt     |   57 +-
 examples/http/public/index.html  |   14 +-
 examples/http/src/main.cc        |  259 +++++-
 include/belle.hh                 | 2016 +++++++++++++++++++++++++++++++++++++--
 install.sh                       |   29 +-
 src/belle.cc                     |  453 +---------
 src/mime_type.cc                 |  175 +---
 src/mime_type.hh                 |   24 +-
 29 files changed, 3564 insertions(+), 1100 deletions(-)
Back to Top