-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinterpreter.h
More file actions
38 lines (34 loc) · 761 Bytes
/
interpreter.h
File metadata and controls
38 lines (34 loc) · 761 Bytes
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
#include<string>
#include<vector>
using namespace std;
extern void executeConfigScript
(
int& responseCode,
string& responseText,
char* confScript,
string& addedHeaders,
string& requestPath,
string& requestParams,
string& requestContent,
string& requestSender,
bool& getChanged,
bool& postChanged,
bool& requestPathChanged,
vector<string>* getKeys,
vector<string>* getValues,
vector<string>* postKeys,
vector<string>* postValues,
vector<string>* strings,
vector<string>* regexs,
vector<string>* inputs,
string keys[32],
string values[32],
string& headerContentType,
string& headerContentDisposition,
string& headerServer,
string& headerKeepAlive,
char *directory,
vector<string>& indexes,
string& filePath,
string& fileName
);