A clone of btpd with my configuration changes.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

14 lines
277 B

  1. #include <btpd.h>
  2. short btpd_daemon = 1;
  3. const char *btpd_dir;
  4. #ifdef DEBUG
  5. uint32_t btpd_logmask = BTPD_L_ALL;
  6. #else
  7. uint32_t btpd_logmask = BTPD_L_BTPD | BTPD_L_ERROR;
  8. #endif
  9. unsigned net_max_peers;
  10. unsigned net_bw_limit_in;
  11. unsigned net_bw_limit_out;
  12. int net_port = 6881;