mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
-doxygen fixes
This commit is contained in:
@@ -32,7 +32,6 @@ SHORT_NAMES = NO
|
||||
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 @@ GENERATE_DEPRECATEDLIST= NO
|
||||
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_FILE_EXTENSION = .html
|
||||
HTML_HEADER =
|
||||
HTML_FOOTER =
|
||||
HTML_STYLESHEET =
|
||||
HTML_ALIGN_MEMBERS = YES
|
||||
GENERATE_HTMLHELP = NO
|
||||
GENERATE_DOCSET = NO
|
||||
DOCSET_FEEDNAME = "Doxygen generated docs"
|
||||
|
||||
@@ -1091,7 +1091,7 @@ typedef int
|
||||
* 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 @@ enum MHD_UpgradeEventMask
|
||||
* 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 @@ enum MHD_UpgradeEventMask
|
||||
* 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 @@ MHD_create_post_processor (struct MHD_Connection *connection,
|
||||
* 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
|
||||
|
||||
@@ -2572,7 +2572,7 @@ MHD_set_http_callbacks_ (struct MHD_Connection *connection)
|
||||
* 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)
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file daemon.c
|
||||
* @file microhttpd/daemon.c
|
||||
* @brief A minimal-HTTP server library
|
||||
* @author Daniel Pittman
|
||||
* @author Christian Grothoff
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file internal.h
|
||||
* @file microhttpd/internal.c
|
||||
* @brief internal shared structures
|
||||
* @author Daniel Pittman
|
||||
* @author Christian Grothoff
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file internal.h
|
||||
* @file microhttpd/internal.h
|
||||
* @brief internal shared structures
|
||||
* @author Daniel Pittman
|
||||
* @author Christian Grothoff
|
||||
|
||||
@@ -1091,7 +1091,7 @@ END:
|
||||
* 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
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file daemon.c
|
||||
* @file microspdy/daemon.c
|
||||
* @brief daemon functionality
|
||||
* @author Andrey Uzunov
|
||||
*/
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file internal.c
|
||||
* @file microspdy/internal.c
|
||||
* @brief internal functions and macros for the framing layer
|
||||
* @author Andrey Uzunov
|
||||
*/
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file structures.h
|
||||
* @file microspdy/internal.h
|
||||
* @brief internal functions and macros for the framing layer
|
||||
* @author Andrey Uzunov
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user