A clone of btpd with my configuration changes.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

12 řádky
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