aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/basicauth.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-08-22 06:16:06 +0000
committerChristian Grothoff <christian@grothoff.org>2013-08-22 06:16:06 +0000
commit4f6aa30eb0bb5ffe9052e4a87aefef2d16d33868 (patch)
tree1fe19f96fcb5c3d90163c8029a0e31343aa70c40 /src/microhttpd/basicauth.c
parent131368c7194d776adae1263aba4868f041694b42 (diff)
downloadlibmicrohttpd-4f6aa30eb0bb5ffe9052e4a87aefef2d16d33868.tar.gz
libmicrohttpd-4f6aa30eb0bb5ffe9052e4a87aefef2d16d33868.zip
-more doxygen improvements
Diffstat (limited to 'src/microhttpd/basicauth.c')
-rw-r--r--src/microhttpd/basicauth.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/microhttpd/basicauth.c b/src/microhttpd/basicauth.c
index e8a69e7d..587595b9 100644
--- a/src/microhttpd/basicauth.c
+++ b/src/microhttpd/basicauth.c
@@ -40,10 +40,11 @@
40 * @param password a pointer for the password 40 * @param password a pointer for the password
41 * @return NULL if no username could be found, a pointer 41 * @return NULL if no username could be found, a pointer
42 * to the username if found 42 * to the username if found
43 * @ingroup authentication
43 */ 44 */
44char * 45char *
45MHD_basic_auth_get_username_password(struct MHD_Connection *connection, 46MHD_basic_auth_get_username_password (struct MHD_Connection *connection,
46 char** password) 47 char** password)
47{ 48{
48 const char *header; 49 const char *header;
49 char *decode; 50 char *decode;
@@ -108,7 +109,8 @@ MHD_basic_auth_get_username_password(struct MHD_Connection *connection,
108 * @param connection The MHD connection structure 109 * @param connection The MHD connection structure
109 * @param realm the realm presented to the client 110 * @param realm the realm presented to the client
110 * @param response response object to modify and queue 111 * @param response response object to modify and queue
111 * @return MHD_YES on success, MHD_NO otherwise 112 * @return #MHD_YES on success, #MHD_NO otherwise
113 * @ingroup authentication
112 */ 114 */
113int 115int
114MHD_queue_basic_auth_fail_response (struct MHD_Connection *connection, 116MHD_queue_basic_auth_fail_response (struct MHD_Connection *connection,