gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r20236 - in gnunet/src: gns transport


From: gnunet
Subject: [GNUnet-SVN] r20236 - in gnunet/src: gns transport
Date: Sun, 4 Mar 2012 15:28:41 +0100

Author: grothoff
Date: 2012-03-04 15:28:41 +0100 (Sun, 04 Mar 2012)
New Revision: 20236

Modified:
   gnunet/src/gns/gnunet-gns-fcfsd.c
   gnunet/src/transport/plugin_transport_wlan.c
Log:
-doxygen fixes

Modified: gnunet/src/gns/gnunet-gns-fcfsd.c
===================================================================
--- gnunet/src/gns/gnunet-gns-fcfsd.c   2012-03-04 14:10:23 UTC (rev 20235)
+++ gnunet/src/gns/gnunet-gns-fcfsd.c   2012-03-04 14:28:41 UTC (rev 20236)
@@ -363,7 +363,7 @@
                         const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded 
*zone_key,
                         struct GNUNET_TIME_Absolute expire,                    
    
                         const char *name,
-                        unsigned int rd_len,
+                        unsigned int rd_count,
                         const struct GNUNET_NAMESTORE_RecordData *rd,
                         const struct GNUNET_CRYPTO_RsaSignature *signature)
 {
@@ -371,11 +371,11 @@
   struct GNUNET_NAMESTORE_RecordData r;
 
   request->qe = NULL;
-  if (0 != rd_len)
+  if (0 != rd_count)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                _("Found %u existing records for domain `%s'\n"),
-               rd_len,
+               rd_count,
                request->domain_name);
     request->phase = RP_FAIL;
     run_httpd_now ();
@@ -398,9 +398,8 @@
 /**
  * Main MHD callback for handling requests.
  *
- *
- * @param cls argument given together with the function
- *        pointer when the handler was registered with MHD
+ * @param cls unused
+ * @param connection MHD connection handle
  * @param url the requested url
  * @param method the HTTP method used ("GET", "PUT", etc.)
  * @param version the HTTP version string (i.e. "HTTP/1.1")
@@ -414,16 +413,7 @@
  * @param upload_data_size set initially to the size of the
  *        upload_data provided; the method must update this
  *        value to the number of bytes NOT processed;
- * @param con_cls pointer that the callback can set to some
- *        address and that will be preserved by MHD for future
- *        calls for this request; since the access handler may
- *        be called many times (i.e., for a PUT/POST operation
- *        with plenty of upload data) this allows the application
- *        to easily associate some request-specific state.
- *        If necessary, this state can be cleaned up in the
- *        global "MHD_RequestCompleted" callback (which
- *        can be set with the MHD_OPTION_NOTIFY_COMPLETED).
- *        Initially, <tt>*con_cls</tt> will be NULL.
+ * @param ptr pointer to location where we store the 'struct Request'
  * @return MHS_YES if the connection was handled successfully,
  *         MHS_NO if the socket must be closed due to a serios
  *         error while handling the request

Modified: gnunet/src/transport/plugin_transport_wlan.c
===================================================================
--- gnunet/src/transport/plugin_transport_wlan.c        2012-03-04 14:10:23 UTC 
(rev 20235)
+++ gnunet/src/transport/plugin_transport_wlan.c        2012-03-04 14:28:41 UTC 
(rev 20236)
@@ -2840,9 +2840,10 @@
 }
 
 /**
- * Function to print mac addresses nice *
- * @param pointer to 6 byte with the mac address
- * @return pointer to the chars which hold the print out
+ * Function to print mac addresses nicely.
+ *
+ * @param mac the mac address
+ * @return string to a static buffer with the human-readable mac, will be 
overwritten during the next call to this function
  */
 static const char *
 macprinter (const u_int8_t * mac)




reply via email to

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