aboutsummaryrefslogtreecommitdiff
path: root/include/modules/httpd.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-02-27 20:19:57 +0000
committerGravatar Sadie Powell2023-02-27 20:29:56 +0000
commitd141f9c02500c1401acd0e1817727346c56a512a (patch)
tree380e5ce4d3ba8b393370224afe87460edbb64bed /include/modules/httpd.h
parentUse the stats row count instead of counting opers manually. (diff)
Make module classes specify their priority manually.
Diffstat (limited to 'include/modules/httpd.h')
-rw-r--r--include/modules/httpd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/modules/httpd.h b/include/modules/httpd.h
index ae229e9e4..25432b08c 100644
--- a/include/modules/httpd.h
+++ b/include/modules/httpd.h
@@ -305,8 +305,8 @@ class HTTPACLEventListener
: public Events::ModuleEventListener
{
public:
- HTTPACLEventListener(Module* mod)
- : ModuleEventListener(mod, "event/http-acl")
+ HTTPACLEventListener(Module* mod, unsigned int eventprio = DefaultPriority)
+ : ModuleEventListener(mod, "event/http-acl", eventprio)
{
}
@@ -317,8 +317,8 @@ class HTTPRequestEventListener
: public Events::ModuleEventListener
{
public:
- HTTPRequestEventListener(Module* mod)
- : ModuleEventListener(mod, "event/http-request")
+ HTTPRequestEventListener(Module* mod, unsigned int eventprio = DefaultPriority)
+ : ModuleEventListener(mod, "event/http-request", eventprio)
{
}