diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-09-07 20:28:28 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-09-07 20:28:28 +0000 |
commit | b6151e98ce10aaea4b9bd2be0dee4f07b068b4ed (patch) | |
tree | b313f742481e7bcc1e2b7397a490402e4afe75d3 | |
parent | d86385c9b4cc3a13835579611b08ed713ee17a29 (diff) | |
download | libmicrohttpd-b6151e98ce10aaea4b9bd2be0dee4f07b068b4ed.tar.gz libmicrohttpd-b6151e98ce10aaea4b9bd2be0dee4f07b068b4ed.zip |
-doxygen fixes
-rw-r--r-- | doc/doxygen/libmicrohttpd.doxy | 3 | ||||
-rw-r--r-- | src/include/microhttpd.h | 8 | ||||
-rw-r--r-- | src/microhttpd/connection.c | 2 | ||||
-rw-r--r-- | src/microhttpd/daemon.c | 2 | ||||
-rw-r--r-- | src/microhttpd/internal.c | 2 | ||||
-rw-r--r-- | src/microhttpd/internal.h | 2 | ||||
-rw-r--r-- | src/microhttpd/postprocessor.c | 2 | ||||
-rw-r--r-- | src/microspdy/daemon.c | 2 | ||||
-rw-r--r-- | src/microspdy/internal.c | 2 | ||||
-rw-r--r-- | src/microspdy/internal.h | 2 |
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 | |||
32 | JAVADOC_AUTOBRIEF = NO | 32 | JAVADOC_AUTOBRIEF = NO |
33 | QT_AUTOBRIEF = NO | 33 | QT_AUTOBRIEF = NO |
34 | MULTILINE_CPP_IS_BRIEF = NO | 34 | MULTILINE_CPP_IS_BRIEF = NO |
35 | DETAILS_AT_TOP = NO | ||
36 | INHERIT_DOCS = NO | 35 | INHERIT_DOCS = NO |
37 | SEPARATE_MEMBER_PAGES = NO | 36 | SEPARATE_MEMBER_PAGES = NO |
38 | TAB_SIZE = 8 | 37 | TAB_SIZE = 8 |
@@ -76,7 +75,6 @@ GENERATE_DEPRECATEDLIST= NO | |||
76 | ENABLED_SECTIONS = | 75 | ENABLED_SECTIONS = |
77 | MAX_INITIALIZER_LINES = 30 | 76 | MAX_INITIALIZER_LINES = 30 |
78 | SHOW_USED_FILES = YES | 77 | SHOW_USED_FILES = YES |
79 | SHOW_DIRECTORIES = YES | ||
80 | FILE_VERSION_FILTER = | 78 | FILE_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 | |||
133 | HTML_HEADER = | 131 | HTML_HEADER = |
134 | HTML_FOOTER = | 132 | HTML_FOOTER = |
135 | HTML_STYLESHEET = | 133 | HTML_STYLESHEET = |
136 | HTML_ALIGN_MEMBERS = YES | ||
137 | GENERATE_HTMLHELP = NO | 134 | GENERATE_HTMLHELP = NO |
138 | GENERATE_DOCSET = NO | 135 | GENERATE_DOCSET = NO |
139 | DOCSET_FEEDNAME = "Doxygen generated docs" | 136 | DOCSET_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 | */ |