MIME types

This commit is contained in:
fireice-uk 2017-03-15 13:34:56 +00:00
parent 2e444a4978
commit 8b6bf01f5c
1 changed files with 4 additions and 0 deletions

View File

@ -80,24 +80,28 @@ int httpd::req_handler(void * cls,
rsp = MHD_create_response_from_buffer(sHtmlCssSize, (void*)sHtmlCssFile, MHD_RESPMEM_PERSISTENT);
MHD_add_response_header(rsp, "ETag", sHtmlCssEtag);
MHD_add_response_header(rsp, "Content-Type", "text/css; charset=utf-8");
}
else if(strcasecmp(url, "/h") == 0 || strcasecmp(url, "/hashrate") == 0)
{
executor::inst()->get_http_report(EV_HTML_HASHRATE, str);
rsp = MHD_create_response_from_buffer(str.size(), (void*)str.c_str(), MHD_RESPMEM_MUST_COPY);
MHD_add_response_header(rsp, "Content-Type", "text/html; charset=utf-8");
}
else if(strcasecmp(url, "/c") == 0 || strcasecmp(url, "/connection") == 0)
{
executor::inst()->get_http_report(EV_HTML_CONNSTAT, str);
rsp = MHD_create_response_from_buffer(str.size(), (void*)str.c_str(), MHD_RESPMEM_MUST_COPY);
MHD_add_response_header(rsp, "Content-Type", "text/html; charset=utf-8");
}
else if(strcasecmp(url, "/r") == 0 || strcasecmp(url, "/results") == 0)
{
executor::inst()->get_http_report(EV_HTML_RESULTS, str);
rsp = MHD_create_response_from_buffer(str.size(), (void*)str.c_str(), MHD_RESPMEM_MUST_COPY);
MHD_add_response_header(rsp, "Content-Type", "text/html; charset=utf-8");
}
else
{