split before/after

This commit is contained in:
2018-07-03 15:24:02 -04:00
parent b67dbc5fa8
commit d4f921b6e3
+16 -2
View File
@@ -86,10 +86,23 @@ static int check_autorization(request_rec *r)
return 0;
}
////////////////////////////////////////////////////////////////
/* Main routine */
static int absec_handler_last(request_rec *r)
{
// Is this module really called?
if (strcmp(r->handler, "absec")) {
return DECLINED;
}
r->content_type = "text/html";
//ap_rprintf(r, "The sample page from mod_absec.c %s \n<br/>", r->args);
ap_rprintf(r, "After Url: %s from %s \n<br/>", r->filename, r->uri);
return (OK);
}
////////////////////////////////////////////////////////////////
/* Main routine */
static int absec_handler(request_rec *r)
static int absec_handler_first(request_rec *r)
{
// Is this module really called?
if (strcmp(r->handler, "absec")) {
@@ -294,7 +307,8 @@ static int absec_handler(request_rec *r)
static void absec_register_hooks(apr_pool_t *p)
{
//ap_hook_handler(absec_handler, NULL, NULL, APR_HOOK_MIDDLE);
ap_hook_handler(absec_handler, NULL, NULL, APR_HOOK_LAST);
ap_hook_handler(absec_handler_last, NULL, NULL, APR_HOOK_LAST);
ap_hook_handler(absec_handler_first, NULL, NULL, APR_HOOK_FIRST);
}
////////////////////////////////////////////////////////////////