gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r37546 - in gnunet/src: arm ats identity-provider json json


From: gnunet
Subject: [GNUnet-SVN] r37546 - in gnunet/src: arm ats identity-provider json jsonapi peerinfo psycutil
Date: Sun, 17 Jul 2016 15:26:37 +0200

Author: schanzen
Date: 2016-07-17 15:26:36 +0200 (Sun, 17 Jul 2016)
New Revision: 37546

Modified:
   gnunet/src/arm/arm_monitor_api.c
   gnunet/src/ats/ats_api_performance.c
   gnunet/src/ats/gnunet-service-ats_performance.c
   gnunet/src/ats/gnunet-service-ats_preferences.c
   gnunet/src/ats/gnunet-service-ats_scheduling.c
   gnunet/src/identity-provider/identity_token.c
   gnunet/src/identity-provider/identity_token.h
   gnunet/src/json/json_mhd.c
   gnunet/src/jsonapi/jsonapi.c
   gnunet/src/peerinfo/gnunet-service-peerinfo.c
   gnunet/src/psycutil/psyc_message.c
Log:
-doxygen

Modified: gnunet/src/arm/arm_monitor_api.c
===================================================================
--- gnunet/src/arm/arm_monitor_api.c    2016-07-16 19:56:26 UTC (rev 37545)
+++ gnunet/src/arm/arm_monitor_api.c    2016-07-17 13:26:36 UTC (rev 37546)
@@ -131,10 +131,10 @@
  */
 static int
 check_monitor_notify (void *cls,
-                       const struct GNUNET_ARM_StatusMessage *res)
+                       const struct GNUNET_ARM_StatusMessage *msg)
 {
-  size_t sl = ntohs (res->header.size) - sizeof (struct 
GNUNET_ARM_StatusMessage);
-  const char *name = (const char *) &res[1];
+  size_t sl = ntohs (msg->header.size) - sizeof (struct 
GNUNET_ARM_StatusMessage);
+  const char *name = (const char *) &msg[1];
 
   if ( (0 == sl) ||
        ('\0' != name[sl-1]) )
@@ -150,7 +150,7 @@
  * Handler for notification messages received from ARM.
  *
  * @param cls our `struct GNUNET_ARM_MonitorHandle`
- * @param msg the message received from the arm service
+ * @param res the message received from the arm service
  */
 static void
 handle_monitor_notify (void *cls,

Modified: gnunet/src/ats/ats_api_performance.c
===================================================================
--- gnunet/src/ats/ats_api_performance.c        2016-07-16 19:56:26 UTC (rev 
37545)
+++ gnunet/src/ats/ats_api_performance.c        2016-07-17 13:26:36 UTC (rev 
37546)
@@ -424,7 +424,7 @@
  * We received a PeerInformationMessage.  Validate it.
  *
  * @param cls our context with the callback
- * @param msg the message
+ * @param pi the message
  * @return #GNUNET_OK if the message was well-formed
  */
 static int
@@ -456,7 +456,7 @@
  * Process it.
  *
  * @param cls our context with the callback
- * @param msg the message
+ * @param pi the message
  */
 static void
 handle_address_list (void *cls,

Modified: gnunet/src/ats/gnunet-service-ats_performance.c
===================================================================
--- gnunet/src/ats/gnunet-service-ats_performance.c     2016-07-16 19:56:26 UTC 
(rev 37545)
+++ gnunet/src/ats/gnunet-service-ats_performance.c     2016-07-17 13:26:36 UTC 
(rev 37546)
@@ -48,7 +48,7 @@
  * Transmit the given performance information to all performance
  * clients.
  *
- * @param pc client to send to, NULL for all
+ * @param client client to send to, NULL for all
  * @param peer peer for which this is an address suggestion
  * @param plugin_name 0-termintated string specifying the transport plugin
  * @param plugin_addr binary address for the plugin to use

Modified: gnunet/src/ats/gnunet-service-ats_preferences.c
===================================================================
--- gnunet/src/ats/gnunet-service-ats_preferences.c     2016-07-16 19:56:26 UTC 
(rev 37545)
+++ gnunet/src/ats/gnunet-service-ats_preferences.c     2016-07-17 13:26:36 UTC 
(rev 37546)
@@ -218,7 +218,6 @@
  *
  * @param id peer id of the peer for which we should do the update
  * @param kind the kind of preference value to update
- * @param rp the relative peer struct where we store the global result
  * @return the new relative preference
  */
 static void
@@ -526,7 +525,7 @@
  * changed, update the global preferences for the given
  * peer and notify the plugin.
  *
- * @param value the kind of preference to calculate the
+ * @param cls the kind of preference to calculate the
  *        new global relative preference values for
  * @param key the peer to update relative preference values for
  * @param value a `struct PeerRelative`, unused

Modified: gnunet/src/ats/gnunet-service-ats_scheduling.c
===================================================================
--- gnunet/src/ats/gnunet-service-ats_scheduling.c      2016-07-16 19:56:26 UTC 
(rev 37545)
+++ gnunet/src/ats/gnunet-service-ats_scheduling.c      2016-07-17 13:26:36 UTC 
(rev 37546)
@@ -260,7 +260,6 @@
  * Initialize scheduling subsystem.
  *
  * @param server handle to our server
- * @param ah the address handle to use
  */
 void
 GAS_scheduling_init (struct GNUNET_SERVER_Handle *server)

Modified: gnunet/src/identity-provider/identity_token.c
===================================================================
--- gnunet/src/identity-provider/identity_token.c       2016-07-16 19:56:26 UTC 
(rev 37545)
+++ gnunet/src/identity-provider/identity_token.c       2016-07-17 13:26:36 UTC 
(rev 37546)
@@ -19,7 +19,7 @@
  */
 
 /**
- * @file identity-token/identity_token.c
+ * @file identity-provider/identity_token.c
  * @brief helper library to manage identity tokens
  * @author Martin Schanzenbach
  */

Modified: gnunet/src/identity-provider/identity_token.h
===================================================================
--- gnunet/src/identity-provider/identity_token.h       2016-07-16 19:56:26 UTC 
(rev 37545)
+++ gnunet/src/identity-provider/identity_token.h       2016-07-17 13:26:36 UTC 
(rev 37546)
@@ -19,7 +19,7 @@
    */
 /**
  * @author Martin Schanzenbach
- * @file include/gnunet_identity_provider_lib.h
+ * @file identity-provider/identity_token.h
  * @brief GNUnet Identity Provider library
  *
  */

Modified: gnunet/src/json/json_mhd.c
===================================================================
--- gnunet/src/json/json_mhd.c  2016-07-16 19:56:26 UTC (rev 37545)
+++ gnunet/src/json/json_mhd.c  2016-07-17 13:26:36 UTC (rev 37546)
@@ -14,7 +14,7 @@
   GNUnet; see the file COPYING.  If not, If not, see 
<http://www.gnu.org/licenses/>
 */
 /**
- * @file json/mhd_json.c
+ * @file json/json_mhd.c
  * @brief functions to parse JSON snippets we receive via MHD
  * @author Florian Dold
  * @author Benedikt Mueller

Modified: gnunet/src/jsonapi/jsonapi.c
===================================================================
--- gnunet/src/jsonapi/jsonapi.c        2016-07-16 19:56:26 UTC (rev 37545)
+++ gnunet/src/jsonapi/jsonapi.c        2016-07-17 13:26:36 UTC (rev 37546)
@@ -14,7 +14,7 @@
   GNUnet; see the file COPYING.  If not, If not, see 
<http://www.gnu.org/licenses/>
 */
 /**
- * @file json/jsonapi.c
+ * @file jsonapi/jsonapi.c
  * @brief functions to generate specifciations for JSONAPI parsing
  * @author Martin Schanzenbach
  */

Modified: gnunet/src/peerinfo/gnunet-service-peerinfo.c
===================================================================
--- gnunet/src/peerinfo/gnunet-service-peerinfo.c       2016-07-16 19:56:26 UTC 
(rev 37545)
+++ gnunet/src/peerinfo/gnunet-service-peerinfo.c       2016-07-17 13:26:36 UTC 
(rev 37546)
@@ -167,7 +167,7 @@
 static struct GNUNET_SCHEDULER_Task *cron_clean;
 
 /**
- * Handle for task to run #cron_scan_directory_hosts()
+ * Handle for task to run #cron_scan_directory_data_hosts()
  */
 static struct GNUNET_SCHEDULER_Task *cron_scan;
 

Modified: gnunet/src/psycutil/psyc_message.c
===================================================================
--- gnunet/src/psycutil/psyc_message.c  2016-07-16 19:56:26 UTC (rev 37545)
+++ gnunet/src/psycutil/psyc_message.c  2016-07-17 13:26:36 UTC (rev 37546)
@@ -19,7 +19,7 @@
  */
 
 /**
- * @file psycstore/psyc_util_lib.c
+ * @file psycutil/psyc_message.c
  * @brief PSYC utilities; receiving/transmitting/logging PSYC messages.
  * @author Gabor X Toth
  */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]