Browse Source

-doxygen fixes

Christian Grothoff 12 năm trước cách đây
mục cha
commit
b6151e98ce

+ 0 - 3
doc/doxygen/libmicrohttpd.doxy

@@ -32,7 +32,6 @@ SHORT_NAMES            = NO
 JAVADOC_AUTOBRIEF      = NO
 JAVADOC_AUTOBRIEF      = NO
 QT_AUTOBRIEF           = NO
 QT_AUTOBRIEF           = NO
 MULTILINE_CPP_IS_BRIEF = NO
 MULTILINE_CPP_IS_BRIEF = NO
-DETAILS_AT_TOP         = NO
 INHERIT_DOCS           = NO
 INHERIT_DOCS           = NO
 SEPARATE_MEMBER_PAGES  = NO
 SEPARATE_MEMBER_PAGES  = NO
 TAB_SIZE               = 8
 TAB_SIZE               = 8
@@ -76,7 +75,6 @@ GENERATE_DEPRECATEDLIST= NO
 ENABLED_SECTIONS       = 
 ENABLED_SECTIONS       = 
 MAX_INITIALIZER_LINES  = 30
 MAX_INITIALIZER_LINES  = 30
 SHOW_USED_FILES        = YES
 SHOW_USED_FILES        = YES
-SHOW_DIRECTORIES       = YES
 FILE_VERSION_FILTER    = 
 FILE_VERSION_FILTER    = 
 #---------------------------------------------------------------------------
 #---------------------------------------------------------------------------
 # configuration options related to warning and progress messages
 # configuration options related to warning and progress messages
@@ -133,7 +131,6 @@ HTML_FILE_EXTENSION    = .html
 HTML_HEADER            = 
 HTML_HEADER            = 
 HTML_FOOTER            = 
 HTML_FOOTER            = 
 HTML_STYLESHEET        = 
 HTML_STYLESHEET        = 
-HTML_ALIGN_MEMBERS     = YES
 GENERATE_HTMLHELP      = NO
 GENERATE_HTMLHELP      = NO
 GENERATE_DOCSET        = NO
 GENERATE_DOCSET        = NO
 DOCSET_FEEDNAME        = "Doxygen generated docs"
 DOCSET_FEEDNAME        = "Doxygen generated docs"

+ 4 - 4
src/include/microhttpd.h

@@ -1091,7 +1091,7 @@ typedef int
  *        with plenty of upload data) this allows the application
  *        with plenty of upload data) this allows the application
  *        to easily associate some request-specific state.
  *        to easily associate some request-specific state.
  *        If necessary, this state can be cleaned up in the
  *        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).
  *        can be set with the #MHD_OPTION_NOTIFY_COMPLETED).
  *        Initially, `*con_cls` will be NULL.
  *        Initially, `*con_cls` will be NULL.
  * @return #MHD_YES if the connection was handled successfully,
  * @return #MHD_YES if the connection was handled successfully,
@@ -1764,7 +1764,7 @@ enum MHD_UpgradeEventMask
  * the local platform), to wait for the 'external' select loop to
  * the local platform), to wait for the 'external' select loop to
  * trigger another round.  It is also possible to specify "no events"
  * trigger another round.  It is also possible to specify "no events"
  * to terminate the connection; in this case, the
  * 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.
  * the connection will be released.
  *
  *
  * Except when in 'thread-per-connection' mode, implementations
  * Except when in 'thread-per-connection' mode, implementations
@@ -1777,7 +1777,7 @@ enum MHD_UpgradeEventMask
  *                   to inspect the original HTTP request
  *                   to inspect the original HTTP request
  * @param con_cls value as set by the last call to the
  * @param con_cls value as set by the last call to the
  *                MHD_AccessHandlerCallback; will afterwards
  *                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_size available data for reading, set to data read
  * @param data_in data read from the socket
  * @param data_in data read from the socket
  * @param data_out_size available buffer for writing, set to bytes 
  * @param data_out_size available buffer for writing, set to bytes 
@@ -1952,7 +1952,7 @@ MHD_create_post_processor (struct MHD_Connection *connection,
  * Parse and process POST data.  Call this function when POST data is
  * Parse and process POST data.  Call this function when POST data is
  * available (usually during an #MHD_AccessHandlerCallback) with the
  * available (usually during an #MHD_AccessHandlerCallback) with the
  * "upload_data" and "upload_data_size".  Whenever possible, this will
  * "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 pp the post processor
  * @param post_data @a post_data_len bytes of POST data
  * @param post_data @a post_data_len bytes of POST data

+ 1 - 1
src/microhttpd/connection.c

@@ -2572,7 +2572,7 @@ MHD_set_http_callbacks_ (struct MHD_Connection *connection)
  * Obtain information about the given connection.
  * Obtain information about the given connection.
  *
  *
  * @param connection what connection to get information about
  * @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
  * @param ... depends on @a info_type
  * @return NULL if this information is not available
  * @return NULL if this information is not available
  *         (or if the @a info_type is unknown)
  *         (or if the @a info_type is unknown)

+ 1 - 1
src/microhttpd/daemon.c

@@ -19,7 +19,7 @@
 */
 */
 
 
 /**
 /**
- * @file daemon.c
+ * @file microhttpd/daemon.c
  * @brief  A minimal-HTTP server library
  * @brief  A minimal-HTTP server library
  * @author Daniel Pittman
  * @author Daniel Pittman
  * @author Christian Grothoff
  * @author Christian Grothoff

+ 1 - 1
src/microhttpd/internal.c

@@ -18,7 +18,7 @@
 */
 */
 
 
 /**
 /**
- * @file internal.h
+ * @file microhttpd/internal.c
  * @brief  internal shared structures
  * @brief  internal shared structures
  * @author Daniel Pittman
  * @author Daniel Pittman
  * @author Christian Grothoff
  * @author Christian Grothoff

+ 1 - 1
src/microhttpd/internal.h

@@ -18,7 +18,7 @@
 */
 */
 
 
 /**
 /**
- * @file internal.h
+ * @file microhttpd/internal.h
  * @brief  internal shared structures
  * @brief  internal shared structures
  * @author Daniel Pittman
  * @author Daniel Pittman
  * @author Christian Grothoff
  * @author Christian Grothoff

+ 1 - 1
src/microhttpd/postprocessor.c

@@ -1091,7 +1091,7 @@ END:
  * Parse and process POST data.  Call this function when POST data is
  * Parse and process POST data.  Call this function when POST data is
  * available (usually during an #MHD_AccessHandlerCallback) with the
  * available (usually during an #MHD_AccessHandlerCallback) with the
  * "upload_data" and "upload_data_size".  Whenever possible, this will
  * "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 pp the post processor
  * @param post_data @a post_data_len bytes of POST data
  * @param post_data @a post_data_len bytes of POST data

+ 1 - 1
src/microspdy/daemon.c

@@ -17,7 +17,7 @@
 */
 */
 
 
 /**
 /**
- * @file daemon.c
+ * @file microspdy/daemon.c
  * @brief  daemon functionality
  * @brief  daemon functionality
  * @author Andrey Uzunov
  * @author Andrey Uzunov
  */
  */

+ 1 - 1
src/microspdy/internal.c

@@ -17,7 +17,7 @@
 */
 */
 
 
 /**
 /**
- * @file internal.c
+ * @file microspdy/internal.c
  * @brief  internal functions and macros for the framing layer
  * @brief  internal functions and macros for the framing layer
  * @author Andrey Uzunov
  * @author Andrey Uzunov
  */
  */

+ 1 - 1
src/microspdy/internal.h

@@ -17,7 +17,7 @@
 */
 */
 
 
 /**
 /**
- * @file structures.h
+ * @file microspdy/internal.h
  * @brief  internal functions and macros for the framing layer
  * @brief  internal functions and macros for the framing layer
  * @author Andrey Uzunov
  * @author Andrey Uzunov
  */
  */