aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2015-05-07 12:15:07 +0000
committerGabor X Toth <*@tg-x.net>2015-05-07 12:15:07 +0000
commit44fc5054ed8094fa028df7bae6d2c522deca04fa (patch)
tree4656c16aa0118ff6998c721b26237acf11f53a43
parentc1eec384277b32b187683165825d7522a94f327e (diff)
downloadgnunet-44fc5054ed8094fa028df7bae6d2c522deca04fa.tar.gz
gnunet-44fc5054ed8094fa028df7bae6d2c522deca04fa.zip
doc fix
-rw-r--r--src/include/gnunet_client_manager_lib.h8
-rw-r--r--src/multicast/multicast_api.c2
-rw-r--r--src/util/client_manager.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/include/gnunet_client_manager_lib.h b/src/include/gnunet_client_manager_lib.h
index a8c578af4..6623c2ba1 100644
--- a/src/include/gnunet_client_manager_lib.h
+++ b/src/include/gnunet_client_manager_lib.h
@@ -214,6 +214,8 @@ GNUNET_CLIENT_MANAGER_get_user_context_ (struct GNUNET_CLIENT_MANAGER_Connection
214 * 214 *
215 * @param mgr 215 * @param mgr
216 * Client manager connection. 216 * Client manager connection.
217 * @param ctx
218 * User context.
217 * @param size 219 * @param size
218 * Number of bytes in user context struct (for verification only). 220 * Number of bytes in user context struct (for verification only).
219 */ 221 */
@@ -228,10 +230,8 @@ GNUNET_CLIENT_MANAGER_set_user_context_ (struct GNUNET_CLIENT_MANAGER_Connection
228 * 230 *
229 * @param mgr 231 * @param mgr
230 * Client manager connection. 232 * Client manager connection.
231 * @param ctx 233 * @param type
232 * User context. 234 * Type of context (for size verification).
233 * @param size
234 * Number of bytes in user context struct (for verification only).
235 */ 235 */
236#define GNUNET_CLIENT_MANAGER_get_user_context(mgr, type) \ 236#define GNUNET_CLIENT_MANAGER_get_user_context(mgr, type) \
237 (type *) GNUNET_CLIENT_MANAGER_get_user_context_ (mgr, sizeof (type)) 237 (type *) GNUNET_CLIENT_MANAGER_get_user_context_ (mgr, sizeof (type))
diff --git a/src/multicast/multicast_api.c b/src/multicast/multicast_api.c
index d47b166a5..63a779c08 100644
--- a/src/multicast/multicast_api.c
+++ b/src/multicast/multicast_api.c
@@ -144,7 +144,7 @@ struct GNUNET_MULTICAST_Member
144/** 144/**
145 * Handle that identifies a join request. 145 * Handle that identifies a join request.
146 * 146 *
147 * Used to match calls to #GNUNET_MULTICAST_JoinCallback to the 147 * Used to match calls to #GNUNET_MULTICAST_JoinRequestCallback to the
148 * corresponding calls to #GNUNET_MULTICAST_join_decision(). 148 * corresponding calls to #GNUNET_MULTICAST_join_decision().
149 */ 149 */
150struct GNUNET_MULTICAST_JoinHandle 150struct GNUNET_MULTICAST_JoinHandle
diff --git a/src/util/client_manager.c b/src/util/client_manager.c
index abaa49735..662d6d061 100644
--- a/src/util/client_manager.c
+++ b/src/util/client_manager.c
@@ -209,7 +209,7 @@ schedule_disconnect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
209 * 209 *
210 * @param cls 210 * @param cls
211 * struct GNUNET_CLIENT_MANAGER_Connection 211 * struct GNUNET_CLIENT_MANAGER_Connection
212 * @param size 212 * @param buf_size
213 * Number of bytes available in @a buf. 213 * Number of bytes available in @a buf.
214 * @param buf 214 * @param buf
215 * Where to copy the message. 215 * Where to copy the message.