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