X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2Ffastcgi.c;h=f4b0f2d2123a91b6e43009fec1d3da97f0836b52;hb=4f1f3077d6b38e212527b0aaaf7564ba83f0ba81;hp=34c337a6732be41af5d95327cd194d37b07c9db0;hpb=1a311e29d6b72830d62e2cba21c1b9e33433cfbf;p=matches%2FMCTX3420.git diff --git a/server/fastcgi.c b/server/fastcgi.c index 34c337a..f4b0f2d 100644 --- a/server/fastcgi.c +++ b/server/fastcgi.c @@ -12,6 +12,7 @@ #include "common.h" #include "sensor.h" +#include "actuator.h" #include "control.h" #include "options.h" @@ -467,6 +468,8 @@ void * FCGI_RequestLoop (void *data) module_handler = Control_Handler; } else if (!strcmp("sensors", module)) { module_handler = Sensor_Handler; + } else if (!strcmp("actuators", module)) { + module_handler = Actuator_Handler; } context.current_module = module;