aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-04-19 11:52:01 +0200
committerChristian Grothoff <christian@grothoff.org>2019-04-19 11:52:01 +0200
commit84b2518a5a38e2866bd5eab994eaf8e670ffb1c6 (patch)
tree11aa92a7deb5430d2a253a3d052bd579742704b2 /src
parentbab2ea57b487b09236533d14bafb73c904439788 (diff)
downloadgnunet-84b2518a5a38e2866bd5eab994eaf8e670ffb1c6.tar.gz
gnunet-84b2518a5a38e2866bd5eab994eaf8e670ffb1c6.zip
typos
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_rps_service.h12
-rw-r--r--src/rps/gnunet-service-rps.c2
2 files changed, 7 insertions, 7 deletions
diff --git a/src/include/gnunet_rps_service.h b/src/include/gnunet_rps_service.h
index c88e75cc7..b669c55ef 100644
--- a/src/include/gnunet_rps_service.h
+++ b/src/include/gnunet_rps_service.h
@@ -87,7 +87,7 @@ typedef void (* GNUNET_RPS_NotifyReadySingleInfoCB) (void *cls,
87 * @param cfg configuration to use 87 * @param cfg configuration to use
88 * @return handle to the rps service 88 * @return handle to the rps service
89 */ 89 */
90 struct GNUNET_RPS_Handle * 90struct GNUNET_RPS_Handle *
91GNUNET_RPS_connect (const struct GNUNET_CONFIGURATION_Handle *cfg); 91GNUNET_RPS_connect (const struct GNUNET_CONFIGURATION_Handle *cfg);
92 92
93 93
@@ -95,7 +95,7 @@ GNUNET_RPS_connect (const struct GNUNET_CONFIGURATION_Handle *cfg);
95 * @brief Start a sub with the given shared value 95 * @brief Start a sub with the given shared value
96 * 96 *
97 * @param h Handle to rps 97 * @param h Handle to rps
98 * @param shared_value The shared value that defines the members of the sub (-gorup) 98 * @param shared_value The shared value that defines the members of the sub (-group)
99 */ 99 */
100void 100void
101GNUNET_RPS_sub_start (struct GNUNET_RPS_Handle *h, 101GNUNET_RPS_sub_start (struct GNUNET_RPS_Handle *h,
@@ -106,7 +106,7 @@ GNUNET_RPS_sub_start (struct GNUNET_RPS_Handle *h,
106 * @brief Stop a sub with the given shared value 106 * @brief Stop a sub with the given shared value
107 * 107 *
108 * @param h Handle to rps 108 * @param h Handle to rps
109 * @param shared_value The shared value that defines the members of the sub (-gorup) 109 * @param shared_value The shared value that defines the members of the sub (-group)
110 */ 110 */
111void 111void
112GNUNET_RPS_sub_stop (struct GNUNET_RPS_Handle *h, 112GNUNET_RPS_sub_stop (struct GNUNET_RPS_Handle *h,
@@ -127,7 +127,7 @@ GNUNET_RPS_sub_stop (struct GNUNET_RPS_Handle *h,
127 * @param cls a closure that will be given to the callback 127 * @param cls a closure that will be given to the callback
128 * @return handle to this request 128 * @return handle to this request
129 */ 129 */
130 struct GNUNET_RPS_Request_Handle * 130struct GNUNET_RPS_Request_Handle *
131GNUNET_RPS_request_peers (struct GNUNET_RPS_Handle *h, uint32_t n, 131GNUNET_RPS_request_peers (struct GNUNET_RPS_Handle *h, uint32_t n,
132 GNUNET_RPS_NotifyReadyCB ready_cb, 132 GNUNET_RPS_NotifyReadyCB ready_cb,
133 void *cls); 133 void *cls);
@@ -154,7 +154,7 @@ GNUNET_RPS_request_peer_info (struct GNUNET_RPS_Handle *rps_handle,
154 * @param n number of peers to seed 154 * @param n number of peers to seed
155 * @param ids the ids of the peers seeded 155 * @param ids the ids of the peers seeded
156 */ 156 */
157 void 157void
158GNUNET_RPS_seed_ids (struct GNUNET_RPS_Handle *h, uint32_t n, 158GNUNET_RPS_seed_ids (struct GNUNET_RPS_Handle *h, uint32_t n,
159 const struct GNUNET_PeerIdentity * ids); 159 const struct GNUNET_PeerIdentity * ids);
160 160
@@ -163,7 +163,7 @@ GNUNET_RPS_seed_ids (struct GNUNET_RPS_Handle *h, uint32_t n,
163 * 163 *
164 * @param rh handle of the pending request to be canceled 164 * @param rh handle of the pending request to be canceled
165 */ 165 */
166 void 166void
167GNUNET_RPS_request_cancel (struct GNUNET_RPS_Request_Handle *rh); 167GNUNET_RPS_request_cancel (struct GNUNET_RPS_Request_Handle *rh);
168 168
169 169
diff --git a/src/rps/gnunet-service-rps.c b/src/rps/gnunet-service-rps.c
index e929c89de..c5530a1eb 100644
--- a/src/rps/gnunet-service-rps.c
+++ b/src/rps/gnunet-service-rps.c
@@ -345,7 +345,7 @@ struct Sub
345 unsigned int sampler_size_est_need; 345 unsigned int sampler_size_est_need;
346 346
347 /** 347 /**
348 * Time inverval the do_round task runs in. 348 * Time interval the do_round task runs in.
349 */ 349 */
350 struct GNUNET_TIME_Relative round_interval; 350 struct GNUNET_TIME_Relative round_interval;
351 351