Lines Matching defs:provider
487 /* lookup and cache the actual provider now */
488 newp->provider = ap_lookup_provider(AUTHN_PROVIDER_GROUP,
492 if (newp->provider == NULL) {
493 /* by the time they use it, the provider should be loaded and
496 "Unknown Authn provider: %s",
500 if (!newp->provider->get_realm_hash) {
503 "The '%s' Authn provider doesn't support "
1272 const authn_provider *provider;
1274 /* For now, if a provider isn't set, we'll be nice and use the file
1275 * provider.
1278 provider = ap_lookup_provider(AUTHN_PROVIDER_GROUP,
1282 if (!provider || !provider->get_realm_hash) {
1284 "No Authn provider configured");
1291 provider = current_provider->provider;
1297 auth_result = provider->get_realm_hash(r, user, conf->realm,
1732 /* authentication denied in the provider before attempting a match */
1734 "user `%s' in realm `%s' denied by provider: %s",