From 76c762ea569dc0f32bd99544d8129ce22f6bf306 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 31 Jul 1999 09:31:21 +0000 Subject: [PATCH] Break out the hook implementations into three kinds, thus avoiding null macro arguments. Gates made me do it! git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83546 13f79535-47bb-0310-9956-ffa450edef68 --- server/connection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/connection.c b/server/connection.c index 00ea8ab91f..1950069dc7 100644 --- a/server/connection.c +++ b/server/connection.c @@ -69,8 +69,8 @@ HOOK_STRUCT( HOOK_LINK(process_connection) ); -IMPLEMENT_VOID_HOOK(pre_connection,(conn_rec *c),(c)) -IMPLEMENT_HOOK(int,process_connection,(conn_rec *c),(c),RUN_FIRST,OK,DECLINED) +IMPLEMENT_HOOK_VOID(pre_connection,(conn_rec *c),(c)) +IMPLEMENT_HOOK_RUN_FIRST(int,process_connection,(conn_rec *c),(c),DECLINED) /* TODO: re-implement the lingering close stuff */ #define NO_LINGCLOSE -- 2.40.0