gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] 10/11: digestauth.h: added some doxy


From: gnunet
Subject: [libmicrohttpd] 10/11: digestauth.h: added some doxy
Date: Wed, 22 Jun 2022 20:00:16 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit da3457eab161e8d4102efcafadded277f192e836
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Wed Jun 22 16:35:04 2022 +0300

    digestauth.h: added some doxy
---
 src/microhttpd/digestauth.h | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/src/microhttpd/digestauth.h b/src/microhttpd/digestauth.h
index 367e8e01..af54bc63 100644
--- a/src/microhttpd/digestauth.h
+++ b/src/microhttpd/digestauth.h
@@ -49,12 +49,26 @@
  */
 #define _MHD_AUTH_DIGEST_BASE   "Digest"
 
+/**
+ * Parameter of request's Digest Authorization header
+ */
 struct MHD_RqDAuthParam
 {
+  /**
+   * The string with length, NOT zero-terminated
+   */
   struct _MHD_str_w_len value;
+  /**
+   * True if string must be "unquoted" before processing.
+   * This member is false if the string is used in DQUOTE marks, but no
+   * backslash-escape is used in the string.
+   */
   bool quoted;
 };
 
+/**
+ * Request client's Digest Authorization header parameters
+ */
 struct MHD_RqDAuth
 {
   struct MHD_RqDAuthParam nonce;
@@ -68,6 +82,9 @@ struct MHD_RqDAuth
   struct MHD_RqDAuthParam qop;
   struct MHD_RqDAuthParam cnonce;
   struct MHD_RqDAuthParam nc;
+  /**
+   * True if 'userhash' parameter is used with value 'true'.
+   */
   bool userhash;
 };
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]