瀏覽代碼

Kill a peer when write indicates a closed connection.

master
Richard Nyberg 19 年之前
父節點
當前提交
40ffcd13c2
共有 1 個檔案被更改,包括 4 行新增0 行删除
  1. +4
    -0
      btpd/net.c

+ 4
- 0
btpd/net.c 查看文件

@@ -231,6 +231,10 @@ net_write(struct peer *p, unsigned long wmax)
peer_kill(p);
return 0;
}
} else if (nwritten == 0) {
btpd_log(BTPD_L_CONN, "connection close by peer.\n");
peer_kill(p);
return 0;
}

bcount = nwritten;


Loading…
取消
儲存