aboutsummaryrefslogtreecommitdiffstats
path: root/dirmngr/http.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2023-06-15 13:06:21 +0000
committerWerner Koch <[email protected]>2023-06-15 13:06:21 +0000
commit0a63afc79a0466a0554870d5e8aa6c3d8a048b3d (patch)
tree2988d4d14c24bdfeb3293f52a5f22e240ea49b94 /dirmngr/http.h
parentdirmngr: New option --compatibility-flags. (diff)
downloadgnupg-0a63afc79a0466a0554870d5e8aa6c3d8a048b3d.tar.gz
gnupg-0a63afc79a0466a0554870d5e8aa6c3d8a048b3d.zip
dirmngr: Disable the HTTP redirect rewriting.
* dirmngr/http.h (struct http_redir_info_s): Add restrict_redir. * dirmngr/ks-engine-hkp.c (send_request): Set it depending on flags. * dirmngr/ks-engine-http.c (ks_http_fetch): Ditto. * dirmngr/t-http-basic.c (test_http_prepare_redirect): Always set it. * dirmngr/http.c (http_prepare_redirect): Remove location rewriting unless the flag is set. -- GnuPG-bug-id: 6477
Diffstat (limited to 'dirmngr/http.h')
-rw-r--r--dirmngr/http.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/dirmngr/http.h b/dirmngr/http.h
index 18420c925..e60212761 100644
--- a/dirmngr/http.h
+++ b/dirmngr/http.h
@@ -117,6 +117,7 @@ struct http_redir_info_s
unsigned int silent:1; /* No diagnostics. */
unsigned int allow_downgrade:1;/* Allow a downgrade from https to http. */
unsigned int trust_location:1; /* Trust the received Location header. */
+ unsigned int restrict_redir:1; /* Use legacy restricted redirection. */
};
typedef struct http_redir_info_s http_redir_info_t;