| 2377 | } |
| 2378 | |
| 2379 | AP_DECLARE(void) ap_run_rewrite_args(process_rec *process) |
| 2380 | { |
| 2381 | module *m; |
| 2382 | |
| 2383 | for (m = ap_top_module; m; m = m->next) { |
| 2384 | if (m->rewrite_args) { |
| 2385 | (*m->rewrite_args)(process); |
| 2386 | } |
| 2387 | } |
| 2388 | } |
| 2389 | |
| 2390 | /******************************************************************** |
| 2391 | * Configuration directives are restricted in terms of where they may |
no outgoing calls
no test coverage detected