aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-11-28 15:56:09 +0000
committerChristian Grothoff <christian@grothoff.org>2011-11-28 15:56:09 +0000
commit7860a8fa9e6cca9f59efbfee307a01545578f59f (patch)
tree5b67fbd18646dfa9d4ae472d6a995e86c384b5e7 /src/core
parent26482491f9faa76ae8b98e27694c14d5140c1e69 (diff)
downloadgnunet-7860a8fa9e6cca9f59efbfee307a01545578f59f.tar.gz
gnunet-7860a8fa9e6cca9f59efbfee307a01545578f59f.zip
-doxygen fixes
Diffstat (limited to 'src/core')
-rw-r--r--src/core/gnunet-service-core_clients.c3
-rw-r--r--src/core/gnunet-service-core_kx.c4
-rw-r--r--src/core/gnunet-service-core_typemap.c8
-rw-r--r--src/core/gnunet-service-core_typemap.h8
4 files changed, 12 insertions, 11 deletions
diff --git a/src/core/gnunet-service-core_clients.c b/src/core/gnunet-service-core_clients.c
index 5d06af640..5448d5d0f 100644
--- a/src/core/gnunet-service-core_clients.c
+++ b/src/core/gnunet-service-core_clients.c
@@ -207,6 +207,8 @@ type_match (uint16_t type, struct GSC_Client *c)
207 * Send a message to all of our current clients that have the right 207 * Send a message to all of our current clients that have the right
208 * options set. 208 * options set.
209 * 209 *
210 * @param sender origin of the message (used to check that this peer is
211 * known to be connected to the respective client)
210 * @param msg message to multicast 212 * @param msg message to multicast
211 * @param can_drop can this message be discarded if the queue is too long 213 * @param can_drop can this message be discarded if the queue is too long
212 * @param options mask to use 214 * @param options mask to use
@@ -659,7 +661,6 @@ GSC_CLIENTS_reject_request (struct GSC_ClientActiveRequest *car)
659 * @param atsi_count number of entries in 'ats' array 661 * @param atsi_count number of entries in 'ats' array
660 * @param tmap_old previous type map for the neighbour, NULL for disconnect 662 * @param tmap_old previous type map for the neighbour, NULL for disconnect
661 * @param tmap_new updated type map for the neighbour, NULL for disconnect 663 * @param tmap_new updated type map for the neighbour, NULL for disconnect
662 * @param is_new GNUNET_YES if this is a completely new neighbour
663 */ 664 */
664void 665void
665GSC_CLIENTS_notify_client_about_neighbour (struct GSC_Client *client, 666GSC_CLIENTS_notify_client_about_neighbour (struct GSC_Client *client,
diff --git a/src/core/gnunet-service-core_kx.c b/src/core/gnunet-service-core_kx.c
index d49e06e2a..63dd6b7ee 100644
--- a/src/core/gnunet-service-core_kx.c
+++ b/src/core/gnunet-service-core_kx.c
@@ -1068,7 +1068,7 @@ update_timeout (struct GSC_KeyExchangeInfo *kx)
1068 * We received a PONG message. Validate and update our status. 1068 * We received a PONG message. Validate and update our status.
1069 * 1069 *
1070 * @param kx key exchange context for the the PONG 1070 * @param kx key exchange context for the the PONG
1071 * @param m the encrypted PONG message itself 1071 * @param msg the encrypted PONG message itself
1072 */ 1072 */
1073void 1073void
1074GSC_KX_handle_pong (struct GSC_KeyExchangeInfo *kx, 1074GSC_KX_handle_pong (struct GSC_KeyExchangeInfo *kx,
@@ -1322,7 +1322,7 @@ struct DeliverMessageContext
1322 * pass on to the appropriate clients. 1322 * pass on to the appropriate clients.
1323 * 1323 *
1324 * @param kx key exchange context for encrypting the message 1324 * @param kx key exchange context for encrypting the message
1325 * @param m encrypted message 1325 * @param msg encrypted message
1326 * @param atsi performance data 1326 * @param atsi performance data
1327 * @param atsi_count number of entries in ats (excluding 0-termination) 1327 * @param atsi_count number of entries in ats (excluding 0-termination)
1328 */ 1328 */
diff --git a/src/core/gnunet-service-core_typemap.c b/src/core/gnunet-service-core_typemap.c
index d3214ea67..d2dab5d99 100644
--- a/src/core/gnunet-service-core_typemap.c
+++ b/src/core/gnunet-service-core_typemap.c
@@ -205,7 +205,7 @@ GSC_TYPEMAP_remove (const uint16_t * types, unsigned int tlen)
205 * Test if any of the types from the types array is in the 205 * Test if any of the types from the types array is in the
206 * given type map. 206 * given type map.
207 * 207 *
208 * @param map map to test 208 * @param tmap map to test
209 * @param types array of types 209 * @param types array of types
210 * @param tcnt number of entries in types 210 * @param tcnt number of entries in types
211 * @return GNUNET_YES if a type is in the map, GNUNET_NO if not 211 * @return GNUNET_YES if a type is in the map, GNUNET_NO if not
@@ -230,7 +230,7 @@ GSC_TYPEMAP_test_match (const struct GSC_TypeMap *tmap, const uint16_t * types,
230/** 230/**
231 * Add additional types to a given typemap. 231 * Add additional types to a given typemap.
232 * 232 *
233 * @param map map to extend (not changed) 233 * @param tmap map to extend (not changed)
234 * @param types array of types to add 234 * @param types array of types to add
235 * @param tcnt number of entries in types 235 * @param tcnt number of entries in types
236 * @return updated type map (fresh copy) 236 * @return updated type map (fresh copy)
@@ -254,7 +254,7 @@ GSC_TYPEMAP_extend (const struct GSC_TypeMap *tmap, const uint16_t * types,
254/** 254/**
255 * Create an empty type map. 255 * Create an empty type map.
256 * 256 *
257 * @param map a type map 257 * @return an empty type map
258 */ 258 */
259struct GSC_TypeMap * 259struct GSC_TypeMap *
260GSC_TYPEMAP_create () 260GSC_TYPEMAP_create ()
@@ -266,7 +266,7 @@ GSC_TYPEMAP_create ()
266/** 266/**
267 * Free the given type map. 267 * Free the given type map.
268 * 268 *
269 * @param map a type map 269 * @param tmap a type map
270 */ 270 */
271void 271void
272GSC_TYPEMAP_destroy (struct GSC_TypeMap *tmap) 272GSC_TYPEMAP_destroy (struct GSC_TypeMap *tmap)
diff --git a/src/core/gnunet-service-core_typemap.h b/src/core/gnunet-service-core_typemap.h
index ab106a161..aee4573b6 100644
--- a/src/core/gnunet-service-core_typemap.h
+++ b/src/core/gnunet-service-core_typemap.h
@@ -72,7 +72,7 @@ GSC_TYPEMAP_get_from_message (const struct GNUNET_MessageHeader *msg);
72 * Test if any of the types from the types array is in the 72 * Test if any of the types from the types array is in the
73 * given type map. 73 * given type map.
74 * 74 *
75 * @param map map to test 75 * @param tmap map to test
76 * @param types array of types 76 * @param types array of types
77 * @param tcnt number of entries in types 77 * @param tcnt number of entries in types
78 * @return GNUNET_YES if a type is in the map, GNUNET_NO if not 78 * @return GNUNET_YES if a type is in the map, GNUNET_NO if not
@@ -85,7 +85,7 @@ GSC_TYPEMAP_test_match (const struct GSC_TypeMap *tmap, const uint16_t * types,
85/** 85/**
86 * Add additional types to a given typemap. 86 * Add additional types to a given typemap.
87 * 87 *
88 * @param map map to extend (not changed) 88 * @param tmap map to extend (not changed)
89 * @param types array of types to add 89 * @param types array of types to add
90 * @param tcnt number of entries in types 90 * @param tcnt number of entries in types
91 * @return updated type map (fresh copy) 91 * @return updated type map (fresh copy)
@@ -97,7 +97,7 @@ GSC_TYPEMAP_extend (const struct GSC_TypeMap *tmap, const uint16_t * types,
97/** 97/**
98 * Create an empty type map. 98 * Create an empty type map.
99 * 99 *
100 * @param map a type map 100 * @return an empty type map
101 */ 101 */
102struct GSC_TypeMap * 102struct GSC_TypeMap *
103GSC_TYPEMAP_create (void); 103GSC_TYPEMAP_create (void);
@@ -106,7 +106,7 @@ GSC_TYPEMAP_create (void);
106/** 106/**
107 * Free the given type map. 107 * Free the given type map.
108 * 108 *
109 * @param map a type map 109 * @param tmap a type map
110 */ 110 */
111void 111void
112GSC_TYPEMAP_destroy (struct GSC_TypeMap *tmap); 112GSC_TYPEMAP_destroy (struct GSC_TypeMap *tmap);