| 199 | #define METHOD_NUMBER_LAST 62 |
| 200 | |
| 201 | static int is_mpm_running(void) |
| 202 | { |
| 203 | int mpm_state = 0; |
| 204 | |
| 205 | if (ap_mpm_query(AP_MPMQ_MPM_STATE, &mpm_state)) { |
| 206 | return 0; |
| 207 | } |
| 208 | |
| 209 | if (mpm_state == AP_MPMQ_STOPPING) { |
| 210 | return 0; |
| 211 | } |
| 212 | |
| 213 | return 1; |
| 214 | } |
| 215 | |
| 216 | |
| 217 | AP_DECLARE(int) ap_set_keepalive(request_rec *r) |
no test coverage detected