1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-09 15:21:02 +03:00

http_request.[ch]:

*) add the "install_filter" hook as a hook/control point for modules to
   install their filters. [Ryan Bloom]

http_protocol.c:
*) move check_first_conn_error() up in the file; no actual changes
*) add checked_bputstrs(), checked_bflush(), and checked_bputs(). These are
   copies of ap_rvputs(), ap_rflush(), and ap_rputs() respectively. The
   users of the checked_* functions will be independent of filtering changes
   to the ap_r* functions.
*) add flush_filters() place holder


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85685 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Greg Stein
2000-06-24 16:27:47 +00:00
parent 76f1e03870
commit 1f993fdbb5
3 changed files with 128 additions and 85 deletions

View File

@@ -120,6 +120,7 @@ AP_DECLARE_HOOK(int,fixups,(request_rec *))
AP_DECLARE_HOOK(int,type_checker,(request_rec *))
AP_DECLARE_HOOK(int,access_checker,(request_rec *))
AP_DECLARE_HOOK(int,auth_checker,(request_rec *))
AP_DECLARE_HOOK(void,insert_filter,(request_rec *))
#ifdef __cplusplus
}