MCPcopy Create free account
hub / github.com/apache/httpd / ssl_config_proxy_merge

Function ssl_config_proxy_merge

modules/ssl/ssl_engine_config.c:538–546  ·  view source on GitHub ↗

Simply merge conf with base into conf, no third party. */

Source from the content-addressed store, hash-verified

536
537/* Simply merge conf with base into conf, no third party. */
538void 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

Callers 1

Calls 1

Tested by

no test coverage detected