Simply merge conf with base into conf, no third party. */
| 536 | |
| 537 | /* Simply merge conf with base into conf, no third party. */ |
| 538 | void ssl_config_proxy_merge(apr_pool_t *p, |
| 539 | SSLDirConfigRec *base, |
| 540 | SSLDirConfigRec *conf) |
| 541 | { |
| 542 | if (conf->proxy_enabled == UNSET) { |
| 543 | conf->proxy_enabled = base->proxy_enabled; |
| 544 | } |
| 545 | modssl_ctx_cfg_merge_proxy(p, base->proxy, conf->proxy, conf->proxy); |
| 546 | } |
| 547 | |
| 548 | /* |
| 549 | * Configuration functions for particular directives |
no test coverage detected