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

36 строки
755 B

  1. #ifndef TRACKER_REQ_H
  2. #define TRACKER_REQ_H
  3. enum tr_event {
  4. TR_EV_STARTED,
  5. TR_EV_STOPPED,
  6. TR_EV_COMPLETED,
  7. TR_EV_EMPTY
  8. };
  9. enum tr_res {
  10. TR_RES_OK,
  11. TR_RES_FAIL
  12. };
  13. extern long tr_key;
  14. int tr_create(struct torrent *tp, const char *mi);
  15. void tr_kill(struct torrent *tp);
  16. void tr_start(struct torrent *tp);
  17. void tr_stop(struct torrent *tp);
  18. void tr_refresh(struct torrent *tp);
  19. void tr_complete(struct torrent *tp);
  20. unsigned tr_errors(struct torrent *tp);
  21. int tr_active(struct torrent *tp);
  22. void tr_result(struct torrent *tp, enum tr_res res, int interval);
  23. struct http_tr_req;
  24. struct http_tr_req *http_tr_req(struct torrent *tp, enum tr_event event,
  25. const char *aurl);
  26. void http_tr_cancel(struct http_tr_req *treq);
  27. #endif