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
357 B

  1. #ifndef TRACKER_REQ_H
  2. #define TRACKER_REQ_H
  3. int tr_create(struct torrent *tp, const char *mi);
  4. void tr_kill(struct torrent *tp);
  5. void tr_start(struct torrent *tp);
  6. void tr_stop(struct torrent *tp);
  7. void tr_refresh(struct torrent *tp);
  8. void tr_complete(struct torrent *tp);
  9. unsigned tr_errors(struct torrent *tp);
  10. int tr_active(struct torrent *tp);
  11. #endif