change ap_hook_pre_connection from VOID to RUN_ALL

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85066 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug MacEachern
2000-04-27 23:44:16 +00:00
parent aa86bb962f
commit b7f8b9d3df
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ int ap_process_http_connection(conn_rec *);
#endif
/* Hooks */
AP_DECLARE_HOOK(void,pre_connection,(conn_rec *))
AP_DECLARE_HOOK(int,pre_connection,(conn_rec *))
AP_DECLARE_HOOK(int,process_connection,(conn_rec *))
#ifdef __cplusplus

View File

@ -72,7 +72,7 @@ AP_HOOK_STRUCT(
AP_HOOK_LINK(process_connection)
)
AP_IMPLEMENT_HOOK_VOID(pre_connection,(conn_rec *c),(c))
AP_IMPLEMENT_HOOK_RUN_ALL(int,pre_connection,(conn_rec *c),(c),OK,DECLINED)
AP_IMPLEMENT_HOOK_RUN_FIRST(int,process_connection,(conn_rec *c),(c),DECLINED)
/*