1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 14:23:11 +02:00

Move HTTP types to the HTTP namespace.

This commit is contained in:
Sadie Powell
2025-05-09 12:36:42 +01:00
parent 8b089ab1a7
commit b76b407b33
42 changed files with 200 additions and 175 deletions
+3 -3
View File
@@ -148,9 +148,9 @@ public:
Anope::string name;
Anope::string id;
std::deque<Anope::string> data;
HTTPReply &reply;
HTTP::Reply &reply;
Request(HTTPReply &r)
Request(HTTP::Reply &r)
: reply(r)
{
}
@@ -188,7 +188,7 @@ public:
const auto &GetMinParams() const { return minparams; }
virtual bool Run(ServiceInterface *iface, HTTPClient *client, Request &request) = 0;
virtual bool Run(ServiceInterface *iface, HTTP::Client *client, Request &request) = 0;
};
struct RPC::Token final