Files
labs-web-applications/src/http/http_server.hpp
T
2025-09-30 18:34:14 +04:00

16 lines
277 B
C++

#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_;
};