aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/microhttpd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 23ce06c7..42409403 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -3226,8 +3226,8 @@ MHD_lookup_connection_value_n (struct MHD_Connection *connection,
3226 * 3226 *
3227 * @param connection the connection identifying the client 3227 * @param connection the connection identifying the client
3228 * @param status_code HTTP status code (i.e. #MHD_HTTP_OK) 3228 * @param status_code HTTP status code (i.e. #MHD_HTTP_OK)
3229 * @param response response to transmit 3229 * @param response response to transmit, the NULL is tolerated
3230 * @return #MHD_NO on error (i.e. reply already sent), 3230 * @return #MHD_NO on error (reply already sent, response is NULL),
3231 * #MHD_YES on success or if message has been queued 3231 * #MHD_YES on success or if message has been queued
3232 * @ingroup response 3232 * @ingroup response
3233 * @sa #MHD_AccessHandlerCallback 3233 * @sa #MHD_AccessHandlerCallback
@@ -4226,7 +4226,7 @@ MHD_digest_auth_check_digest (struct MHD_Connection *connection,
4226 * @param opaque string to user for opaque value 4226 * @param opaque string to user for opaque value
4227 * @param response reply to send; should contain the "access denied" 4227 * @param response reply to send; should contain the "access denied"
4228 * body; note that this function will set the "WWW Authenticate" 4228 * body; note that this function will set the "WWW Authenticate"
4229 * header and that the caller should not do this 4229 * header and that the caller should not do this; the NULL is tolerated
4230 * @param signal_stale #MHD_YES if the nonce is invalid to add 4230 * @param signal_stale #MHD_YES if the nonce is invalid to add
4231 * 'stale=true' to the authentication header 4231 * 'stale=true' to the authentication header
4232 * @param algo digest algorithm to use 4232 * @param algo digest algorithm to use
@@ -4253,7 +4253,7 @@ MHD_queue_auth_fail_response2 (struct MHD_Connection *connection,
4253 * @param opaque string to user for opaque value 4253 * @param opaque string to user for opaque value
4254 * @param response reply to send; should contain the "access denied" 4254 * @param response reply to send; should contain the "access denied"
4255 * body; note that this function will set the "WWW Authenticate" 4255 * body; note that this function will set the "WWW Authenticate"
4256 * header and that the caller should not do this 4256 * header and that the caller should not do this; the NULL is tolerated
4257 * @param signal_stale #MHD_YES if the nonce is invalid to add 4257 * @param signal_stale #MHD_YES if the nonce is invalid to add
4258 * 'stale=true' to the authentication header 4258 * 'stale=true' to the authentication header
4259 * @return #MHD_YES on success, #MHD_NO otherwise 4259 * @return #MHD_YES on success, #MHD_NO otherwise
@@ -4290,7 +4290,7 @@ MHD_basic_auth_get_username_password (struct MHD_Connection *connection,
4290 * 4290 *
4291 * @param connection The MHD connection structure 4291 * @param connection The MHD connection structure
4292 * @param realm the realm presented to the client 4292 * @param realm the realm presented to the client
4293 * @param response response object to modify and queue 4293 * @param response response object to modify and queue; the NULL is tolerated
4294 * @return #MHD_YES on success, #MHD_NO otherwise 4294 * @return #MHD_YES on success, #MHD_NO otherwise
4295 * @ingroup authentication 4295 * @ingroup authentication
4296 */ 4296 */