diff options
Diffstat (limited to 'src/microhttpd/basicauth.c')
-rw-r--r-- | src/microhttpd/basicauth.c | 8 |
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 | */ |
44 | char * | 45 | char * |
45 | MHD_basic_auth_get_username_password(struct MHD_Connection *connection, | 46 | MHD_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 | */ |
113 | int | 115 | int |
114 | MHD_queue_basic_auth_fail_response (struct MHD_Connection *connection, | 116 | MHD_queue_basic_auth_fail_response (struct MHD_Connection *connection, |