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

Function set_transitive

modules/md/mod_md_config.c:367–378  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365}
366
367static const char *set_transitive(int *ptransitive, const char *value)
368{
369 if (!apr_cstr_casecmp("auto", value)) {
370 *ptransitive = 1;
371 return NULL;
372 }
373 else if (!apr_cstr_casecmp("manual", value)) {
374 *ptransitive = 0;
375 return NULL;
376 }
377 return "unknown value, use \"auto|manual\"";
378}
379
380static const char *md_config_sec_start(cmd_parms *cmd, void *mconfig, const char *arg)
381{

Callers 3

md_config_sec_startFunction · 0.85
md_config_set_namesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected