mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
Change httpd modules to use the MODNAME constant in headers.
This commit is contained in:
parent
abc57eddfb
commit
24623a5fe6
@ -106,7 +106,7 @@ class ModuleHTTPAccessList : public Module
|
||||
|
||||
std::stringstream data("Access to this resource is denied by an access control list. Please contact your IRC administrator.");
|
||||
HTTPDocumentResponse response(this, *http, &data, returnval);
|
||||
response.headers.SetHeader("X-Powered-By", "m_httpd_acl.so");
|
||||
response.headers.SetHeader("X-Powered-By", MODNAME);
|
||||
if (!extraheaderkey.empty())
|
||||
response.headers.SetHeader(extraheaderkey, extraheaderval);
|
||||
API->SendResponse(response);
|
||||
|
@ -100,7 +100,7 @@ class ModuleHttpConfig : public Module
|
||||
data << "</body></html>";
|
||||
/* Send the document back to m_httpd */
|
||||
HTTPDocumentResponse response(this, *http, &data, 200);
|
||||
response.headers.SetHeader("X-Powered-By", "m_httpd_config.so");
|
||||
response.headers.SetHeader("X-Powered-By", MODNAME);
|
||||
response.headers.SetHeader("Content-Type", "text/html");
|
||||
API->SendResponse(response);
|
||||
}
|
||||
|
@ -234,7 +234,7 @@ class ModuleHttpStats : public Module
|
||||
|
||||
/* Send the document back to m_httpd */
|
||||
HTTPDocumentResponse response(this, *http, &data, 200);
|
||||
response.headers.SetHeader("X-Powered-By", "m_httpd_stats.so");
|
||||
response.headers.SetHeader("X-Powered-By", MODNAME);
|
||||
response.headers.SetHeader("Content-Type", "text/xml");
|
||||
API->SendResponse(response);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user