This website works better with JavaScript.
首頁
探索
說明
登入
Immanuel
/
btpd
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
Add peer_full function.
master
Richard Nyberg
19 年之前
父節點
3c0e61e112
當前提交
1c14af0ab4
共有
2 個文件被更改
,包括
7 次插入
和
0 次删除
分割檢視
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
查看文件
@@ -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
查看文件
@@ -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…
取消
儲存