forked from idkwim/entropybroker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp_file_logfile.cpp
More file actions
59 lines (49 loc) · 1.2 KB
/
http_file_logfile.cpp
File metadata and controls
59 lines (49 loc) · 1.2 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <map>
#include <string>
#include <time.h>
#include <vector>
#include "utils.h"
#include "hasher.h"
#include "math.h"
#include "stirrer.h"
#include "random_source.h"
#include "fips140.h"
#include "scc.h"
#include "hasher_type.h"
#include "stirrer_type.h"
#include "pool_crypto.h"
#include "pool.h"
#include "pools.h"
#include "config.h"
#include "encrypt_stream.h"
#include "statistics.h"
#include "statistics_global.h"
#include "statistics_user.h"
#include "users.h"
#include "handle_client.h"
#include "http_bundle.h"
#include "http_request_t.h"
#include "http_file.h"
#include "http_file_logfile.h"
http_file_logfile::http_file_logfile(statistics_global *ps_in) : ps(ps_in)
{
}
http_file_logfile::~http_file_logfile()
{
}
std::string http_file_logfile::get_url()
{
return "/logfile.html";
}
std::string http_file_logfile::get_meta_type()
{
return "text/html";
}
http_bundle * http_file_logfile::do_request(http_request_t request_type, std::string request_url, http_bundle *request_details)
{
std::vector<std::string> reply_headers;
std::string content = get_style_header();
content += generate_logging_table(ps, "");
content += get_style_tail();
return new http_bundle(reply_headers, content.c_str());
}