Lines Matching refs:method
239 data_string *method; in mod_auth_uri_handler() local
241 method = (data_string *)array_get_element(req, "method"); in mod_auth_uri_handler()
251 if (0 == strcmp(method->value->ptr, "basic")) { in mod_auth_uri_handler()
257 if (0 == strcmp(method->value->ptr, "digest")) { in mod_auth_uri_handler()
276 data_string *method, *realm; in mod_auth_uri_handler() local
277 method = (data_string *)array_get_element(req, "method"); in mod_auth_uri_handler()
283 if (0 == strcmp(method->value->ptr, "basic")) { in mod_auth_uri_handler()
289 } else if (0 == strcmp(method->value->ptr, "digest")) { in mod_auth_uri_handler()
443 const char *method, *realm, *require; in SETDEFAULTS_FUNC() local
453 method = realm = require = NULL; in SETDEFAULTS_FUNC()
458 method = ((data_string *)(da_file->value->data[m]))->value->ptr; in SETDEFAULTS_FUNC()
483 if (method == NULL) { in SETDEFAULTS_FUNC()
489 if (0 != strcmp(method, "basic") && in SETDEFAULTS_FUNC()
490 0 != strcmp(method, "digest")) { in SETDEFAULTS_FUNC()
512 if (method && realm && require) { in SETDEFAULTS_FUNC()
522 buffer_copy_string(ds->value, method); in SETDEFAULTS_FUNC()