diff options
author | Stefan Eissing <icing@apache.org> | 2022-08-25 16:00:13 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2022-08-25 16:00:13 +0200 |
commit | f2b7303efa8c3a12d3f119ba100e633f685943b2 (patch) | |
tree | 8b789558fc52d2e51039474a8ec3179fc1a1b2df /modules/md/md_http.h | |
parent | Stole a new number. (diff) | |
download | apache2-f2b7303efa8c3a12d3f119ba100e633f685943b2.tar.xz apache2-f2b7303efa8c3a12d3f119ba100e633f685943b2.zip |
mod_md v2.4.19 from github sync
*) mod_md: a new directive `MDStoreLocks` can be used on cluster
setups with a shared file system for `MDStoreDir` to order
activation of renewed certificates when several cluster nodes are
restarted at the same time. Store locks are not enabled by default.
Restored curl_easy cleanup behaviour from v2.4.14 and refactored
the use of curl_multi for OCSP requests to work with that.
Fixes <https://github.com/icing/mod_md/issues/293>.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1903677 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/md/md_http.h')
-rw-r--r-- | modules/md/md_http.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/md/md_http.h b/modules/md/md_http.h index c210aa9913..2f250f6d76 100644 --- a/modules/md/md_http.h +++ b/modules/md/md_http.h @@ -88,6 +88,13 @@ apr_status_t md_http_create(md_http_t **phttp, apr_pool_t *p, const char *user_a void md_http_set_response_limit(md_http_t *http, apr_off_t resp_limit); /** + * Clone a http instance, inheriting all settings from source_http. + * The cloned instance is not tied in any way to the source. + */ +apr_status_t md_http_clone(md_http_t **phttp, + apr_pool_t *p, md_http_t *source_http); + +/** * Set the timeout for the complete request. This needs to take everything from * DNS looksups, to conntects, to transfer of all data into account and should * be sufficiently large. |