Remove redundant type definition
authorJulius Bünger <buenger@mytum.de>
Tue, 18 Sep 2018 16:37:27 +0000 (18:37 +0200)
committerJulius Bünger <buenger@mytum.de>
Tue, 18 Sep 2018 16:37:27 +0000 (18:37 +0200)
src/include/gnunet_rps_service.h
src/rps/rps_api.c

index eda012076d190d45a99209da864c31b27309119c..22e944d0f76b3bf711dfd1ffe89167569b11665d 100644 (file)
@@ -63,24 +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,
-    uint64_t num_peers,
-    const struct GNUNET_PeerIdentity *peer);
 
 /**
  * Connect to the rps service
@@ -167,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);
 
 
@@ -183,7 +165,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_updates,
-                           GNUNET_RPS_StreamInputCB stream_input_cb,
+                           GNUNET_RPS_NotifyReadyCB stream_input_cb,
                            void *cls);
 
 
index 96660ded6c2f097f8911eaf96066d82ea203099a..00f817468c52492bd08c6a29443d076dfb968be0 100644 (file)
@@ -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;