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 #ifndef NAMETRANS_H
30 #define NAMETRANS_H
31
32 #include "../public/nsapi.h"
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 int assign_name(pblock *pb, Session *sn, Request *rq);
39 int document_root(pblock *pb, Session *sn, Request *rq);
40 int pfx2dir(pblock *pb, Session *sn, Request *rq);
41 int redirect(pblock *pb, Session *sn, Request *rq);
42
43 int simple_rewrite(pblock *pb, Session *sn, Request *rq);
44
45 #ifdef __cplusplus
46 }
47 #endif
48
49 #endif
50
51