浏览代码

Update btpd.npeers in the right place.

master
Richard Nyberg 19 年前
父节点
当前提交
2cb31f1244
共有 1 个文件被更改,包括 2 次插入5 次删除
  1. +2
    -5
      btpd/net.c

+ 2
- 5
btpd/net.c 查看文件

@@ -934,6 +934,8 @@ net_connect2(struct sockaddr *sa, socklen_t salen, int *sd)
close(*sd); close(*sd);
return errno; return errno;
} }

btpd.npeers++;
return 0; return 0;
} }


@@ -955,12 +957,7 @@ net_connect(const char *ip, int port, int *sd)
return errno; return errno;


int error = net_connect2(res->ai_addr, res->ai_addrlen, sd); int error = net_connect2(res->ai_addr, res->ai_addrlen, sd);
freeaddrinfo(res); freeaddrinfo(res);
if (error == 0)
btpd.npeers++;

return error; return error;
} }




正在加载...
取消
保存