diff options
author | Stefan Fritsch <sf@apache.org> | 2011-09-15 21:53:59 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-09-15 21:53:59 +0200 |
commit | 2d4e23d88b52302bada92e581bd48e9f993e2df6 (patch) | |
tree | d3d5ef0d76c876f3ebc69dae5a27500693395394 /include/mod_core.h | |
parent | - start definitive list of modules not to be included in 2.4 (diff) | |
download | apache2-2d4e23d88b52302bada92e581bd48e9f993e2df6.tar.xz apache2-2d4e23d88b52302bada92e581bd48e9f993e2df6.zip |
Create wrapper API for apr_random;
use in mod_lbmethod_heartbeat and mod_serf to
- replace some needles use of apr_generate_random_bytes
- remove code duplication
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171247 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/mod_core.h')
-rw-r--r-- | include/mod_core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mod_core.h b/include/mod_core.h index 714064c7bb..aa93de2f63 100644 --- a/include/mod_core.h +++ b/include/mod_core.h @@ -87,6 +87,9 @@ AP_DECLARE_NONSTD(int) ap_send_http_trace(request_rec *r); */ AP_DECLARE(int) ap_send_http_options(request_rec *r); +/* Used for multipart/byteranges boundary string */ +extern AP_DECLARE_DATA const char *ap_multipart_boundary; + #ifdef __cplusplus } #endif |