aboutsummaryrefslogtreecommitdiff
path: root/modules/httpd_config.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-28 21:32:23 +0000
committerGravatar Sadie Powell2026-03-29 00:42:15 +0000
commitcbc5431d62e3fe9166f18395dce3ddf2af0906d3 (patch)
tree48a87fc27dc4826ce0caf4071e2060a9ff9e24c5 /modules/httpd_config.cpp
parentMove service code from base to its own header. (diff)
Switch modules from reference<> to shared_ptr<> and weak_ptr<>.
Diffstat (limited to 'modules/httpd_config.cpp')
-rw-r--r--modules/httpd_config.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/httpd_config.cpp b/modules/httpd_config.cpp
index 508c7c225..558107e2b 100644
--- a/modules/httpd_config.cpp
+++ b/modules/httpd_config.cpp
@@ -35,8 +35,8 @@ private:
public:
ModuleHttpConfig()
: Module(VF_VENDOR, "Allows the server configuration to be viewed over HTTP via the /config path.")
- , HTTPRequestEventListener(this)
- , API(this)
+ , HTTPRequestEventListener(weak_from_this())
+ , API(weak_from_this())
{
}
@@ -72,7 +72,7 @@ public:
buffer << '>' << std::endl << std::endl;
}
- HTTPDocumentResponse response(this, request, &buffer, 200);
+ HTTPDocumentResponse response(weak_from_this(), request, &buffer, 200);
response.headers.SetHeader("X-Powered-By", MODNAME);
response.headers.SetHeader("Content-Type", "text/plain");
API->SendResponse(response);