Procházet zdrojové kódy

Update btpd.npeers in the right place.

master
Richard Nyberg před 19 roky
rodič
revize
2cb31f1244
1 změnil soubory, kde provedl 2 přidání a 5 odebrání
  1. +2
    -5
      btpd/net.c

+ 2
- 5
btpd/net.c Zobrazit soubor

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

btpd.npeers++;
return 0;
}

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

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

return error;
}



Načítá se…
Zrušit
Uložit