#ifndef __HTTPSERV_H__ #define __HTTPSERV_H__ #ifdef __cplusplus #include #include #include #include #include /* * La classe HttpServ. Le constructueur (int, const String &) indique le port * et le nom du serveur à indiquer dans les entetes HTTP. * * Une fois lance, il suffit de lancer MainLoop en indiquant le menu principal, * qui est obligatoirement statique et doit posseder l'url /bin/start. */ class HttpServ : public Base { public: HttpServ(int = 1500, const String & = String("GruiK Server v0.1")) throw (GeneralException); ~HttpServ() {} void MainLoop(Action *); private: String GetMime(const String &); void ProcessRequest(Action *, Socket); bool ParseUri(String &, String &, Handle *); void ParseVars(Handle *, int); void ShowError(Handle *); void SendHeads(Handle *, const String &); void SendRedirect(Handle *); String name; Socket Listener; Variables * Vars; int localport; bool bad; }; extern String endhl, endnl; #else #error This only works with a C++ compiler #endif #endif