A clone of btpd with my configuration changes.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

18 lignes
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;