diff options
author | Graham Leggett <minfrin@apache.org> | 2022-01-24 17:14:42 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2022-01-24 17:14:42 +0100 |
commit | 3c6a7074916ea1b6b448e2c2c196de65f878efea (patch) | |
tree | c4e72644badeda65792dc46a02b7480aa6aa18d8 /include/ap_mpm.h | |
parent | mod_reqtimeout: Set socket timeout for AP_MODE_INIT. (diff) | |
download | apache2-3c6a7074916ea1b6b448e2c2c196de65f878efea.tar.xz apache2-3c6a7074916ea1b6b448e2c2c196de65f878efea.zip |
event: Add AP_MPM_CAN_AGAIN and AGAIN to signal to the MPM that
non blocking behaviour is requested.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897423 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mpm.h')
-rw-r--r-- | include/ap_mpm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ap_mpm.h b/include/ap_mpm.h index 6698d0e7c6..82075a4488 100644 --- a/include/ap_mpm.h +++ b/include/ap_mpm.h @@ -182,6 +182,8 @@ AP_DECLARE(apr_status_t) ap_os_create_privileged_process( #define AP_MPMQ_CAN_SUSPEND 17 /** MPM supports additional pollfds */ #define AP_MPMQ_CAN_POLL 18 +/** MPM reacts to AGAIN response */ +#define AP_MPMQ_CAN_AGAIN 19 /** @} */ /** |