aboutsummaryrefslogtreecommitdiff
path: root/src/rps/rps_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rps/rps_api.c')
-rw-r--r--src/rps/rps_api.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rps/rps_api.c b/src/rps/rps_api.c
index 96660ded6..00f817468 100644
--- a/src/rps/rps_api.c
+++ b/src/rps/rps_api.c
@@ -58,7 +58,7 @@ struct GNUNET_RPS_Handle
58 /** 58 /**
59 * @brief Callback called on each update of the view 59 * @brief Callback called on each update of the view
60 */ 60 */
61 GNUNET_RPS_ViewUpdateCB view_update_cb; 61 GNUNET_RPS_NotifyReadyCB view_update_cb;
62 62
63 /** 63 /**
64 * @brief Closure to each requested update of the view 64 * @brief Closure to each requested update of the view
@@ -68,7 +68,7 @@ struct GNUNET_RPS_Handle
68 /** 68 /**
69 * @brief Callback called on each peer of the biased input stream 69 * @brief Callback called on each peer of the biased input stream
70 */ 70 */
71 GNUNET_RPS_StreamInputCB stream_input_cb; 71 GNUNET_RPS_NotifyReadyCB stream_input_cb;
72 72
73 /** 73 /**
74 * @brief Closure to each requested peer from the biased stream 74 * @brief Closure to each requested peer from the biased stream
@@ -270,7 +270,7 @@ handle_reply (void *cls,
270void 270void
271GNUNET_RPS_view_request (struct GNUNET_RPS_Handle *rps_handle, 271GNUNET_RPS_view_request (struct GNUNET_RPS_Handle *rps_handle,
272 uint32_t num_updates, 272 uint32_t num_updates,
273 GNUNET_RPS_ViewUpdateCB view_update_cb, 273 GNUNET_RPS_NotifyReadyCB view_update_cb,
274 void *cls) 274 void *cls)
275{ 275{
276 struct GNUNET_MQ_Envelope *ev; 276 struct GNUNET_MQ_Envelope *ev;
@@ -300,7 +300,7 @@ GNUNET_RPS_view_request (struct GNUNET_RPS_Handle *rps_handle,
300void 300void
301GNUNET_RPS_stream_request (struct GNUNET_RPS_Handle *rps_handle, 301GNUNET_RPS_stream_request (struct GNUNET_RPS_Handle *rps_handle,
302 uint32_t num_peers, 302 uint32_t num_peers,
303 GNUNET_RPS_StreamInputCB stream_input_cb, 303 GNUNET_RPS_NotifyReadyCB stream_input_cb,
304 void *cls) 304 void *cls)
305{ 305{
306 struct GNUNET_MQ_Envelope *ev; 306 struct GNUNET_MQ_Envelope *ev;