blob: 11a882610d9d747d7d97c6de80b52a8871b0e8e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#pragma once
#include <boost/asio/io_context.hpp>
#include "config.h"
#include "plugin.h"
using namespace std::string_literals;
// Base class for HTTP and HTTPS classes
class Server
{
protected:
Config& m_config;
boost::asio::io_context& m_ioc;
const Socket& m_socket;
plugins_container_type& m_plugins;
public:
static const std::string VersionString;
Server(Config& config, boost::asio::io_context& ioc, const Socket& socket, plugins_container_type& m_plugins);
virtual ~Server();
virtual int start() = 0;
// Getters
Config& GetConfig();
const Socket& GetSocket();
plugin_type GetPlugin(const std::string& name);
};
int run_server(Config& config, plugins_container_type& plugins);
|