aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_peer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cadet/gnunet-service-cadet_peer.h')
-rw-r--r--src/cadet/gnunet-service-cadet_peer.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/cadet/gnunet-service-cadet_peer.h b/src/cadet/gnunet-service-cadet_peer.h
index af937007a..eae7764c3 100644
--- a/src/cadet/gnunet-service-cadet_peer.h
+++ b/src/cadet/gnunet-service-cadet_peer.h
@@ -247,10 +247,12 @@ GCP_add_tunnel (struct CadetPeer *peer);
247 * 247 *
248 * @param peer Peer to add connection to. 248 * @param peer Peer to add connection to.
249 * @param c Connection to add. 249 * @param c Connection to add.
250 * @param pred #GNUNET_YES if we are predecessor, #GNUNET_NO if we are successor
250 */ 251 */
251void 252void
252GCP_add_connection (struct CadetPeer *peer, 253GCP_add_connection (struct CadetPeer *peer,
253 struct CadetConnection *c); 254 struct CadetConnection *c,
255 int pred);
254 256
255 257
256/** 258/**
@@ -316,10 +318,12 @@ GCP_remove_path (struct CadetPeer *peer,
316 * 318 *
317 * @param peer Peer to remove connection from. 319 * @param peer Peer to remove connection from.
318 * @param c Connection to remove. 320 * @param c Connection to remove.
321 * @param pred #GNUNET_YES if we were predecessor, #GNUNET_NO if we were successor
319 */ 322 */
320void 323void
321GCP_remove_connection (struct CadetPeer *peer, 324GCP_remove_connection (struct CadetPeer *peer,
322 const struct CadetConnection *c); 325 const struct CadetConnection *c,
326 int pred);
323 327
324 328
325/** 329/**