3proxy/src/stringtable.c

80 lines
2.1 KiB
C
Raw Normal View History

2014-04-08 17:03:21 +08:00
/*
3APA3A simpliest proxy server
2016-12-20 20:47:02 +08:00
(c) 2002-2016 by Vladimir Dubrovin <3proxy@3proxy.ru>
2014-04-08 17:03:21 +08:00
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",
2018-04-23 02:31:14 +08:00
/* 18 */ (unsigned char *)"ZOMBIE",
/* 19 */ NULL,
/* 20 */ NULL,
2014-04-08 17:03:21 +08:00
/* 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:3proxy@security.nnov.ru\">3proxy@security.nnov.ru</A>\n"
"<p>Documentation:\n"
"<A HREF=\"http://3proxy.ru/\">http://3proxy.ru/</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};