Webserv
Loading...
Searching...
No Matches
error_pages.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include "HttpStatus.hpp"
5#include "HttpResponse.hpp"
6
7namespace http {
8
9namespace error_pages {
10
11HttpResponse generateErrorResponse(Status code, std::string const &httpVersion);
12
13} // namespace error_pages
14
15} // namespace http
A data container for an HTTP response.
Definition HttpResponse.hpp:34
Definition error_pages.hpp:9
HttpResponse generateErrorResponse(Status code, std::string const &httpVersion)
Definition error_pages.cpp:77
Definition error_pages.hpp:7
Status
Enumeration of common HTTP status codes.
Definition HttpStatus.hpp:9