diff options
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r-- | src/include/microhttpd.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h index 24bb8839..811b2fc0 100644 --- a/src/include/microhttpd.h +++ b/src/include/microhttpd.h | |||
@@ -2412,6 +2412,7 @@ typedef enum MHD_Result | |||
2412 | * | 2412 | * |
2413 | * @param cls argument given together with the function | 2413 | * @param cls argument given together with the function |
2414 | * pointer when the handler was registered with MHD | 2414 | * pointer when the handler was registered with MHD |
2415 | * @param connection the connection handle | ||
2415 | * @param url the requested url | 2416 | * @param url the requested url |
2416 | * @param method the HTTP method used (#MHD_HTTP_METHOD_GET, | 2417 | * @param method the HTTP method used (#MHD_HTTP_METHOD_GET, |
2417 | * #MHD_HTTP_METHOD_PUT, etc.) | 2418 | * #MHD_HTTP_METHOD_PUT, etc.) |
@@ -4243,12 +4244,12 @@ MHD_queue_auth_fail_response2 (struct MHD_Connection *connection, | |||
4243 | 4244 | ||
4244 | 4245 | ||
4245 | /** | 4246 | /** |
4246 | * Queues a response to request authentication from the client | 4247 | * Queues a response to request authentication from the client. |
4247 | * For now uses MD5 (for backwards-compatibility). Still, if you | 4248 | * For now uses MD5 (for backwards-compatibility). Still, if you |
4248 | * need to be sure, use #MHD_queue_fail_auth_response2(). | 4249 | * need to be sure, use #MHD_queue_auth_fail_response2(). |
4249 | * | 4250 | * |
4250 | * @param connection The MHD connection structure | 4251 | * @param connection The MHD connection structure |
4251 | * @param realm The realm presented to the client | 4252 | * @param realm the realm presented to the client |
4252 | * @param opaque string to user for opaque value | 4253 | * @param opaque string to user for opaque value |
4253 | * @param response reply to send; should contain the "access denied" | 4254 | * @param response reply to send; should contain the "access denied" |
4254 | * body; note that this function will set the "WWW Authenticate" | 4255 | * body; note that this function will set the "WWW Authenticate" |