From c50386476c7a79efd87d4b1b36f9c740d74dd9f8 Mon Sep 17 00:00:00 2001 From: Julius Bünger Date: Tue, 18 Sep 2018 18:37:27 +0200 Subject: Remove redundant type definition --- src/rps/rps_api.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/rps/rps_api.c') 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 /** * @brief Callback called on each update of the view */ - GNUNET_RPS_ViewUpdateCB view_update_cb; + GNUNET_RPS_NotifyReadyCB view_update_cb; /** * @brief Closure to each requested update of the view @@ -68,7 +68,7 @@ struct GNUNET_RPS_Handle /** * @brief Callback called on each peer of the biased input stream */ - GNUNET_RPS_StreamInputCB stream_input_cb; + GNUNET_RPS_NotifyReadyCB stream_input_cb; /** * @brief Closure to each requested peer from the biased stream @@ -270,7 +270,7 @@ handle_reply (void *cls, 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) { struct GNUNET_MQ_Envelope *ev; @@ -300,7 +300,7 @@ GNUNET_RPS_view_request (struct GNUNET_RPS_Handle *rps_handle, void GNUNET_RPS_stream_request (struct GNUNET_RPS_Handle *rps_handle, uint32_t num_peers, - GNUNET_RPS_StreamInputCB stream_input_cb, + GNUNET_RPS_NotifyReadyCB stream_input_cb, void *cls) { struct GNUNET_MQ_Envelope *ev; -- cgit v1.2.3