* This routine is called after the request has been read but before any other * phases have been processed. This allows us to make decisions based upon * the input header fields. * * This is a RUN_ALL hook. */
| 1164 | * This is a RUN_ALL hook. |
| 1165 | */ |
| 1166 | static int x_post_read_request(request_rec *r) |
| 1167 | { |
| 1168 | /* |
| 1169 | * We don't actually *do* anything here, except note the fact that we were |
| 1170 | * called. |
| 1171 | */ |
| 1172 | trace_request(r, "x_post_read_request()"); |
| 1173 | return DECLINED; |
| 1174 | } |
| 1175 | |
| 1176 | /* |
| 1177 | * This routine gives our module an opportunity to translate the URI into an |
nothing calls this directly
no test coverage detected