A clone of btpd with my configuration changes.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
264 B

  1. #ifndef BTPD_UPLOAD_H
  2. #define BTPD_UPLOAD_H
  3. void ul_on_new_peer(struct peer *p);
  4. void ul_on_lost_peer(struct peer *p);
  5. void ul_on_lost_torrent(struct net *n);
  6. void ul_on_interest(struct peer *p);
  7. void ul_on_uninterest(struct peer *p);
  8. void ul_init(void);
  9. #endif