| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /*
- 3APA3A simpliest proxy server
- (c) 2002-2008 by ZARAZA <3APA3A@security.nnov.ru>
- 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 *)"ICQPR",
- /* 19 (unsigned char *)"MSNPR", */
- /* 19 */ (unsigned char *)"ZOMBIE",
- /* 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: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};
|