diff options
author | Eric Covener <covener@apache.org> | 2008-01-11 16:07:53 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2008-01-11 16:07:53 +0100 |
commit | d300b0e287fcefa2860f859d4356630306c23c36 (patch) | |
tree | 3f43754e72f9855baefc2bed14faefabb7685c94 /include/http_core.h | |
parent | Update year to 2008 (diff) | |
download | apache2-d300b0e287fcefa2860f859d4356630306c23c36.tar.xz apache2-d300b0e287fcefa2860f859d4356630306c23c36.zip |
*) mod_logio: Provide optional function to allow modules to adjust the
bytes_in count [Eric Covener]
Practical example: alternate SSL implementation that lives
beyond the filters (IOL)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@611199 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_core.h')
-rw-r--r-- | include/http_core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/http_core.h b/include/http_core.h index aadab1eb67..31b14895ee 100644 --- a/include/http_core.h +++ b/include/http_core.h @@ -658,6 +658,9 @@ AP_DECLARE_HOOK(int, get_mgmt_items, APR_DECLARE_OPTIONAL_FN(void, ap_logio_add_bytes_out, (conn_rec *c, apr_off_t bytes)); +APR_DECLARE_OPTIONAL_FN(void, ap_logio_add_bytes_in, + (conn_rec *c, apr_off_t bytes)); + /* ---------------------------------------------------------------------- * * ident lookups with mod_ident |