mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00
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:
@ -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
|
||||
|
@ -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)
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user