A clone of btpd with my configuration changes.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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