forked from 3proxy/3proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstringtable.c
More file actions
79 lines (74 loc) · 2.12 KB
/
Copy pathstringtable.c
File metadata and controls
79 lines (74 loc) · 2.12 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
3APA3A simpliest proxy server
(c) 2002-2021 by Vladimir Dubrovin <[email protected]>
please read License Agreement
*/
#include <stdio.h>
#include "version.h"
unsigned char * strings[] = {
/* 00 */ (unsigned char *)"3proxy tiny proxy server " VERSION " stringtable file",
/* 01 */ (unsigned char *)"3proxy",
/* 02 */ (unsigned char *)"3proxy tiny proxy server",
/* 03 */ (unsigned char *)VERSION " (" BUILDDATE ")",
/* 04 */ (unsigned char *)"3proxy allows to share and control Internet connection and count traffic",
/* 05 */ (unsigned char *)"SERVR",
/* 06 */ (unsigned char *)"PROXY",
/* 07 */ (unsigned char *)"TCPPM",
/* 08 */ (unsigned char *)"POP3P",
/* 09 */ (unsigned char *)"SOCK4",
/* 10 */ (unsigned char *)"SOCK5",
/* 11 */ (unsigned char *)"UDPPM",
/* 12 */ (unsigned char *)"SOCKS",
/* 13 */ (unsigned char *)"SOC45",
/* 14 */ (unsigned char *)"ADMIN",
/* 15 */ (unsigned char *)"DNSPR",
/* 16 */ (unsigned char *)"FTPPR",
/* 17 */ (unsigned char *)"SMTPP",
/* 18 */ (unsigned char *)"ZOMBIE",
/* 19 */ NULL,
/* 20 */ NULL,
/* 21 */ NULL,
/* 22 */ NULL,
/* 23 */ NULL,
/* 24 */ NULL,
#ifndef TPROXY_CONF
#ifndef _WIN32
/* 25 */ (unsigned char *)"/usr/local/etc/3proxy/3proxy.cfg",
#else
/* 25 */ (unsigned char *)"3proxy.cfg",
#endif
#else
/* 25 */ (unsigned char *)TPROXY_CONF,
#endif
/* 26 */ NULL,
/* 27 */ NULL,
/* 28 */ NULL,
/* 29 */ NULL,
/* 30 */ NULL,
/* 31 */ NULL,
/* 32 */ NULL,
/* 33 */ NULL,
/* 34 */ NULL,
/* 35 */ (unsigned char *)
"<table align=\"center\" width=\"75%\"><tr><td>\n"
"<h3>Welcome to 3proxy Web Interface</h3>\n"
"Probably you've noticed interface is very ugly currently.\n"
"It's because you have development version of 3proxy and interface\n"
"is coded right now. What you see is a part of work that is done\n"
"already.\n"
"<p>Please send all your comments to\n"
"<A HREF=\"mailto:[email protected]\">[email protected]</A>\n"
"<p>Documentation:\n"
"<A HREF=\"https://3proxy.org/\">http://3proxy.org/</A>\n"
"</tr></td></table>",
/* 36 */ NULL,
/* 37 */ NULL,
/* 38 */ NULL,
/* 39 */ NULL,
/* 40 */ NULL,
/* 41 */ NULL,
/* 42 */ NULL,
/* 43 */ NULL,
/* 44 */ NULL,
};
int constants[] = {0,0};