• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/apache-793/httpd/modules/aaa/

Lines Matching refs:conf

86     auth_form_config_rec *conf = apr_pcalloc(p, sizeof(*conf));
88 conf->dir = d;
90 conf->authoritative = 1;
93 conf->form_size = HUGE_STRING_LEN;
96 conf->username = "httpd_username";
97 conf->password = "httpd_password";
98 conf->location = "httpd_location";
99 conf->method = "httpd_method";
100 conf->mimetype = "httpd_mimetype";
101 conf->body = "httpd_body";
103 return conf;
148 auth_form_config_rec *conf = (auth_form_config_rec *) config;
196 if (!conf->providers) {
197 conf->providers = newp;
200 authn_provider_list *last = conf->providers;
227 auth_form_config_rec *conf = (auth_form_config_rec *) config;
228 conf->location = location;
229 conf->location_set = 1;
235 auth_form_config_rec *conf = (auth_form_config_rec *) config;
236 conf->username = username;
237 conf->username_set = 1;
243 auth_form_config_rec *conf = (auth_form_config_rec *) config;
244 conf->password = password;
245 conf->password_set = 1;
251 auth_form_config_rec *conf = (auth_form_config_rec *) config;
252 conf->method = method;
253 conf->method_set = 1;
259 auth_form_config_rec *conf = (auth_form_config_rec *) config;
260 conf->mimetype = mimetype;
261 conf->mimetype_set = 1;
267 auth_form_config_rec *conf = (auth_form_config_rec *) config;
268 conf->body = body;
269 conf->body_set = 1;
276 auth_form_config_rec *conf = config;
283 conf->form_size = (apr_size_t)size;
284 conf->form_size_set = 1;
291 auth_form_config_rec *conf = (auth_form_config_rec *) config;
294 conf->loginrequired = ap_expr_parse_cmd(cmd, loginrequired, AP_EXPR_FLAG_STRING_RESULT,
301 conf->loginrequired_set = 1;
308 auth_form_config_rec *conf = (auth_form_config_rec *) config;
311 conf->loginsuccess = ap_expr_parse_cmd(cmd, loginsuccess, AP_EXPR_FLAG_STRING_RESULT,
318 conf->loginsuccess_set = 1;
325 auth_form_config_rec *conf = (auth_form_config_rec *) config;
328 conf->logout = ap_expr_parse_cmd(cmd, logout, AP_EXPR_FLAG_STRING_RESULT,
335 conf->logout_set = 1;
342 auth_form_config_rec *conf = (auth_form_config_rec *) config;
343 conf->site = site;
344 conf->site_set = 1;
350 auth_form_config_rec *conf = (auth_form_config_rec *) config;
351 conf->authoritative = flag;
352 conf->authoritative_set = 1;
358 auth_form_config_rec *conf = (auth_form_config_rec *) config;
359 conf->fakebasicauth = flag;
360 conf->fakebasicauth_set = 1;
366 auth_form_config_rec *conf = (auth_form_config_rec *) config;
367 conf->disable_no_store = flag;
368 conf->disable_no_store_set = 1;
431 auth_form_config_rec *conf = ap_get_module_config(r->per_dir_config,
434 if (conf->location && ap_strchr_c(conf->location, ':')) {
435 apr_table_setn(r->err_headers_out, "Location", conf->location);
621 auth_form_config_rec * conf)
638 res = ap_parse_form_data(r, NULL, &pairs, -1, conf->form_size);
761 auth_form_config_rec *conf = ap_get_module_config(r->per_dir_config,
764 current_provider = conf->providers;
805 if (!conf->providers) {
816 if (!(conf->authoritative) && auth_result != AUTH_DENIED) {
858 static void fake_basic_authentication(request_rec *r, auth_form_config_rec *conf,
861 if (conf->fakebasicauth) {
882 auth_form_config_rec *conf = ap_get_module_config(r->per_dir_config,
933 rv = check_site(r, conf->site, sent_user, sent_hash);
935 fake_basic_authentication(r, conf, sent_user, sent_pw);
944 fake_basic_authentication(r, conf, sent_user, sent_pw);
991 rv = get_form_auth(rr, conf->username, conf->password, conf->location,
992 conf->method, conf->mimetype, conf->body,
994 &sent_mimetype, &sent_body, conf);
1031 fake_basic_authentication(r, conf, sent_user, sent_pw);
1032 set_session_auth(r, sent_user, sent_pw, conf->site);
1037 if (conf->loginsuccess) {
1039 conf->loginsuccess, &err);
1059 if (HTTP_UNAUTHORIZED == rv && conf->loginrequired) {
1061 conf->loginrequired, &err);
1088 if (HTTP_UNAUTHORIZED == rv && !conf->disable_no_store) {
1113 auth_form_config_rec *conf;
1130 conf = ap_get_module_config(r->per_dir_config, &auth_form_module);
1132 rv = get_form_auth(r, conf->username, conf->password, conf->location,
1135 NULL, NULL, NULL, conf);
1139 set_session_auth(r, sent_user, sent_pw, conf->site);
1144 if (conf->loginsuccess) {
1146 conf->loginsuccess, &err);
1162 if (HTTP_UNAUTHORIZED == rv && conf->loginrequired) {
1164 conf->loginrequired, &err);
1193 auth_form_config_rec *conf;
1200 conf = ap_get_module_config(r->per_dir_config, &auth_form_module);
1213 if (conf->logout) {
1215 conf->logout, &err);