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 c545ecc3..bcb7fd13 100644 --- a/src/include/microhttpd.h +++ b/src/include/microhttpd.h | |||
@@ -4999,7 +4999,7 @@ struct MHD_DigestAuthInfo | |||
4999 | * The nc parameter value. | 4999 | * The nc parameter value. |
5000 | * Can be used by application to limit the number of nonce re-uses. If @a nc | 5000 | * Can be used by application to limit the number of nonce re-uses. If @a nc |
5001 | * is higher than application wants to allow, then auth required response with | 5001 | * is higher than application wants to allow, then auth required response with |
5002 | * 'stale=true' could be used to force client to get the fresh 'nonce'. | 5002 | * 'stale=true' could be used to force client to retry with the fresh 'nonce'. |
5003 | * If not specified by client or does not have hexadecimal digits only, the | 5003 | * If not specified by client or does not have hexadecimal digits only, the |
5004 | * value is #MHD_DIGEST_AUTH_INVALID_NC_VALUE. | 5004 | * value is #MHD_DIGEST_AUTH_INVALID_NC_VALUE. |
5005 | */ | 5005 | */ |
@@ -5429,10 +5429,11 @@ MHD_queue_auth_required_response3 (struct MHD_Connection *connection, | |||
5429 | * | 5429 | * |
5430 | * @param connection The MHD connection structure | 5430 | * @param connection The MHD connection structure |
5431 | * @return NULL if no username could be found, username provided as | 5431 | * @return NULL if no username could be found, username provided as |
5432 | * "userhash" or memory allocation error occurred; | 5432 | * "userhash", extended notation broken or memory allocation error |
5433 | * occurs; | ||
5433 | * a pointer to the username if found, free using #MHD_free(). | 5434 | * a pointer to the username if found, free using #MHD_free(). |
5434 | * @warning Returned value must be freed by #MHD_free(). | 5435 | * @warning Returned value must be freed by #MHD_free(). |
5435 | * @deprecated use MHD_digest_auth_get_username3() | 5436 | * @sa #MHD_digest_auth_get_username3() |
5436 | * @ingroup authentication | 5437 | * @ingroup authentication |
5437 | */ | 5438 | */ |
5438 | _MHD_EXTERN char * | 5439 | _MHD_EXTERN char * |