summaryrefslogtreecommitdiffhomepage
path: root/http.h
blob: c8f27a35f0c41159e449ce9a6cb628cf62521eb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <boost/asio/dispatch.hpp>
#include <boost/asio/strand.hpp>

#include "config.h"
#include "server.h"

namespace HTTP {

class Server: public ::Server
{
public:
 Server(Config& config, boost::asio::io_context& ioc, const Socket& socket, plugins_container_type& plugins);
 virtual ~Server();
 int start() override;
};

} // namespace HTTP