소스 검색

Only allocate one have message for all peers, instead of one per peer.

master
Richard Nyberg 19 년 전
부모
커밋
fcbec726e5
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      btpd/policy_if.c

+ 2
- 1
btpd/policy_if.c 파일 보기

@@ -137,8 +137,9 @@ cm_on_ok_piece(struct piece *pc)
tp->have_npieces++;
msync(tp->imem, tp->isiz, MS_ASYNC);

struct net_buf *have = nb_create_have(pc->index);
BTPDQ_FOREACH(p, &tp->peers, cm_entry)
peer_have(p, pc->index);
peer_send(p, have);

if (tp->endgame)
BTPDQ_FOREACH(p, &tp->peers, cm_entry)


불러오는 중...
취소
저장