Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Immanuel
/
btpd
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Add peer_full function.
master
Richard Nyberg
hace 19 años
padre
3c0e61e112
commit
1c14af0ab4
Se han
modificado 2 ficheros
con
7 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+6
-0
btpd/peer.c
+1
-0
btpd/peer.h
+ 6
- 0
btpd/peer.c
Ver fichero
@@ -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
Ver fichero
@@ -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
Escribir
Vista previa
Cargando…
Cancelar
Guardar