#ifndef ____configure_h__ #define ____configure_h__ namespace http { class __configure : public HTTPPage { int processCommand(HTTPRequest *httpRequest, core::TCPSession *session, HTTPSession *httpSession, std::stringstream &data) override { data << "
" << std::endl; httpRequest->response.addHeader("Content-Type", "text/html"); return true; } }; } #endif