A clone of btpd with my configuration changes.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 line
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