Lines Matching defs:action

28  *   Header action header value
29 * RequestHeader action header value
31 * Where action is one of:
41 * Where action is unset, the third argument (value) should not be given.
123 /* 'Magic' condition_var value to run action in post_read_request */
129 hdr_actions action;
397 if (hdr->action == hdr_unset || hdr->action == hdr_echo) {
401 else if (hdr->action == hdr_edit || hdr->action == hdr_edit_r ) {
430 const char *action,
449 if (!strcasecmp(action, "set"))
450 new->action = hdr_set;
451 else if (!strcasecmp(action, "setifempty"))
452 new->action = hdr_setifempty;
453 else if (!strcasecmp(action, "add"))
454 new->action = hdr_add;
455 else if (!strcasecmp(action, "append"))
456 new->action = hdr_append;
457 else if (!strcasecmp(action, "merge"))
458 new->action = hdr_merge;
459 else if (!strcasecmp(action, "unset"))
460 new->action = hdr_unset;
461 else if (!strcasecmp(action, "echo"))
462 new->action = hdr_echo;
463 else if (!strcasecmp(action, "edit"))
464 new->action = hdr_edit;
465 else if (!strcasecmp(action, "edit*"))
466 new->action = hdr_edit_r;
467 else if (!strcasecmp(action, "note"))
468 new->action = hdr_note;
473 if (new->action == hdr_edit || new->action == hdr_edit_r) {
490 if (new->action == hdr_unset) {
499 else if (new->action == hdr_echo) {
566 const char *action;
572 action = ap_getword_conf(cmd->temp_pool, &args);
574 if (!strcasecmp(action, "always")) {
576 action = ap_getword_conf(cmd->temp_pool, &args);
578 else if (!strcasecmp(action, "onsuccess")) {
579 action = ap_getword_conf(cmd->temp_pool, &args);
592 return header_inout_cmd(cmd, indirconf, action, hdr, val, subs, envclause);
653 if (hdr->action == hdr_edit) {
744 switch (hdr->action) {
960 "an optional condition, an action, header and value "
963 "an action, header and value followed by optional env "