]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Changelog and tweak digest 'qop' parameter change.
authorMichael R Sweet <msweet@msweet.org>
Sun, 10 Sep 2023 23:08:47 +0000 (19:08 -0400)
committerMichael R Sweet <msweet@msweet.org>
Sun, 10 Sep 2023 23:08:47 +0000 (19:08 -0400)
CHANGES.md
cups/http-private.h

index 52c78cea8af0c5a169f13194abc7792a04c35a2c..02db7b9b61db15bb5ef1a70ce2d08435dc48d970 100644 (file)
@@ -7,6 +7,8 @@ Changes in CUPS v2.5b1 (TBA)
 - Added `cupsDNSSD` APIs.
 - Added `cupsConcatString` and `cupsCopyString` string APIs.
 - Added OpenSSL support for `cupsHashData` (Issue #762)
+- Updated `cupsArray` APIs.
+- Fixed Digest authentication support (Issue #260)
 - Fixed delays in lpd backend (Issue #741)
 - Fixed segfault in `cupsGetNamedDest()` when trying to get default printer, but
   the default printer is not set (Issue #719)
index 8f98a3d5f7f141be08172e1b738a1333404d425b..e783fccde1502fc2bb94ad29915aaf74f94c861f 100644 (file)
@@ -221,8 +221,6 @@ struct _http_s                              // HTTP connection structure
                                        /* Next nonce value from Authentication-Info */
                        opaque[HTTP_MAX_VALUE],
                                        /* Opaque value from WWW-Authenticate */
-                       qop[HTTP_MAX_VALUE],
-                                       /* qop value from WWW-Authenticate */
                        realm[HTTP_MAX_VALUE];
                                        /* Realm from WWW-Authenticate */
 
@@ -231,6 +229,9 @@ struct _http_s                              // HTTP connection structure
                                        /* Allocated field values */
                        *default_fields[HTTP_FIELD_MAX];
                                        /* Default field values, if any */
+  /**** New in CUPS 2.5 ****/
+  char                 qop[HTTP_MAX_VALUE];
+                                       /* qop value from WWW-Authenticate */
 };
 #  endif /* !_HTTP_NO_PRIVATE */