aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2016-07-17 13:26:36 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2016-07-17 13:26:36 +0000
commita7b63b4f0ba0ed24a1c2973644ae78bc3ce72719 (patch)
tree1df70ba169ad5ec48544239cc7b7822092427b9f /src
parent3685629253bb94994449f56871252af24a91b6e7 (diff)
downloadgnunet-a7b63b4f0ba0ed24a1c2973644ae78bc3ce72719.tar.gz
gnunet-a7b63b4f0ba0ed24a1c2973644ae78bc3ce72719.zip
-doxygen
Diffstat (limited to 'src')
-rw-r--r--src/arm/arm_monitor_api.c8
-rw-r--r--src/ats/ats_api_performance.c4
-rw-r--r--src/ats/gnunet-service-ats_performance.c2
-rw-r--r--src/ats/gnunet-service-ats_preferences.c3
-rw-r--r--src/ats/gnunet-service-ats_scheduling.c1
-rw-r--r--src/identity-provider/identity_token.c2
-rw-r--r--src/identity-provider/identity_token.h2
-rw-r--r--src/json/json_mhd.c2
-rw-r--r--src/jsonapi/jsonapi.c2
-rw-r--r--src/peerinfo/gnunet-service-peerinfo.c2
-rw-r--r--src/psycutil/psyc_message.c2
11 files changed, 14 insertions, 16 deletions
diff --git a/src/arm/arm_monitor_api.c b/src/arm/arm_monitor_api.c
index 1f23c1dc5..442320fe8 100644
--- a/src/arm/arm_monitor_api.c
+++ b/src/arm/arm_monitor_api.c
@@ -131,10 +131,10 @@ reconnect_arm_monitor_later (struct GNUNET_ARM_MonitorHandle *h)
131 */ 131 */
132static int 132static int
133check_monitor_notify (void *cls, 133check_monitor_notify (void *cls,
134 const struct GNUNET_ARM_StatusMessage *res) 134 const struct GNUNET_ARM_StatusMessage *msg)
135{ 135{
136 size_t sl = ntohs (res->header.size) - sizeof (struct GNUNET_ARM_StatusMessage); 136 size_t sl = ntohs (msg->header.size) - sizeof (struct GNUNET_ARM_StatusMessage);
137 const char *name = (const char *) &res[1]; 137 const char *name = (const char *) &msg[1];
138 138
139 if ( (0 == sl) || 139 if ( (0 == sl) ||
140 ('\0' != name[sl-1]) ) 140 ('\0' != name[sl-1]) )
@@ -150,7 +150,7 @@ check_monitor_notify (void *cls,
150 * Handler for notification messages received from ARM. 150 * Handler for notification messages received from ARM.
151 * 151 *
152 * @param cls our `struct GNUNET_ARM_MonitorHandle` 152 * @param cls our `struct GNUNET_ARM_MonitorHandle`
153 * @param msg the message received from the arm service 153 * @param res the message received from the arm service
154 */ 154 */
155static void 155static void
156handle_monitor_notify (void *cls, 156handle_monitor_notify (void *cls,
diff --git a/src/ats/ats_api_performance.c b/src/ats/ats_api_performance.c
index 60827e174..7edc39e38 100644
--- a/src/ats/ats_api_performance.c
+++ b/src/ats/ats_api_performance.c
@@ -424,7 +424,7 @@ handle_reservation_result (void *cls,
424 * We received a PeerInformationMessage. Validate it. 424 * We received a PeerInformationMessage. Validate it.
425 * 425 *
426 * @param cls our context with the callback 426 * @param cls our context with the callback
427 * @param msg the message 427 * @param pi the message
428 * @return #GNUNET_OK if the message was well-formed 428 * @return #GNUNET_OK if the message was well-formed
429 */ 429 */
430static int 430static int
@@ -456,7 +456,7 @@ check_address_list (void *cls,
456 * Process it. 456 * Process it.
457 * 457 *
458 * @param cls our context with the callback 458 * @param cls our context with the callback
459 * @param msg the message 459 * @param pi the message
460 */ 460 */
461static void 461static void
462handle_address_list (void *cls, 462handle_address_list (void *cls,
diff --git a/src/ats/gnunet-service-ats_performance.c b/src/ats/gnunet-service-ats_performance.c
index 83a458018..8702716f9 100644
--- a/src/ats/gnunet-service-ats_performance.c
+++ b/src/ats/gnunet-service-ats_performance.c
@@ -48,7 +48,7 @@ static struct GNUNET_SERVER_NotificationContext *nc_pic;
48 * Transmit the given performance information to all performance 48 * Transmit the given performance information to all performance
49 * clients. 49 * clients.
50 * 50 *
51 * @param pc client to send to, NULL for all 51 * @param client client to send to, NULL for all
52 * @param peer peer for which this is an address suggestion 52 * @param peer peer for which this is an address suggestion
53 * @param plugin_name 0-termintated string specifying the transport plugin 53 * @param plugin_name 0-termintated string specifying the transport plugin
54 * @param plugin_addr binary address for the plugin to use 54 * @param plugin_addr binary address for the plugin to use
diff --git a/src/ats/gnunet-service-ats_preferences.c b/src/ats/gnunet-service-ats_preferences.c
index c835b026b..64779bbca 100644
--- a/src/ats/gnunet-service-ats_preferences.c
+++ b/src/ats/gnunet-service-ats_preferences.c
@@ -218,7 +218,6 @@ sum_relative_preferences (void *cls,
218 * 218 *
219 * @param id peer id of the peer for which we should do the update 219 * @param id peer id of the peer for which we should do the update
220 * @param kind the kind of preference value to update 220 * @param kind the kind of preference value to update
221 * @param rp the relative peer struct where we store the global result
222 * @return the new relative preference 221 * @return the new relative preference
223 */ 222 */
224static void 223static void
@@ -526,7 +525,7 @@ recalculate_relative_preferences (struct PreferenceClient *c,
526 * changed, update the global preferences for the given 525 * changed, update the global preferences for the given
527 * peer and notify the plugin. 526 * peer and notify the plugin.
528 * 527 *
529 * @param value the kind of preference to calculate the 528 * @param cls the kind of preference to calculate the
530 * new global relative preference values for 529 * new global relative preference values for
531 * @param key the peer to update relative preference values for 530 * @param key the peer to update relative preference values for
532 * @param value a `struct PeerRelative`, unused 531 * @param value a `struct PeerRelative`, unused
diff --git a/src/ats/gnunet-service-ats_scheduling.c b/src/ats/gnunet-service-ats_scheduling.c
index 45cd0dec1..f19370f7a 100644
--- a/src/ats/gnunet-service-ats_scheduling.c
+++ b/src/ats/gnunet-service-ats_scheduling.c
@@ -260,7 +260,6 @@ GAS_handle_address_destroyed (void *cls,
260 * Initialize scheduling subsystem. 260 * Initialize scheduling subsystem.
261 * 261 *
262 * @param server handle to our server 262 * @param server handle to our server
263 * @param ah the address handle to use
264 */ 263 */
265void 264void
266GAS_scheduling_init (struct GNUNET_SERVER_Handle *server) 265GAS_scheduling_init (struct GNUNET_SERVER_Handle *server)
diff --git a/src/identity-provider/identity_token.c b/src/identity-provider/identity_token.c
index dc94145d3..31249840b 100644
--- a/src/identity-provider/identity_token.c
+++ b/src/identity-provider/identity_token.c
@@ -19,7 +19,7 @@
19 */ 19 */
20 20
21/** 21/**
22 * @file identity-token/identity_token.c 22 * @file identity-provider/identity_token.c
23 * @brief helper library to manage identity tokens 23 * @brief helper library to manage identity tokens
24 * @author Martin Schanzenbach 24 * @author Martin Schanzenbach
25 */ 25 */
diff --git a/src/identity-provider/identity_token.h b/src/identity-provider/identity_token.h
index 6cd08dbaa..7ded6662e 100644
--- a/src/identity-provider/identity_token.h
+++ b/src/identity-provider/identity_token.h
@@ -19,7 +19,7 @@
19 */ 19 */
20/** 20/**
21 * @author Martin Schanzenbach 21 * @author Martin Schanzenbach
22 * @file include/gnunet_identity_provider_lib.h 22 * @file identity-provider/identity_token.h
23 * @brief GNUnet Identity Provider library 23 * @brief GNUnet Identity Provider library
24 * 24 *
25 */ 25 */
diff --git a/src/json/json_mhd.c b/src/json/json_mhd.c
index e32e092ff..b17be46f0 100644
--- a/src/json/json_mhd.c
+++ b/src/json/json_mhd.c
@@ -14,7 +14,7 @@
14 GNUnet; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> 14 GNUnet; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
15*/ 15*/
16/** 16/**
17 * @file json/mhd_json.c 17 * @file json/json_mhd.c
18 * @brief functions to parse JSON snippets we receive via MHD 18 * @brief functions to parse JSON snippets we receive via MHD
19 * @author Florian Dold 19 * @author Florian Dold
20 * @author Benedikt Mueller 20 * @author Benedikt Mueller
diff --git a/src/jsonapi/jsonapi.c b/src/jsonapi/jsonapi.c
index 53ff64694..5223a1e05 100644
--- a/src/jsonapi/jsonapi.c
+++ b/src/jsonapi/jsonapi.c
@@ -14,7 +14,7 @@
14 GNUnet; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> 14 GNUnet; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
15*/ 15*/
16/** 16/**
17 * @file json/jsonapi.c 17 * @file jsonapi/jsonapi.c
18 * @brief functions to generate specifciations for JSONAPI parsing 18 * @brief functions to generate specifciations for JSONAPI parsing
19 * @author Martin Schanzenbach 19 * @author Martin Schanzenbach
20 */ 20 */
diff --git a/src/peerinfo/gnunet-service-peerinfo.c b/src/peerinfo/gnunet-service-peerinfo.c
index 5d0f248fb..07a7d704c 100644
--- a/src/peerinfo/gnunet-service-peerinfo.c
+++ b/src/peerinfo/gnunet-service-peerinfo.c
@@ -167,7 +167,7 @@ static struct NotificationContext *nc_tail;
167static struct GNUNET_SCHEDULER_Task *cron_clean; 167static struct GNUNET_SCHEDULER_Task *cron_clean;
168 168
169/** 169/**
170 * Handle for task to run #cron_scan_directory_hosts() 170 * Handle for task to run #cron_scan_directory_data_hosts()
171 */ 171 */
172static struct GNUNET_SCHEDULER_Task *cron_scan; 172static struct GNUNET_SCHEDULER_Task *cron_scan;
173 173
diff --git a/src/psycutil/psyc_message.c b/src/psycutil/psyc_message.c
index 272b4bf4c..303ba8466 100644
--- a/src/psycutil/psyc_message.c
+++ b/src/psycutil/psyc_message.c
@@ -19,7 +19,7 @@
19 */ 19 */
20 20
21/** 21/**
22 * @file psycstore/psyc_util_lib.c 22 * @file psycutil/psyc_message.c
23 * @brief PSYC utilities; receiving/transmitting/logging PSYC messages. 23 * @brief PSYC utilities; receiving/transmitting/logging PSYC messages.
24 * @author Gabor X Toth 24 * @author Gabor X Toth
25 */ 25 */