A clone of btpd with my configuration changes.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 строки
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