blob: 8b78a7ebbb542b4563f41bf318ee8aa678a58021 (
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-2017 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*/
#include "modules/httpd.h"
/* A basic file server. Used for serving non-static non-binary content on disk. */
class TemplateFileServer
{
Anope::string file_name;
public:
struct Replacements : std::multimap<Anope::string, Anope::string>
{
Anope::string& operator[](const Anope::string &key)
{
return insert(std::make_pair(key, ""))->second;
}
};
TemplateFileServer(const Anope::string &f_n);
void Serve(HTTPProvider *, const Anope::string &, HTTPClient *, HTTPMessage &, HTTPReply &, Replacements &);
};
|