1
0

config.clients.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. /* $Id: config.clients.php 2582 2007-02-15 13:14:29Z b4rt $ */
  3. /*******************************************************************************
  4. LICENSE
  5. This program is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License (GPL)
  7. as published by the Free Software Foundation; either version 2
  8. of the License, or (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. To read the license please visit http://www.gnu.org/copyleft/gpl.html
  14. *******************************************************************************/
  15. /**
  16. * client-support-map
  17. */
  18. $cfg["supportMap"] = array(
  19. 'tornado' => array(
  20. 'max_upload_rate' => 1,
  21. 'max_download_rate' => 1,
  22. 'max_uploads' => 1,
  23. 'superseeder' => 1,
  24. 'die_when_done' => 1,
  25. 'sharekill' => 1,
  26. 'minport' => 1,
  27. 'maxport' => 1,
  28. 'maxcons' => 1,
  29. 'rerequest' => 1,
  30. 'file_priority' => 1,
  31. 'skip_hash_check' => 1,
  32. 'savepath' => 1
  33. ),
  34. 'transmission' => array(
  35. 'max_upload_rate' => 1,
  36. 'max_download_rate' => 1,
  37. 'max_uploads' => 0,
  38. 'superseeder' => 0,
  39. 'die_when_done' => 1,
  40. 'sharekill' => 1,
  41. 'minport' => 1,
  42. 'maxport' => 1,
  43. 'maxcons' => 0,
  44. 'rerequest' => 0,
  45. 'file_priority' => 0,
  46. 'skip_hash_check' => 0,
  47. 'savepath' => 1
  48. ),
  49. 'mainline' => array(
  50. 'max_upload_rate' => 1,
  51. 'max_download_rate' => 1,
  52. 'max_uploads' => 1,
  53. 'superseeder' => 0,
  54. 'die_when_done' => 1,
  55. 'sharekill' => 1,
  56. 'minport' => 1,
  57. 'maxport' => 1,
  58. 'maxcons' => 1,
  59. 'rerequest' => 1,
  60. 'file_priority' => 0,
  61. 'skip_hash_check' => 1,
  62. 'savepath' => 1
  63. ),
  64. 'azureus' => array(
  65. 'max_upload_rate' => 1,
  66. 'max_download_rate' => 1,
  67. 'max_uploads' => 0,
  68. 'superseeder' => 0,
  69. 'die_when_done' => 1,
  70. 'sharekill' => 1,
  71. 'minport' => 0,
  72. 'maxport' => 0,
  73. 'maxcons' => 0,
  74. 'rerequest' => 0,
  75. 'file_priority' => 0,
  76. 'skip_hash_check' => 0,
  77. 'savepath' => 1
  78. ),
  79. 'wget' => array(
  80. 'max_upload_rate' => 0,
  81. 'max_download_rate' => 1,
  82. 'max_uploads' => 0,
  83. 'superseeder' => 0,
  84. 'die_when_done' => 0,
  85. 'sharekill' => 0,
  86. 'minport' => 0,
  87. 'maxport' => 0,
  88. 'maxcons' => 0,
  89. 'rerequest' => 0,
  90. 'file_priority' => 0,
  91. 'skip_hash_check' => 0,
  92. 'savepath' => 1
  93. ),
  94. 'nzbperl' => array(
  95. 'max_upload_rate' => 0,
  96. 'max_download_rate' => 1,
  97. 'max_uploads' => 0,
  98. 'superseeder' => 0,
  99. 'die_when_done' => 0,
  100. 'sharekill' => 0,
  101. 'minport' => 0,
  102. 'maxport' => 0,
  103. 'maxcons' => 1,
  104. 'rerequest' => 0,
  105. 'file_priority' => 0,
  106. 'skip_hash_check' => 0,
  107. 'savepath' => 1
  108. )
  109. );
  110. /**
  111. * client-support-map (runtime)
  112. */
  113. $cfg["runtimeMap"] = array(
  114. 'tornado' => array(
  115. 'max_upload_rate' => 1,
  116. 'max_download_rate' => 1,
  117. 'max_uploads' => 0,
  118. 'superseeder' => 0,
  119. 'die_when_done' => 1,
  120. 'sharekill' => 1,
  121. 'minport' => 0,
  122. 'maxport' => 0,
  123. 'maxcons' => 0,
  124. 'rerequest' => 0,
  125. 'file_priority' => 0,
  126. 'skip_hash_check' => 0,
  127. 'savepath' => 0
  128. ),
  129. 'transmission' => array(
  130. 'max_upload_rate' => 1,
  131. 'max_download_rate' => 1,
  132. 'max_uploads' => 0,
  133. 'superseeder' => 0,
  134. 'die_when_done' => 1,
  135. 'sharekill' => 1,
  136. 'minport' => 0,
  137. 'maxport' => 0,
  138. 'maxcons' => 0,
  139. 'rerequest' => 0,
  140. 'file_priority' => 0,
  141. 'skip_hash_check' => 0,
  142. 'savepath' => 0
  143. ),
  144. 'mainline' => array(
  145. 'max_upload_rate' => 1,
  146. 'max_download_rate' => 1,
  147. 'max_uploads' => 0,
  148. 'superseeder' => 0,
  149. 'die_when_done' => 1,
  150. 'sharekill' => 1,
  151. 'minport' => 0,
  152. 'maxport' => 0,
  153. 'maxcons' => 0,
  154. 'rerequest' => 0,
  155. 'file_priority' => 0,
  156. 'skip_hash_check' => 0,
  157. 'savepath' => 0
  158. ),
  159. 'azureus' => array(
  160. 'max_upload_rate' => 1,
  161. 'max_download_rate' => 1,
  162. 'max_uploads' => 0,
  163. 'superseeder' => 0,
  164. 'die_when_done' => 1,
  165. 'sharekill' => 1,
  166. 'minport' => 0,
  167. 'maxport' => 0,
  168. 'maxcons' => 0,
  169. 'rerequest' => 0,
  170. 'file_priority' => 0,
  171. 'skip_hash_check' => 0,
  172. 'savepath' => 0
  173. ),
  174. 'wget' => array(
  175. 'max_upload_rate' => 0,
  176. 'max_download_rate' => 0,
  177. 'max_uploads' => 0,
  178. 'superseeder' => 0,
  179. 'die_when_done' => 0,
  180. 'sharekill' => 0,
  181. 'minport' => 0,
  182. 'maxport' => 0,
  183. 'maxcons' => 0,
  184. 'rerequest' => 0,
  185. 'file_priority' => 0,
  186. 'skip_hash_check' => 0,
  187. 'savepath' => 0
  188. ),
  189. 'nzbperl' => array(
  190. 'max_upload_rate' => 0,
  191. 'max_download_rate' => 1,
  192. 'max_uploads' => 0,
  193. 'superseeder' => 0,
  194. 'die_when_done' => 0,
  195. 'sharekill' => 0,
  196. 'minport' => 0,
  197. 'maxport' => 0,
  198. 'maxcons' => 0,
  199. 'rerequest' => 0,
  200. 'file_priority' => 0,
  201. 'skip_hash_check' => 0,
  202. 'savepath' => 0
  203. )
  204. );
  205. ?>