summaryrefslogtreecommitdiff
path: root/include/modules/rpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/modules/rpc.h')
-rw-r--r--include/modules/rpc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/modules/rpc.h b/include/modules/rpc.h
index 1c3dec811..e4fb9fb59 100644
--- a/include/modules/rpc.h
+++ b/include/modules/rpc.h
@@ -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