X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Finclude%2Fgnunet_rps_service.h;h=f77c3dbc4e97cab725b76942776db38585c2687b;hb=ec50a665dc884f7997419d0351ae8ade9c1aeabe;hp=252188c627a5cb57ae5d2fef710c2bfdfcebc717;hpb=e91d46cdbbc97414968fa751fd1f596757c56875;p=oweals%2Fgnunet.git diff --git a/src/include/gnunet_rps_service.h b/src/include/gnunet_rps_service.h index 252188c62..f77c3dbc4 100644 --- a/src/include/gnunet_rps_service.h +++ b/src/include/gnunet_rps_service.h @@ -63,23 +63,6 @@ typedef void (* GNUNET_RPS_NotifyReadyCB) (void *cls, uint64_t num_peers, const struct GNUNET_PeerIdentity *peers); -/** - * Callback called when view was updated - * - * @param num_peers the number of peers returned - * @param peers array with num_peers PeerIDs - */ -typedef void (* GNUNET_RPS_ViewUpdateCB) (void *cls, - uint64_t num_peers, - const struct GNUNET_PeerIdentity *peers); - -/** - * Callback called when a peer from the biased stream was received - * - * @param peer The received peer - */ -typedef void (* GNUNET_RPS_StreamInputCB) (void *cls, - const struct GNUNET_PeerIdentity *peer); /** * Connect to the rps service @@ -166,7 +149,7 @@ GNUNET_RPS_act_malicious (struct GNUNET_RPS_Handle *h, void GNUNET_RPS_view_request (struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, - GNUNET_RPS_ViewUpdateCB view_update_cb, + GNUNET_RPS_NotifyReadyCB view_update_cb, void *cls); @@ -179,10 +162,10 @@ GNUNET_RPS_view_request (struct GNUNET_RPS_Handle *rps_handle, * @param cls a closure that will be given to the callback * @param ready_cb the callback called when the peers are available */ -void +struct GNUNET_RPS_StreamRequestHandle * GNUNET_RPS_stream_request (struct GNUNET_RPS_Handle *rps_handle, uint32_t num_updates, - GNUNET_RPS_StreamInputCB stream_input_cb, + GNUNET_RPS_NotifyReadyCB stream_input_cb, void *cls);