aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/basicauth.c
diff options
context:
space:
mode:
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,