Files
labs-web-applications/src/http/http_server.hpp
T

16 lines
277 B
C++
Raw Normal View History

#pragma once
#include "tcp_server_base.hpp"
class HttpServer : public TcpServerBase
{
public:
HttpServer(IoContext &io, unsigned short port, std::string rootDir);
protected:
void createSession(TcpSocket socket) override;
private:
std::string rootDir_;
};