X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2Ffastcgi.c;h=352efe1bff288ad705e50691a4fdc7de7094d6ee;hb=989a1d2ff5f5afc20f78738f57cc829ae9d11e99;hp=89386f35165c7d9e01cea92a81a8f17ccc4dd4a8;hpb=0e485d94093a09b4095a5b7f9b80afa1ec0fd570;p=matches%2FMCTX3420.git diff --git a/server/fastcgi.c b/server/fastcgi.c index 89386f3..352efe1 100644 --- a/server/fastcgi.c +++ b/server/fastcgi.c @@ -16,6 +16,7 @@ #include "control.h" #include "options.h" #include "image.h" +#include "pin_test.h" /**The time period (in seconds) before the control key expires */ #define CONTROL_TIMEOUT 180 @@ -490,6 +491,8 @@ void * FCGI_RequestLoop (void *data) module_handler = Actuator_Handler; } else if (!strcmp("image", module)) { module_handler = Image_Handler; + } else if (!strcmp("pin", module)) { + module_handler = Pin_Handler; // *Debug only* pin test module } context.current_module = module;