#ifndef HTTP_PAGE_H_ #define HTTP_PAGE_H_ #include #include "http_parser.h" /* 404 Not Found

404 Not Found


*/ void make_http_status_page(http_status status_code, std::string& page); /* Index of

Index of


  ../
  images/                                  2019-08-22 19:06:05                 -
  README.txt                                2019-08-22 19:06:05                 8.88K
  

*/ void make_index_of_page(const char* dir, std::string& page, const char* url = ""); #endif // HTTP_PAGE_H_