#ifndef _CGI_SERVICEFCGI_H_ #define _CGI_SERVICEFCGI_H_ #include "ServiceBase.h" namespace CGI { class ServiceFCGI: public CGI::ServiceBase { int hPoll; bool bPollContinue; int dtPollTimeout; public: bool initialize(); int dispatch(); void cleanup(); protected: SOCKET attachListener(char*); }; } #endif