diff options
author | Stefan Eissing <icing@apache.org> | 2017-10-04 16:55:26 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2017-10-04 16:55:26 +0200 |
commit | a8d21435e3bfda77953c44d6790909baf33d0984 (patch) | |
tree | c59d342f4c480cbb8b8cb92479882246844ca3b6 /modules/md/mod_md_config.h | |
parent | ap_expr: follow up to r1810605. (diff) | |
download | apache2-a8d21435e3bfda77953c44d6790909baf33d0984.tar.xz apache2-a8d21435e3bfda77953c44d6790909baf33d0984.zip |
On the trunk:
mod_md: v0.9.9, fix for applying challenge type based on available ports.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1811082 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/md/mod_md_config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/md/mod_md_config.h b/modules/md/mod_md_config.h index bfe84c125e..43b8259ee1 100644 --- a/modules/md/mod_md_config.h +++ b/modules/md/mod_md_config.h @@ -17,6 +17,7 @@ #define mod_md_md_config_h struct md_store_t; +struct md_reg_t; struct md_pkey_spec_t; typedef enum { @@ -39,7 +40,7 @@ typedef struct { apr_array_header_t *mds; /* all md_t* defined in the config, shared */ const char *base_dir; /* base dir for store */ const char *proxy_url; /* proxy url to use (or NULL) */ - struct md_store_t *store; /* store instance, singleton, shared */ + struct md_reg_t *reg; /* md registry instance, singleton, shared */ int local_80; /* On which port http:80 arrives */ int local_443; /* On which port https:443 arrives */ |