A clone of btpd with my configuration changes.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 line
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