Home
last modified time | relevance | path

Searched refs:auth_backend_conf (Results 1 – 2 of 2) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dmod_auth.c70 buffer_free(s->auth_backend_conf); in FREE_FUNC()
360 s->auth_backend_conf = buffer_init(); in SETDEFAULTS_FUNC()
379 cv[0].destination = s->auth_backend_conf; in SETDEFAULTS_FUNC()
402 if (s->auth_backend_conf->used) { in SETDEFAULTS_FUNC()
403 if (0 == strcmp(s->auth_backend_conf->ptr, "htpasswd")) { in SETDEFAULTS_FUNC()
405 } else if (0 == strcmp(s->auth_backend_conf->ptr, "htdigest")) { in SETDEFAULTS_FUNC()
407 } else if (0 == strcmp(s->auth_backend_conf->ptr, "plain")) { in SETDEFAULTS_FUNC()
409 } else if (0 == strcmp(s->auth_backend_conf->ptr, "ldap")) { in SETDEFAULTS_FUNC()
412 …og_error_write(srv, __FILE__, __LINE__, "sb", "auth.backend not supported:", s->auth_backend_conf); in SETDEFAULTS_FUNC()
H A Dhttp_auth.h30 buffer *auth_backend_conf; member