aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_testbed_service.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/gnunet_testbed_service.h b/src/include/gnunet_testbed_service.h
index ea1765946..7953feb6e 100644
--- a/src/include/gnunet_testbed_service.h
+++ b/src/include/gnunet_testbed_service.h
@@ -705,13 +705,16 @@ typedef void (*GNUNET_TESTBED_PeerChurnCallback) (void *cls,
705/** 705/**
706 * Start the given peer. 706 * Start the given peer.
707 * 707 *
708 * @param op_cls the closure for this operation; will be set in
709 * event->details.operation_finished.op_cls when this operation fails.
708 * @param peer peer to start 710 * @param peer peer to start
709 * @param pcc function to call upon completion 711 * @param pcc function to call upon completion
710 * @param pcc_cls closure for 'pcc' 712 * @param pcc_cls closure for 'pcc'
711 * @return handle to the operation 713 * @return handle to the operation
712 */ 714 */
713struct GNUNET_TESTBED_Operation * 715struct GNUNET_TESTBED_Operation *
714GNUNET_TESTBED_peer_start (struct GNUNET_TESTBED_Peer *peer, 716GNUNET_TESTBED_peer_start (void *op_cls,
717 struct GNUNET_TESTBED_Peer *peer,
715 GNUNET_TESTBED_PeerChurnCallback pcc, 718 GNUNET_TESTBED_PeerChurnCallback pcc,
716 void *pcc_cls); 719 void *pcc_cls);
717 720