1 /*
2    3APA3A simpliest proxy server
3    (c) 2002-2016 by Vladimir Dubrovin <3proxy@3proxy.ru>
4 
5    please read License Agreement
6 
7 */
8 
9 #include <stdio.h>
10 #include "version.h"
11 
12 unsigned char * strings[] = {
13 /* 00 */	(unsigned char *)"3proxy tiny proxy server " VERSION " stringtable file",
14 /* 01 */	(unsigned char *)"3proxy",
15 /* 02 */	(unsigned char *)"3proxy tiny proxy server",
16 /* 03 */	(unsigned char *)VERSION " (" BUILDDATE ")",
17 /* 04 */	(unsigned char *)"3proxy allows to share and control Internet connection and count traffic",
18 /* 05 */	(unsigned char *)"SERVR",
19 /* 06 */	(unsigned char *)"PROXY",
20 /* 07 */	(unsigned char *)"TCPPM",
21 /* 08 */	(unsigned char *)"POP3P",
22 /* 09 */	(unsigned char *)"SOCK4",
23 /* 10 */	(unsigned char *)"SOCK5",
24 /* 11 */	(unsigned char *)"UDPPM",
25 /* 12 */	(unsigned char *)"SOCKS",
26 /* 13 */	(unsigned char *)"SOC45",
27 /* 14 */	(unsigned char *)"ADMIN",
28 /* 15 */	(unsigned char *)"DNSPR",
29 /* 16 */	(unsigned char *)"FTPPR",
30 /* 17 */	(unsigned char *)"SMTPP",
31 /* 18 */	(unsigned char *)"ZOMBIE",
32 /* 19 */	NULL,
33 /* 20 */	NULL,
34 /* 21 */	NULL,
35 /* 22 */	NULL,
36 /* 23 */	NULL,
37 /* 24 */	NULL,
38 #ifndef TPROXY_CONF
39 #ifndef _WIN32
40 /* 25 */	(unsigned char *)"/usr/local/etc/3proxy/3proxy.cfg",
41 #else
42 /* 25 */	(unsigned char *)"3proxy.cfg",
43 #endif
44 #else
45 /* 25 */       (unsigned char *)TPROXY_CONF,
46 #endif
47 /* 26 */	NULL,
48 /* 27 */	NULL,
49 /* 28 */	NULL,
50 /* 29 */	NULL,
51 /* 30 */	NULL,
52 /* 31 */	NULL,
53 /* 32 */	NULL,
54 /* 33 */	NULL,
55 /* 34 */	NULL,
56 /* 35 */	(unsigned char *)
57 	"<table align=\"center\" width=\"75%\"><tr><td>\n"
58 	"<h3>Welcome to 3proxy Web Interface</h3>\n"
59 	"Probably you've noticed interface is very ugly currently.\n"
60 	"It's because you have development version of 3proxy and interface\n"
61 	"is coded right now. What you see is a part of work that is done\n"
62 	"already.\n"
63 	"<p>Please send all your comments to\n"
64 	"<A HREF=\"mailto:3proxy@security.nnov.ru\">3proxy@security.nnov.ru</A>\n"
65 	"<p>Documentation:\n"
66 	"<A HREF=\"http://3proxy.ru/\">http://3proxy.ru/</A>\n"
67 	"</tr></td></table>",
68 /* 36 */	NULL,
69 /* 37 */	NULL,
70 /* 38 */	NULL,
71 /* 39 */	NULL,
72 /* 40 */	NULL,
73 /* 41 */	NULL,
74 /* 42 */	NULL,
75 /* 43 */	NULL,
76 /* 44 */	NULL,
77 };
78 
79 int constants[] = {0,0};
80