Giri's C++ Support Library
C++ library providing everything you need to quickly create awesome applications.
|
Simple HTTP Server implementation. More...
#include "Object.h"
#include "Observer.h"
#include "Exception.h"
#include "FileSystem.h"
#include <boost/asio/ip/tcp.hpp>
#include <boost/beast/core.hpp>
#include <boost/beast/http.hpp>
#include <boost/beast/version.hpp>
#include <boost/asio/bind_executor.hpp>
#include <boost/asio/ssl/stream.hpp>
#include <boost/asio/strand.hpp>
#include <boost/config.hpp>
#include <algorithm>
#include <cstdlib>
#include <functional>
#include <iostream>
#include <memory>
#include <string>
#include <thread>
#include <vector>
#include <map>
Go to the source code of this file.
Classes | |
class | giri::HTTPServerException |
Exception to be thrown on http server errors. More... | |
class | giri::HTTPSession |
Class representing one session/connection. More... | |
class | giri::HTTPServer |
Class representing a HTTP Server. More... | |
Namespaces | |
giri | |
Namespace for giri's C++ support library. | |
Typedefs | |
using | giri::tcp = boost::asio::ip::tcp |
Simple HTTP Server implementation.