* 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 HOOK_VOID hook. */
| 1148 | * This is a HOOK_VOID hook. |
| 1149 | */ |
| 1150 | static void x_pre_read_request(request_rec *r, conn_rec *c) |
| 1151 | { |
| 1152 | /* |
| 1153 | * We don't actually *do* anything here, except note the fact that we were |
| 1154 | * called. |
| 1155 | */ |
| 1156 | trace_request(r, "x_pre_read_request()"); |
| 1157 | } |
| 1158 | |
| 1159 | /* |
| 1160 | * This routine is called after the request has been read but before any other |
nothing calls this directly
no test coverage detected