summaryrefslogtreecommitdiff
path: root/modules/webcpanel/pages/hostserv/request.h
blob: c76f0a448d11e28e5a4ad0d8a5fb01909705cafe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * (C) 2003-2024 Anope Team
 * Contact us at team@anope.org
 *
 * Please read COPYING and README for further details.
 */

#pragma once

namespace WebCPanel
{

namespace HostServ
{

class Request final
	: public WebPanelProtectedPage
{
public:
	Request(const Anope::string &cat, const Anope::string &u);

	bool OnRequest(HTTPProvider *, const Anope::string &, HTTPClient *, HTTPMessage &, HTTPReply &, NickAlias *, TemplateFileServer::Replacements &) override;
};

}

}