aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-07 20:28:28 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-07 20:28:28 +0000
commitb6151e98ce10aaea4b9bd2be0dee4f07b068b4ed (patch)
treeb313f742481e7bcc1e2b7397a490402e4afe75d3
parentd86385c9b4cc3a13835579611b08ed713ee17a29 (diff)
downloadlibmicrohttpd-b6151e98ce10aaea4b9bd2be0dee4f07b068b4ed.tar.gz
libmicrohttpd-b6151e98ce10aaea4b9bd2be0dee4f07b068b4ed.zip
-doxygen fixes
-rw-r--r--doc/doxygen/libmicrohttpd.doxy3
-rw-r--r--src/include/microhttpd.h8
-rw-r--r--src/microhttpd/connection.c2
-rw-r--r--src/microhttpd/daemon.c2
-rw-r--r--src/microhttpd/internal.c2
-rw-r--r--src/microhttpd/internal.h2
-rw-r--r--src/microhttpd/postprocessor.c2
-rw-r--r--src/microspdy/daemon.c2
-rw-r--r--src/microspdy/internal.c2
-rw-r--r--src/microspdy/internal.h2
10 files changed, 12 insertions, 15 deletions
diff --git a/doc/doxygen/libmicrohttpd.doxy b/doc/doxygen/libmicrohttpd.doxy
index 01a66d74..25f2cd7f 100644
--- a/doc/doxygen/libmicrohttpd.doxy
+++ b/doc/doxygen/libmicrohttpd.doxy
@@ -32,7 +32,6 @@ SHORT_NAMES = NO
32JAVADOC_AUTOBRIEF = NO 32JAVADOC_AUTOBRIEF = NO
33QT_AUTOBRIEF = NO 33QT_AUTOBRIEF = NO
34MULTILINE_CPP_IS_BRIEF = NO 34MULTILINE_CPP_IS_BRIEF = NO
35DETAILS_AT_TOP = NO
36INHERIT_DOCS = NO 35INHERIT_DOCS = NO
37SEPARATE_MEMBER_PAGES = NO 36SEPARATE_MEMBER_PAGES = NO
38TAB_SIZE = 8 37TAB_SIZE = 8
@@ -76,7 +75,6 @@ GENERATE_DEPRECATEDLIST= NO
76ENABLED_SECTIONS = 75ENABLED_SECTIONS =
77MAX_INITIALIZER_LINES = 30 76MAX_INITIALIZER_LINES = 30
78SHOW_USED_FILES = YES 77SHOW_USED_FILES = YES
79SHOW_DIRECTORIES = YES
80FILE_VERSION_FILTER = 78FILE_VERSION_FILTER =
81#--------------------------------------------------------------------------- 79#---------------------------------------------------------------------------
82# configuration options related to warning and progress messages 80# configuration options related to warning and progress messages
@@ -133,7 +131,6 @@ HTML_FILE_EXTENSION = .html
133HTML_HEADER = 131HTML_HEADER =
134HTML_FOOTER = 132HTML_FOOTER =
135HTML_STYLESHEET = 133HTML_STYLESHEET =
136HTML_ALIGN_MEMBERS = YES
137GENERATE_HTMLHELP = NO 134GENERATE_HTMLHELP = NO
138GENERATE_DOCSET = NO 135GENERATE_DOCSET = NO
139DOCSET_FEEDNAME = "Doxygen generated docs" 136DOCSET_FEEDNAME = "Doxygen generated docs"
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index d06c0f92..84d1cacf 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -1091,7 +1091,7 @@ typedef int
1091 * with plenty of upload data) this allows the application 1091 * with plenty of upload data) this allows the application
1092 * to easily associate some request-specific state. 1092 * to easily associate some request-specific state.
1093 * If necessary, this state can be cleaned up in the 1093 * If necessary, this state can be cleaned up in the
1094 * global #MHD_RequestCompleted callback (which 1094 * global #MHD_RequestCompletedCallback (which
1095 * can be set with the #MHD_OPTION_NOTIFY_COMPLETED). 1095 * can be set with the #MHD_OPTION_NOTIFY_COMPLETED).
1096 * Initially, `*con_cls` will be NULL. 1096 * Initially, `*con_cls` will be NULL.
1097 * @return #MHD_YES if the connection was handled successfully, 1097 * @return #MHD_YES if the connection was handled successfully,
@@ -1764,7 +1764,7 @@ enum MHD_UpgradeEventMask
1764 * the local platform), to wait for the 'external' select loop to 1764 * the local platform), to wait for the 'external' select loop to
1765 * trigger another round. It is also possible to specify "no events" 1765 * trigger another round. It is also possible to specify "no events"
1766 * to terminate the connection; in this case, the 1766 * to terminate the connection; in this case, the
1767 * MHD_RequestCompletedCallback will be called and all resources of 1767 * #MHD_RequestCompletedCallback will be called and all resources of
1768 * the connection will be released. 1768 * the connection will be released.
1769 * 1769 *
1770 * Except when in 'thread-per-connection' mode, implementations 1770 * Except when in 'thread-per-connection' mode, implementations
@@ -1777,7 +1777,7 @@ enum MHD_UpgradeEventMask
1777 * to inspect the original HTTP request 1777 * to inspect the original HTTP request
1778 * @param con_cls value as set by the last call to the 1778 * @param con_cls value as set by the last call to the
1779 * MHD_AccessHandlerCallback; will afterwards 1779 * MHD_AccessHandlerCallback; will afterwards
1780 * be also given to the MHD_RequestCompletedCallback 1780 * be also given to the #MHD_RequestCompletedCallback
1781 * @param data_in_size available data for reading, set to data read 1781 * @param data_in_size available data for reading, set to data read
1782 * @param data_in data read from the socket 1782 * @param data_in data read from the socket
1783 * @param data_out_size available buffer for writing, set to bytes 1783 * @param data_out_size available buffer for writing, set to bytes
@@ -1952,7 +1952,7 @@ MHD_create_post_processor (struct MHD_Connection *connection,
1952 * Parse and process POST data. Call this function when POST data is 1952 * Parse and process POST data. Call this function when POST data is
1953 * available (usually during an #MHD_AccessHandlerCallback) with the 1953 * available (usually during an #MHD_AccessHandlerCallback) with the
1954 * "upload_data" and "upload_data_size". Whenever possible, this will 1954 * "upload_data" and "upload_data_size". Whenever possible, this will
1955 * then cause calls to the #MHD_IncrementalKeyValueIterator. 1955 * then cause calls to the #MHD_PostDataIterator.
1956 * 1956 *
1957 * @param pp the post processor 1957 * @param pp the post processor
1958 * @param post_data @a post_data_len bytes of POST data 1958 * @param post_data @a post_data_len bytes of POST data
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 2e5979c5..5a7e7160 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -2572,7 +2572,7 @@ MHD_set_http_callbacks_ (struct MHD_Connection *connection)
2572 * Obtain information about the given connection. 2572 * Obtain information about the given connection.
2573 * 2573 *
2574 * @param connection what connection to get information about 2574 * @param connection what connection to get information about
2575 * @param infoType what information is desired? 2575 * @param info_type what information is desired?
2576 * @param ... depends on @a info_type 2576 * @param ... depends on @a info_type
2577 * @return NULL if this information is not available 2577 * @return NULL if this information is not available
2578 * (or if the @a info_type is unknown) 2578 * (or if the @a info_type is unknown)
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 900f7e4e..2d9de7ac 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file daemon.c 22 * @file microhttpd/daemon.c
23 * @brief A minimal-HTTP server library 23 * @brief A minimal-HTTP server library
24 * @author Daniel Pittman 24 * @author Daniel Pittman
25 * @author Christian Grothoff 25 * @author Christian Grothoff
diff --git a/src/microhttpd/internal.c b/src/microhttpd/internal.c
index 1730c0c9..52d0979f 100644
--- a/src/microhttpd/internal.c
+++ b/src/microhttpd/internal.c
@@ -18,7 +18,7 @@
18*/ 18*/
19 19
20/** 20/**
21 * @file internal.h 21 * @file microhttpd/internal.c
22 * @brief internal shared structures 22 * @brief internal shared structures
23 * @author Daniel Pittman 23 * @author Daniel Pittman
24 * @author Christian Grothoff 24 * @author Christian Grothoff
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index ffb1a667..5089b896 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -18,7 +18,7 @@
18*/ 18*/
19 19
20/** 20/**
21 * @file internal.h 21 * @file microhttpd/internal.h
22 * @brief internal shared structures 22 * @brief internal shared structures
23 * @author Daniel Pittman 23 * @author Daniel Pittman
24 * @author Christian Grothoff 24 * @author Christian Grothoff
diff --git a/src/microhttpd/postprocessor.c b/src/microhttpd/postprocessor.c
index e6677b7f..08b31a08 100644
--- a/src/microhttpd/postprocessor.c
+++ b/src/microhttpd/postprocessor.c
@@ -1091,7 +1091,7 @@ END:
1091 * Parse and process POST data. Call this function when POST data is 1091 * Parse and process POST data. Call this function when POST data is
1092 * available (usually during an #MHD_AccessHandlerCallback) with the 1092 * available (usually during an #MHD_AccessHandlerCallback) with the
1093 * "upload_data" and "upload_data_size". Whenever possible, this will 1093 * "upload_data" and "upload_data_size". Whenever possible, this will
1094 * then cause calls to the #MHD_IncrementalKeyValueIterator. 1094 * then cause calls to the #MHD_PostDataIterator.
1095 * 1095 *
1096 * @param pp the post processor 1096 * @param pp the post processor
1097 * @param post_data @a post_data_len bytes of POST data 1097 * @param post_data @a post_data_len bytes of POST data
diff --git a/src/microspdy/daemon.c b/src/microspdy/daemon.c
index 77129894..93cda875 100644
--- a/src/microspdy/daemon.c
+++ b/src/microspdy/daemon.c
@@ -17,7 +17,7 @@
17*/ 17*/
18 18
19/** 19/**
20 * @file daemon.c 20 * @file microspdy/daemon.c
21 * @brief daemon functionality 21 * @brief daemon functionality
22 * @author Andrey Uzunov 22 * @author Andrey Uzunov
23 */ 23 */
diff --git a/src/microspdy/internal.c b/src/microspdy/internal.c
index 6bcfdbf9..0ba83768 100644
--- a/src/microspdy/internal.c
+++ b/src/microspdy/internal.c
@@ -17,7 +17,7 @@
17*/ 17*/
18 18
19/** 19/**
20 * @file internal.c 20 * @file microspdy/internal.c
21 * @brief internal functions and macros for the framing layer 21 * @brief internal functions and macros for the framing layer
22 * @author Andrey Uzunov 22 * @author Andrey Uzunov
23 */ 23 */
diff --git a/src/microspdy/internal.h b/src/microspdy/internal.h
index a7aec14f..72dfd3ec 100644
--- a/src/microspdy/internal.h
+++ b/src/microspdy/internal.h
@@ -17,7 +17,7 @@
17*/ 17*/
18 18
19/** 19/**
20 * @file structures.h 20 * @file microspdy/internal.h
21 * @brief internal functions and macros for the framing layer 21 * @brief internal functions and macros for the framing layer
22 * @author Andrey Uzunov 22 * @author Andrey Uzunov
23 */ 23 */