gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r36409 - gnunet/src/cadet


From: gnunet
Subject: [GNUnet-SVN] r36409 - gnunet/src/cadet
Date: Fri, 2 Oct 2015 05:37:33 +0200

Author: bartpolot
Date: 2015-10-02 05:37:33 +0200 (Fri, 02 Oct 2015)
New Revision: 36409

Modified:
   gnunet/src/cadet/gnunet-service-cadet_peer.c
Log:
- connect if there are less connections than the minimum, not more

Modified: gnunet/src/cadet/gnunet-service-cadet_peer.c
===================================================================
--- gnunet/src/cadet/gnunet-service-cadet_peer.c        2015-10-02 03:37:32 UTC 
(rev 36408)
+++ gnunet/src/cadet/gnunet-service-cadet_peer.c        2015-10-02 03:37:33 UTC 
(rev 36409)
@@ -2150,7 +2150,7 @@
 
 finish:
   if (NULL != peer->tunnel
-      && CONNECTIONS_PER_TUNNEL < GCT_count_connections (peer->tunnel))
+      && CONNECTIONS_PER_TUNNEL > GCT_count_connections (peer->tunnel))
   {
     GCP_connect (peer);
   }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]