| 123 | } |
| 124 | |
| 125 | static void log_provider_info(const fcgi_provider_conf *conf, request_rec *r) |
| 126 | { |
| 127 | ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, |
| 128 | APLOGNO(02496) "name %s, backend %s, host %s, port %d, " |
| 129 | "first address %pI, %c%c", |
| 130 | conf->name, |
| 131 | conf->backend, |
| 132 | conf->host, |
| 133 | (int)conf->port, |
| 134 | conf->backend_addrs, |
| 135 | conf->is_authn ? 'N' : '_', |
| 136 | conf->is_authz ? 'Z' : '_'); |
| 137 | } |
| 138 | |
| 139 | static void setupenv(request_rec *r, const char *password, const char *apache_role) |
| 140 | { |
no outgoing calls
no test coverage detected