A clone of btpd with my configuration changes.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

20 rindas
415 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. const char *tr_ip_arg;
  17. int net_ipv4 = 1;
  18. int net_ipv6 = 1;