diff options
author | Sadie Powell <sadie@witchery.services> | 2025-05-09 12:36:42 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-05-09 12:36:42 +0100 |
commit | b76b407b33973bf1ac00a842b5b325fb8e378170 (patch) | |
tree | 7c909c4d68a6adb452f33999a4c16a014cc1c799 /modules/webcpanel/pages/hostserv/hostserv.h | |
parent | 8b089ab1a7c91f8de5a7eabf1ad493cbef96282f (diff) |
Move HTTP types to the HTTP namespace.
Diffstat (limited to 'modules/webcpanel/pages/hostserv/hostserv.h')
-rw-r--r-- | modules/webcpanel/pages/hostserv/hostserv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/webcpanel/pages/hostserv/hostserv.h b/modules/webcpanel/pages/hostserv/hostserv.h index 5473f60a9..c1cae3579 100644 --- a/modules/webcpanel/pages/hostserv/hostserv.h +++ b/modules/webcpanel/pages/hostserv/hostserv.h @@ -17,5 +17,5 @@ class WebCPanel::HostServ::Request final { public: Request(const Anope::string &cat, const Anope::string &u); - bool OnRequest(HTTPProvider *, const Anope::string &, HTTPClient *, HTTPMessage &, HTTPReply &, NickAlias *, TemplateFileServer::Replacements &) override; + bool OnRequest(HTTP::Provider *, const Anope::string &, HTTP::Client *, HTTP::Message &, HTTP::Reply &, NickAlias *, TemplateFileServer::Replacements &) override; }; |