Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
Immanuel
/
btpd
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Add peer_full function.
master
Richard Nyberg
19 anni fa
parent
3c0e61e112
commit
1c14af0ab4
2 ha cambiato i file
con
7 aggiunte
e
0 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
btpd/peer.c
+1
-0
btpd/peer.h
+ 6
- 0
btpd/peer.c
Vedi File
@@ -550,3 +550,9 @@ peer_active_up(struct peer *p)
return (p->flags & (PF_P_WANT|PF_I_CHOKE)) == PF_P_WANT
|| p->npiece_msgs > 0;
}
int
peer_full(struct peer *p)
{
return p->npieces == p->n->tp->meta.npieces;
}
+ 1
- 0
btpd/peer.h
Vedi File
@@ -60,5 +60,6 @@ int peer_wanted(struct peer *p);
int peer_laden(struct peer *p);
int peer_has(struct peer *p, uint32_t index);
int peer_leech_ok(struct peer *p);
int peer_full(struct peer *p);
#endif
Write
Preview
Loading…
Annulla
Salva