A clone of btpd with my configuration changes.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

18 行
389 B

  1. #include "btpd.h"
  2. const char *btpd_dir;
  3. #ifdef DEBUG
  4. uint32_t btpd_logmask = BTPD_L_ALL;
  5. #else
  6. uint32_t btpd_logmask = BTPD_L_BTPD | BTPD_L_ERROR;
  7. #endif
  8. int net_max_uploads = -2;
  9. unsigned net_max_peers;
  10. unsigned net_bw_limit_in;
  11. unsigned net_bw_limit_out;
  12. int net_port = 6881;
  13. off_t cm_alloc_size = 2048 * 1024;
  14. int ipcprot = 0600;
  15. int empty_start = 0;
  16. uint32_t tr_ip_arg = INADDR_ANY;