stringtable.c 2.2 KB

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