1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

hooks: run also for paths

This commit is contained in:
Steffen Vogel 2018-05-23 14:57:24 +02:00
parent 8de7a8b763
commit 50b3a6535f
2 changed files with 2 additions and 0 deletions

View file

@ -87,6 +87,7 @@ static struct plugin p = {
.init = decimate_init,
.parse = decimate_parse,
.read = decimate_read,
.process= decimate_read,
.size = sizeof(struct decimate)
}
};

View file

@ -131,6 +131,7 @@ static struct plugin p = {
.init = limit_rate_init,
.parse = limit_rate_parse,
.write = limit_rate_write,
.process= limit_rate_write,
.size = sizeof(struct limit_rate)
}
};