Lines Matching refs:method

68     const char *method;
99 conf->method = "httpd_method";
127 new->method = (add->method_set == 0) ? base->method : add->method;
230 static const char *set_cookie_form_method(cmd_parms * cmd, void *config, const char *method)
233 conf->method = method;
235 return check_string(cmd, method);
365 "The field of the login form carrying the original request method."),
436 const char *method, const char *mimetype)
459 if (method) {
460 apr_table_setn(notes, apr_pstrcat(r->pool, authname, "-method", NULL), method);
474 const char **method, const char **mimetype)
496 if (method) {
497 *method = (char *) apr_table_get(m->notes, apr_pstrcat(m->pool, authname, "-method", NULL));
509 "from notes: user: %s, pw: %s, method: %s, mimetype: %s",
511 method ? *method : "<null>", mimetype ? *mimetype : "<null>");
594 const char *method,
650 else if (method && !strcmp(pair->name, method) && sent_method) {
672 "from form: user: %s, pw: %s, method: %s, mimetype: %s, location: %s",
702 * save away the username, password, mimetype and method, so that they
994 conf->method, conf->mimetype, conf->body,
1021 /* did the form ask to change the method? if so, switch in the redirect handler
1022 * to relaunch this request as the subrequest with the new method. If the
1023 * form didn't specify a method, the default value GET will force a redirect.
1025 if (sent_method && strcmp(r->method, sent_method)) {
1127 "the " FORM_LOGIN_HANDLER " only supports the POST method for %s",
1236 * If during a form login, the method, mimetype and request body are
1251 /* get the method and mimetype from the notes */
1257 "internal redirect to method '%s' and body mimetype '%s' for the "
1266 "internal redirect requested but one or all of method, mimetype or "