aboutsummaryrefslogtreecommitdiff
path: root/src/rps
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2016-06-13 21:44:38 +0000
committerJulius Bünger <buenger@mytum.de>2016-06-13 21:44:38 +0000
commit88a38a7538d038b6d0febca509e934aaac4bc6f8 (patch)
tree0df14054c0c932ac6421726064da6b563079e0e6 /src/rps
parent0cf4193a34c4445b99b94c3c315d6a1361835cb6 (diff)
downloadgnunet-88a38a7538d038b6d0febca509e934aaac4bc6f8.tar.gz
gnunet-88a38a7538d038b6d0febca509e934aaac4bc6f8.zip
-rps: open channel when inserting peer in view
Diffstat (limited to 'src/rps')
-rw-r--r--src/rps/gnunet-service-rps.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rps/gnunet-service-rps.c b/src/rps/gnunet-service-rps.c
index cec0719fd..feffe2ba1 100644
--- a/src/rps/gnunet-service-rps.c
+++ b/src/rps/gnunet-service-rps.c
@@ -470,6 +470,8 @@ insert_in_view (const struct GNUNET_PeerIdentity *peer)
470 (void) Peers_schedule_operation (peer, insert_in_view_op); 470 (void) Peers_schedule_operation (peer, insert_in_view_op);
471 return GNUNET_NO; 471 return GNUNET_NO;
472 } 472 }
473 /* Open channel towards peer to keep connection open */
474 Peers_indicate_sending_intention (peer);
473 return View_put (peer); 475 return View_put (peer);
474} 476}
475 477