gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r29101 - in libmicrohttpd: doc/doxygen src/include src/micr


From: gnunet
Subject: [GNUnet-SVN] r29101 - in libmicrohttpd: doc/doxygen src/include src/microhttpd src/microspdy
Date: Sat, 7 Sep 2013 22:28:28 +0200

Author: grothoff
Date: 2013-09-07 22:28:28 +0200 (Sat, 07 Sep 2013)
New Revision: 29101

Modified:
   libmicrohttpd/doc/doxygen/libmicrohttpd.doxy
   libmicrohttpd/src/include/microhttpd.h
   libmicrohttpd/src/microhttpd/connection.c
   libmicrohttpd/src/microhttpd/daemon.c
   libmicrohttpd/src/microhttpd/internal.c
   libmicrohttpd/src/microhttpd/internal.h
   libmicrohttpd/src/microhttpd/postprocessor.c
   libmicrohttpd/src/microspdy/daemon.c
   libmicrohttpd/src/microspdy/internal.c
   libmicrohttpd/src/microspdy/internal.h
Log:
-doxygen fixes

Modified: libmicrohttpd/doc/doxygen/libmicrohttpd.doxy
===================================================================
--- libmicrohttpd/doc/doxygen/libmicrohttpd.doxy        2013-09-07 20:11:56 UTC 
(rev 29100)
+++ libmicrohttpd/doc/doxygen/libmicrohttpd.doxy        2013-09-07 20:28:28 UTC 
(rev 29101)
@@ -32,7 +32,6 @@
 JAVADOC_AUTOBRIEF      = NO
 QT_AUTOBRIEF           = NO
 MULTILINE_CPP_IS_BRIEF = NO
-DETAILS_AT_TOP         = NO
 INHERIT_DOCS           = NO
 SEPARATE_MEMBER_PAGES  = NO
 TAB_SIZE               = 8
@@ -76,7 +75,6 @@
 ENABLED_SECTIONS       = 
 MAX_INITIALIZER_LINES  = 30
 SHOW_USED_FILES        = YES
-SHOW_DIRECTORIES       = YES
 FILE_VERSION_FILTER    = 
 #---------------------------------------------------------------------------
 # configuration options related to warning and progress messages
@@ -133,7 +131,6 @@
 HTML_HEADER            = 
 HTML_FOOTER            = 
 HTML_STYLESHEET        = 
-HTML_ALIGN_MEMBERS     = YES
 GENERATE_HTMLHELP      = NO
 GENERATE_DOCSET        = NO
 DOCSET_FEEDNAME        = "Doxygen generated docs"

Modified: libmicrohttpd/src/include/microhttpd.h
===================================================================
--- libmicrohttpd/src/include/microhttpd.h      2013-09-07 20:11:56 UTC (rev 
29100)
+++ libmicrohttpd/src/include/microhttpd.h      2013-09-07 20:28:28 UTC (rev 
29101)
@@ -1091,7 +1091,7 @@
  *        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
+ *        global #MHD_RequestCompletedCallback (which
  *        can be set with the #MHD_OPTION_NOTIFY_COMPLETED).
  *        Initially, `*con_cls` will be NULL.
  * @return #MHD_YES if the connection was handled successfully,
@@ -1764,7 +1764,7 @@
  * the local platform), to wait for the 'external' select loop to
  * trigger another round.  It is also possible to specify "no events"
  * to terminate the connection; in this case, the
- * MHD_RequestCompletedCallback will be called and all resources of
+ * #MHD_RequestCompletedCallback will be called and all resources of
  * the connection will be released.
  *
  * Except when in 'thread-per-connection' mode, implementations
@@ -1777,7 +1777,7 @@
  *                   to inspect the original HTTP request
  * @param con_cls value as set by the last call to the
  *                MHD_AccessHandlerCallback; will afterwards
- *                be also given to the MHD_RequestCompletedCallback
+ *                be also given to the #MHD_RequestCompletedCallback
  * @param data_in_size available data for reading, set to data read
  * @param data_in data read from the socket
  * @param data_out_size available buffer for writing, set to bytes 
@@ -1952,7 +1952,7 @@
  * Parse and process POST data.  Call this function when POST data is
  * available (usually during an #MHD_AccessHandlerCallback) with the
  * "upload_data" and "upload_data_size".  Whenever possible, this will
- * then cause calls to the #MHD_IncrementalKeyValueIterator.
+ * then cause calls to the #MHD_PostDataIterator.
  *
  * @param pp the post processor
  * @param post_data @a post_data_len bytes of POST data

Modified: libmicrohttpd/src/microhttpd/connection.c
===================================================================
--- libmicrohttpd/src/microhttpd/connection.c   2013-09-07 20:11:56 UTC (rev 
29100)
+++ libmicrohttpd/src/microhttpd/connection.c   2013-09-07 20:28:28 UTC (rev 
29101)
@@ -2572,7 +2572,7 @@
  * Obtain information about the given connection.
  *
  * @param connection what connection to get information about
- * @param infoType what information is desired?
+ * @param info_type what information is desired?
  * @param ... depends on @a info_type
  * @return NULL if this information is not available
  *         (or if the @a info_type is unknown)

Modified: libmicrohttpd/src/microhttpd/daemon.c
===================================================================
--- libmicrohttpd/src/microhttpd/daemon.c       2013-09-07 20:11:56 UTC (rev 
29100)
+++ libmicrohttpd/src/microhttpd/daemon.c       2013-09-07 20:28:28 UTC (rev 
29101)
@@ -19,7 +19,7 @@
 */
 
 /**
- * @file daemon.c
+ * @file microhttpd/daemon.c
  * @brief  A minimal-HTTP server library
  * @author Daniel Pittman
  * @author Christian Grothoff

Modified: libmicrohttpd/src/microhttpd/internal.c
===================================================================
--- libmicrohttpd/src/microhttpd/internal.c     2013-09-07 20:11:56 UTC (rev 
29100)
+++ libmicrohttpd/src/microhttpd/internal.c     2013-09-07 20:28:28 UTC (rev 
29101)
@@ -18,7 +18,7 @@
 */
 
 /**
- * @file internal.h
+ * @file microhttpd/internal.c
  * @brief  internal shared structures
  * @author Daniel Pittman
  * @author Christian Grothoff

Modified: libmicrohttpd/src/microhttpd/internal.h
===================================================================
--- libmicrohttpd/src/microhttpd/internal.h     2013-09-07 20:11:56 UTC (rev 
29100)
+++ libmicrohttpd/src/microhttpd/internal.h     2013-09-07 20:28:28 UTC (rev 
29101)
@@ -18,7 +18,7 @@
 */
 
 /**
- * @file internal.h
+ * @file microhttpd/internal.h
  * @brief  internal shared structures
  * @author Daniel Pittman
  * @author Christian Grothoff

Modified: libmicrohttpd/src/microhttpd/postprocessor.c
===================================================================
--- libmicrohttpd/src/microhttpd/postprocessor.c        2013-09-07 20:11:56 UTC 
(rev 29100)
+++ libmicrohttpd/src/microhttpd/postprocessor.c        2013-09-07 20:28:28 UTC 
(rev 29101)
@@ -1091,7 +1091,7 @@
  * Parse and process POST data.  Call this function when POST data is
  * available (usually during an #MHD_AccessHandlerCallback) with the
  * "upload_data" and "upload_data_size".  Whenever possible, this will
- * then cause calls to the #MHD_IncrementalKeyValueIterator.
+ * then cause calls to the #MHD_PostDataIterator.
  *
  * @param pp the post processor
  * @param post_data @a post_data_len bytes of POST data

Modified: libmicrohttpd/src/microspdy/daemon.c
===================================================================
--- libmicrohttpd/src/microspdy/daemon.c        2013-09-07 20:11:56 UTC (rev 
29100)
+++ libmicrohttpd/src/microspdy/daemon.c        2013-09-07 20:28:28 UTC (rev 
29101)
@@ -17,7 +17,7 @@
 */
 
 /**
- * @file daemon.c
+ * @file microspdy/daemon.c
  * @brief  daemon functionality
  * @author Andrey Uzunov
  */

Modified: libmicrohttpd/src/microspdy/internal.c
===================================================================
--- libmicrohttpd/src/microspdy/internal.c      2013-09-07 20:11:56 UTC (rev 
29100)
+++ libmicrohttpd/src/microspdy/internal.c      2013-09-07 20:28:28 UTC (rev 
29101)
@@ -17,7 +17,7 @@
 */
 
 /**
- * @file internal.c
+ * @file microspdy/internal.c
  * @brief  internal functions and macros for the framing layer
  * @author Andrey Uzunov
  */

Modified: libmicrohttpd/src/microspdy/internal.h
===================================================================
--- libmicrohttpd/src/microspdy/internal.h      2013-09-07 20:11:56 UTC (rev 
29100)
+++ libmicrohttpd/src/microspdy/internal.h      2013-09-07 20:28:28 UTC (rev 
29101)
@@ -17,7 +17,7 @@
 */
 
 /**
- * @file structures.h
+ * @file microspdy/internal.h
  * @brief  internal functions and macros for the framing layer
  * @author Andrey Uzunov
  */




reply via email to

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